Browse Source

报价费用审核费用规则完善

祁鹏飞 1 month ago
parent
commit
583a8e02df

+ 2 - 2
src/views/quoteConfig/agreement/agreementDetails.vue

@@ -1085,7 +1085,7 @@ const fields = computed(() => [
     label: "险种", model: "productId", type: "select", options: getDict('insurance_type'),
   },
   {
-    label: "费用描述", model: "costRulesList", type: "inputTag", placeholder: "输入费用描述关键字查找",
+    label: "费用描述", model: "costRules", type: "inputTag", placeholder: "输入费用描述关键字查找",
   },
   {
     label: "费用状态", model: "agreementStatus", type: "select", placeholder: "选择状态", options: getDict('is_enable'),
@@ -1206,7 +1206,7 @@ const formInline = reactive({
   agreementId: '',//协议信息
   productId: "",//归属
   coverRuleId: '',//规则id
-  costRules: '',//协议类型
+  costRules: [],//协议类型
   agreementStatus: "",//有效状态
   auditStatus: "",//协议状态
   validState: "",

+ 2 - 3
src/views/quoteConfig/costManagement.vue

@@ -231,8 +231,7 @@ const formInline = reactive({
   agreement: '',//协议信息
   productId: "",//归属
   rulesName: '',//保险公司id
-  costRules: '',//协议类型
-  costRulesList: [],//协议类型
+  costRules: [],//协议类型
   agreementStatus: "",//有效状态
   auditStatus: "",//协议状态
   validState: "",
@@ -274,7 +273,7 @@ const fields = ref([
     label: "承保规则", model: "rulesName", type: "input", placeholder: "输入业务规则查找",
   },
   {
-    label: "费用描述", model: "costRulesList", type: "inputTag", placeholder: "输入费用描述关键字查找",
+    label: "费用描述", model: "costRules", type: "inputTag", placeholder: "输入费用描述关键字查找",
   },
   {
     label: "费用状态", model: "agreementStatus", type: "select", placeholder: "选择状态", options: is_enable,

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

@@ -557,7 +557,7 @@ const resetForm = () => {
   formInline.agreement = '';//协议信息
   formInline.productId = "";//归属
   formInline.rulesName = '';//保险公司id
-  formInline.costRules = '';//协议类型
+  formInline.costRules = [];//协议类型
   formInline.agreementStatus = "";//有效状态
   formInline.auditStatus = "";//协议状态
   formInline.validState = "";