Quellcode durchsuchen

删除供应商和客户死数据

wxy vor 4 Monaten
Ursprung
Commit
0f2c670dca

+ 1 - 42
src/views/financialManagement/accountBalance/index.vue

@@ -267,48 +267,7 @@ const columns = [
   { title: "状态", slotName: "status" },
   { title: "操作", slotName: "detail", align: "center" },
 ];
-const tableData = ref([
-  {
-    accountNumber: "13800138000",
-    customerName: "张三",
-    status: "1",
-    customerAccountNumber: "jhl001",
-    money: "100美金",
-    deplete: "100G",
-    createTime: "2024-10-11",
-    // operate:'上传合同'
-  },
-  {
-    accountNumber: "13800138000",
-    customerName: "李四",
-    status: "2",
-    customerAccountNumber: "jhl001",
-    money: "100美金",
-    deplete: "100G",
-    createTime: "2024-10-11",
-    // operate:'上传合同'
-  },
-  {
-    accountNumber: "13800138000",
-    customerName: "王五",
-    status: "2",
-    customerAccountNumber: "jhl001",
-    money: "100美金",
-    deplete: "100G",
-    createTime: "2024-10-11",
-    // operate:'上传合同'
-  },
-  {
-    accountNumber: "13800138000",
-    customerName: "赵六",
-    status: "1",
-    customerAccountNumber: "jhl001",
-    money: "100美金",
-    deplete: "100G",
-    createTime: "2024-10-11",
-    // operate:'上传合同'
-  },
-]);
+const tableData = ref([]);
 const pagination = reactive({
   total: tableData.value.length,
   current: 1,

+ 2 - 18
src/views/supplier/index.vue

@@ -67,26 +67,10 @@ const columns = computed(() => [
     { title: t('global.common.operations'), slotName: 'operation', width: 150 },
 ]);
 
-const tableData = reactive([
-    {
-        id: 1,
-        operatorCode: '8',
-        operatorName: '香港CSL',
-        operatorType: '境外本地',
-        updateTime: '2024-09-24 08:01:33',
-    },
-    {
-        id: 2,
-        operatorCode: '9',
-        operatorName: '泰国AIS',
-        operatorType: '境外本地',
-        updateTime: '2024-09-24 07:39:07',
-    },
-    // Add more mock data as needed
-]);
+const tableData = reactive([]);
 
 const pagination = reactive({
-    total: 100,
+    total: 0,
     current: 1,
     pageSize: 10,
 });