案件批量录入接口联调

This commit is contained in:
Your Name
2023-09-12 21:24:03 +08:00
parent bf4ae7e8f4
commit 8b735d148d
4 changed files with 193 additions and 92 deletions
+37 -3
View File
@@ -152,9 +152,11 @@
:initpaymentArr1="initpaymentArr1"
></caseentryDialog>
<!-- 批量申请弹框 openbatch-->
<!-- <batchDialog
<batchDialog
:openbatch="openbatch"
></batchDialog> -->
@cancelBatch="cancelBatch"
:getcaseApply="getcaseApply"
></batchDialog>
</div>
</template>
@@ -172,7 +174,7 @@ export default {
dicts: ["sys_identity_type"],
components: {
caseentryDialog,
// batchDialog
batchDialog
},
data() {
return {
@@ -211,6 +213,9 @@ export default {
cancel() {
this.visible = false;
},
cancelBatch() {
this.openbatch = false
},
/** 查询登录日志列表 */
getcaseApply() {
this.loading = true;
@@ -236,6 +241,35 @@ export default {
// 立案申请
filingApplication() {
this.form = {};
this.paymentArr = [
{
identityType: 1,
name: "",
identityNum: "",
contactTelphone: "",
workAddress: "",
workTelphone: "",
contactAddress: "",
nameAgent: "",
contactTelphoneAgent: "",
contactAddressAgent: "",
},
];
this.paymentArr1 = [
{
identityType: 2,
name: "",
identityNum: "",
contactTelphone: "",
workAddress: "",
workTelphone: "",
contactAddress: "",
nameAgent: "",
contactTelphoneAgent: "",
contactAddressAgent: "",
},
]
this.visible = true;
this.dialogtitle = "立案申请";
this.flag = "2"