xiaodai2017 2 years ago
parent
commit
0b33a39e83
3 changed files with 28 additions and 3 deletions
  1. 0 0
      dist/static/js/0.js
  2. 16 0
      src/views/sellOutOrder/columns.js
  3. 12 3
      src/views/sellOutOrder/index.vue

File diff suppressed because it is too large
+ 0 - 0
dist/static/js/0.js


+ 16 - 0
src/views/sellOutOrder/columns.js

@@ -38,6 +38,22 @@ const columns = [
     label: "商品名称",
     width: "150",
   },
+  {
+    prop: "order_type",
+    label: "商品来源",
+    _slot_: "order_type",
+    width: "70",
+  },
+  {
+    prop: "contactor",
+    label: "联系人",
+    width: "70",
+  },
+  {
+    prop: "mobile",
+    label: "联系电话",
+    width: "100",
+  },
   {
     prop: "send_num",
     label: "发货数量",

+ 12 - 3
src/views/sellOutOrder/index.vue

@@ -158,7 +158,15 @@
           "
         ></el-tag>
       </template>
-
+      <template #order_type="{ scope }">
+        <el-tag
+          :size="tablebtnSize"
+          v-text="
+            (xs_order_type_options.find((item) => item.id == scope.row.order_type) || {})
+              .label || '--'
+          "
+        ></el-tag>
+      </template>
       <template #operation="{ scope }">
         <el-tooltip effect="dark" content="详情" placement="top">
           <i
@@ -177,7 +185,7 @@ import { mapGetters } from "vuex";
 import urlConfig from "@/apis/url-config";
 import asyncRequest from "@/apis/sellOutOrder";
 import { columns } from "./columns";
-
+import { xs_order_type_options } from "@/assets/js/statusList";
 export default {
   name: "sellOutOrder",
   mixins: [mixinPage, resToken],
@@ -253,7 +261,8 @@ export default {
         total: 0,
       },
       // 表格 - 列参数
-      columns: columns,
+      columns,
+      xs_order_type_options,
     };
   },
   mounted() {

Some files were not shown because too many files changed in this diff