Prechádzať zdrojové kódy

报价费用审核协议信息修改

@dongkboy 5 dní pred
rodič
commit
8fede49232

+ 2 - 2
src/views/representative/externalCostApproval.vue

@@ -147,7 +147,7 @@ const fields = ref([
   {
     label: "所属协议", model: "agreementIds", type: "select", multiple: true, placeholder: "输入代码,名称,简称查找", options: agreementListALL,
     props: {
-      label: (item: any) => `${item.agreementTitle}`,
+      label: (item: any) => `${item.agreementAbbreviation}`,
       value: 'id'
     }, filterable: true
   },
@@ -220,7 +220,7 @@ const columns = [
   {
     prop: "agreementTitle", label: "协议信息", width: '350',
     formatter: (row: any) => {
-      return `${row.agreementTitle}--${row.contactPerson || ''}`
+      return `${row.agreementAbbreviation}-${row.contactPerson}`
     }
   },
   { prop: "productName", label: "险种", width: '120', },

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

@@ -183,7 +183,7 @@ const fields = ref([
   {
     label: "所属协议", model: "agreementIds", type: "select", multiple: true, placeholder: "输入代码,名称,简称查找", options: agreementListALL,
     props: {
-      label: (item: any) => `${item.agreementTitle}--${item.dockingPerson || ''}`,
+      label: (item: any) => `${item.agreementAbbreviation}--${item.dockingPerson || ''}`,
       value: 'id'
     }, filterable: true
   },
@@ -313,7 +313,7 @@ const columns = [
   {
     prop: "agreementAbbreviation", label: "协议信息", width: '250',
     formatter: (row: any) => {
-      return `${row.agreementTitle}--${row.dockingPerson || ''}`
+      return `${row.agreementAbbreviation}--${row.dockingPerson || ''}`
     }
   },
   { prop: "effectiveTime", label: "生效时间", width: '200' },