案件邮箱录入,裁决书邮箱自动获取
This commit is contained in:
@@ -49,13 +49,13 @@
|
||||
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="batchApplication"
|
||||
v-hasPermi="['caseManagement:list:import']">案件批量导入</el-button>
|
||||
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="operateClick(0)"
|
||||
v-hasPermi="['caseManagement:list:submit']">案件批量提交</el-button>
|
||||
v-hasPermi="['caseManagement:list:Batchsubmit']">案件批量提交</el-button>
|
||||
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="operateClick(1)"
|
||||
v-hasPermi="['caseManagement:list:delete']">案件批量删除</el-button>
|
||||
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="operateClick(2)"
|
||||
v-hasPermi="['caseManagement:list:check']">案件批量立案审查</el-button>
|
||||
<el-button type="primary" plain icon="el-icon-plus" size="mini" @click="operateClick(4)"
|
||||
v-hasPermi="['caseManagement:list:hear']">批量生成裁决书</el-button>
|
||||
v-hasPermi="['caseManagement:list:Batchgeneration']">批量生成裁决书</el-button>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-table v-loading="loading" :data="dataList" style="width: 100%">
|
||||
|
||||
@@ -190,6 +190,27 @@
|
||||
<el-input v-model="item.contactTelphone" placeholder="请输入" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<!-- 新增申请人邮箱 -->
|
||||
<el-col :span="12">
|
||||
<el-form-item label="邮箱" :prop="'paymentArr.' + index + '.email'" :rules="[
|
||||
{
|
||||
required: true,
|
||||
message: '邮箱地址不能为空',
|
||||
trigger: 'blur',
|
||||
},
|
||||
{
|
||||
pattern:
|
||||
/^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/,
|
||||
message: '请输入正确的邮箱地址',
|
||||
trigger: 'blur',
|
||||
},
|
||||
]">
|
||||
<el-input
|
||||
v-model="item.email"
|
||||
placeholder="请输入电子邮件"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="单位地址:" :prop="'paymentArr.' + index + '.workAddress'" :rules="[
|
||||
{
|
||||
@@ -394,6 +415,26 @@
|
||||
<el-input v-model="itm.contactTelphone" placeholder="请输入" />
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="邮箱" :prop="'paymentArr1.' + index + '.email'" :rules="[
|
||||
{
|
||||
required: true,
|
||||
message: '邮箱地址不能为空',
|
||||
trigger: 'blur',
|
||||
},
|
||||
{
|
||||
pattern:
|
||||
/^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/,
|
||||
message: '请输入正确的邮箱地址',
|
||||
trigger: 'blur',
|
||||
},
|
||||
]">
|
||||
<el-input
|
||||
v-model="itm.email"
|
||||
placeholder="请输入电子邮件"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="单位地址:" :prop="'paymentArr1.' + index + '.workAddress'" :rules="[
|
||||
{
|
||||
@@ -581,6 +622,7 @@ export default {
|
||||
name: "",
|
||||
identityNum: "",
|
||||
contactTelphone: "",
|
||||
email: "",
|
||||
workAddress: "",
|
||||
workTelphone: "",
|
||||
contactAddress: "",
|
||||
@@ -598,6 +640,7 @@ export default {
|
||||
name: "",
|
||||
identityNum: "",
|
||||
contactTelphone: "",
|
||||
email: "",
|
||||
workAddress: "",
|
||||
workTelphone: "",
|
||||
contactAddress: "",
|
||||
@@ -753,6 +796,7 @@ export default {
|
||||
name: "",
|
||||
identityNum: "",
|
||||
contactTelphone: "",
|
||||
email: "",
|
||||
workAddress: "",
|
||||
workTelphone: "",
|
||||
contactAddress: "",
|
||||
@@ -767,6 +811,7 @@ export default {
|
||||
name: "",
|
||||
identityNum: "",
|
||||
contactTelphone: "",
|
||||
email: "",
|
||||
workAddress: "",
|
||||
workTelphone: "",
|
||||
contactAddress: "",
|
||||
@@ -868,6 +913,7 @@ export default {
|
||||
name: "",
|
||||
identityNum: "",
|
||||
contactTelphone: "",
|
||||
email: "",
|
||||
workAddress: "",
|
||||
workTelphone: "",
|
||||
contactAddress: "",
|
||||
@@ -883,6 +929,7 @@ export default {
|
||||
name: "",
|
||||
identityNum: "",
|
||||
contactTelphone: "",
|
||||
email: "",
|
||||
workAddress: "",
|
||||
workTelphone: "",
|
||||
contactAddress: "",
|
||||
|
||||
Reference in New Issue
Block a user