Ver código fonte

Merge branch 'master' of http://36.137.93.232:3000/hf/byte-sailing-new

cz 1 ano atrás
pai
commit
ebb947056a

Diferenças do arquivo suprimidas por serem muito extensas
+ 671 - 603
src/views/EHSD/procurement/InspectionGoodsEHSD/index.vue


+ 20 - 3
src/views/salesMange/saleContract/contract/index.vue

@@ -256,7 +256,7 @@ const status = ref([
     value: 99,
   },
 ]);
-const refundStatus = ref([
+const refundStatusNew = ref([
   {
     label: "未到款",
     value: 0,
@@ -291,8 +291,8 @@ const selectConfig = computed(() => {
     },
     {
       label: "到款状态",
-      prop: "refundStatus",
-      data: refundStatus.value,
+      prop: "refundStatusNew",
+      data: refundStatusNew.value,
     },
     // {
     //   label: "归属公司",
@@ -418,6 +418,23 @@ const config = computed(() => {
     },
     {
       attrs: {
+        label: "到款状态",
+        prop: "refundStatusNew",
+        width: 140,
+      },
+      render(type) {
+        let text = "";
+        if (refundStatusNew.value && refundStatusNew.value.length > 0) {
+          let data = refundStatusNew.value.filter((item) => item.value == type);
+          if (data && data.length > 0) {
+            text = data[0].label;
+          }
+        }
+        return text;
+      },
+    },
+    {
+      attrs: {
         label: "操作",
         width: "120",
         align: "center",

Alguns arquivos não foram mostrados porque muitos arquivos mudaram nesse diff