Parcourir la source

Merge branch 'stag' into dev

asd26269546 il y a 1 an
Parent
commit
69f6eecc62
2 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 2 2
      src/views/customer/file/detail.vue
  2. 1 1
      src/views/customer/file/index.vue

+ 2 - 2
src/views/customer/file/detail.vue

@@ -132,8 +132,8 @@ const formOptionTwo = reactive({
       },
       {
         type: "input",
-        label: proxy.t("customerFile.customerName"),
-        prop: "customerName",
+        label: proxy.t("customerFile.customerName1"),
+        prop: "followUpUserName",
       },
       {
         type: "input",

+ 1 - 1
src/views/customer/file/index.vue

@@ -46,7 +46,7 @@ const getList = (type) => {
         res.data.rows = res.data.rows.map((item) => {
           return {
             ...item,
-            cityText: item.countryName + "," + item.provinceName + "," + item.cityName,
+            cityText: item.countryName || null + "," + item.provinceName || null  + "," + item.cityName || null ,
           };
         });
       }