Эх сурвалжийг харах

Merge branch 'dev' of http://39.101.143.165:8090/dong_k/tenant-Platform into dev

祁鹏飞 5 өдөр өмнө
parent
commit
7995f2a142

+ 4 - 1
src/views/representative/quoteApproval.vue

@@ -163,6 +163,7 @@ const formInline = reactive({
   auditTimeEnd: "",//审核时间结束
   costDescribes: [],//费用描述
   companyId: '',//保险公司id
+  auditPerson: '',//审核人
 })
 const companylist = computed(() => {
   let list = [] as any;
@@ -585,6 +586,7 @@ const resetForm = () => {
   formInline.effectiveTime = [];
   formInline.failureTime = [];
   formInline.costDescribes = [];//费用描述
+  formInline.auditPerson = '';//审核人
   formInline.companyId = '';//保险公司id
   if (activeName.value == 'pendingReview') {
     findpage("0");
@@ -610,6 +612,7 @@ const AgreementInfo = ref();//协议对象
 const ruleInfo = ref();//规则对象
 
 const handleClick = (pane: any) => {
+  resetForm();
   if (pane.props.name == 'pendingReview') {
     formInline.auditStatus = '0';
     findpage("0");
@@ -620,7 +623,7 @@ const handleClick = (pane: any) => {
     formInline.auditStatus = '2';
     findpage("2");
   }
-  resetForm();
+
 }
 
 </script>