zouzs před 10 hodinami
rodič
revize
788cf76116

+ 3 - 2
src/views/order/orderLoan/index.vue

@@ -331,9 +331,10 @@ const tableConfig: PlusColumn[] = [
     valueType: "tag",
     width: 80,
     fieldProps: value => ({
-      type: value === 0 ? "success" : "primary"
+      type: value === "0" ? "success" : "primary"
     }),
-    formatter: value => (value === 0 ? "待处理" : value === 4 ? "已跟进 " : "")
+    formatter: value =>
+      value === "0" ? "未跟进" : value === "4" ? "已跟进 " : ""
   },
   {
     label: "备注",

+ 3 - 2
src/views/order/orderMy/index.vue

@@ -297,9 +297,10 @@ const tableConfig: PlusColumn[] = [
     valueType: "tag",
     width: 80,
     fieldProps: value => ({
-      type: value === 0 ? "success" : "primary"
+      type: value === "0" ? "success" : "primary"
     }),
-    formatter: value => (value === 0 ? "待处理" : value === 4 ? "已跟进 " : "")
+    formatter: value =>
+      value === "0" ? "未跟进" : value === "4" ? "已跟进 " : ""
   },
   {
     label: "备注",