流程问题修改1

This commit is contained in:
Your Name
2023-09-23 16:01:56 +08:00
parent a062ebc78f
commit 45a58322c8
10 changed files with 110 additions and 54 deletions
@@ -25,6 +25,7 @@
<el-input
v-model="formData.caseNum"
placeholder="请输入案件编号"
:disabled="flag == '1'"
/>
</el-form-item>
</el-col>
@@ -652,7 +653,7 @@ export default {
{
required: true,
message: "案件编号不能为空",
trigger: ["change", "blur"],
trigger: "blur",
},
{ max: 20, message: "长度应小于20个字符", trigger: "blur" },
],
@@ -660,9 +661,8 @@ export default {
{
required: true,
message: "案件标的不能为空",
trigger: ["change", "blur"],
trigger: "blur",
},
// { type: "Number", message: "案件标的必须为数字值" },
],
loanStartDate: [
{
@@ -751,6 +751,36 @@ export default {
this.form3.paymentArr1 = this.initpaymentArr1;
}, 1000);
}
if (this.flag == "2") {
this.form2.paymentArr = [
{
identityType: 1,
name: "",
identityNum: "",
contactTelphone: "",
workAddress: "",
workTelphone: "",
contactAddress: "",
nameAgent: "",
contactTelphoneAgent: "",
contactAddressAgent: "",
},
];
this.form3.paymentArr1 = [
{
identityType: 2,
name: "",
identityNum: "",
contactTelphone: "",
workAddress: "",
workTelphone: "",
contactAddress: "",
nameAgent: "",
contactTelphoneAgent: "",
contactAddressAgent: "",
},
];
}
}
},
deep: true,
@@ -835,22 +865,24 @@ export default {
...this.formData,
caseAffiliates: this.formData.caseAffiliates,
}).then((res) => {
this.$modal.msgSuccess("修改成功");
this.$emit("cancel");
this.getcaseApply(this.queryParams);
if (res.code == 200) {
this.$modal.msgSuccess("修改成功");
this.$emit("cancel");
this.getcaseApply(this.queryParams);
}
});
} else {
addCaseApply({
...this.formData,
caseAffiliates: this.formData.caseAffiliates,
}).then((response) => {
this.$modal.msgSuccess("新增成功");
this.$emit("cancel");
this.getcaseApply(this.queryParams);
if (response.code == 200) {
this.$modal.msgSuccess("新增成功");
this.$emit("cancel");
this.getcaseApply(this.queryParams);
}
});
}
// this.$emit("cancel");
// this.getcaseApply();
}
});
}
@@ -47,7 +47,7 @@ export default {
};
submitCaseApplicationCheck(paramsdata)
.then((res) => {
this.$modal.msgSuccess("审查成功");
this.$modal.msgSuccess("提交成功");
this.cancel();
this.$emit("getcaseApply", this.queryParams);
})
@@ -145,8 +145,6 @@ export default {
<style lang="scss" scoped>
::v-deep .el-dialog {
width: 422px;
height: 245px;
background: #ffffff;
border-radius: 20px;
}
@@ -10,27 +10,27 @@
center
>
<el-descriptions title="订单信息">
<el-descriptions-item label="案件编号:">{{
<el-descriptions-item label="案件编号">{{
form.caseNum
}}</el-descriptions-item>
<el-descriptions-item label="申请人:">{{
form.applicant
<el-descriptions-item label="申请人">{{
form.applicantName
}}</el-descriptions-item>
<el-descriptions-item label="案件标的:">{{
<el-descriptions-item label="案件标的">{{
form.caseSubjectAmount
}}</el-descriptions-item>
<el-descriptions-item label="案件应缴费用:">{{
<el-descriptions-item label="案件应缴费用">{{
form.feePayable
}}</el-descriptions-item>
<el-descriptions-item label="被申请人:">{{
form.respondent
<el-descriptions-item label="被申请人">{{
form.respondentName
}}</el-descriptions-item>
<el-descriptions-item label="申请人仲裁诉求:">{{
form.arbitratClaims
}}</el-descriptions-item>
<el-descriptions-item label="案件状态:">{{
<el-descriptions-item label="案件状态">{{
form.caseStatusName
}}</el-descriptions-item>
<el-descriptions-item label="申请人仲裁诉求">{{
form.arbitratClaims
}}</el-descriptions-item>
</el-descriptions>
<div class="payType">
<span>请选择支付方式:</span>
@@ -270,7 +270,7 @@ import { getUserProfile } from "@/api/system/user";
import { writtenHear } from "@/api/caseManagement/caseManagement.js";
export default {
props: ["showtrialincourt", "adjudicatename", "form"],
props: ["showtrialincourt", "adjudicatename", "form", "queryParams"],
data() {
return {
formData: {},