Parcourir la source

Merge branch 'sit'

xiaodai2022 il y a 2 ans
Parent
commit
5c9075520b

+ 8 - 0
src/apis/service/orderEntry/source/index.js

@@ -0,0 +1,8 @@
+// c端订单录入/订单导入
+import http from "@/apis/axios";
+const api = "admin/";
+export default {
+    // 提交导入数据
+    list: (data, params) => http(api + "getsourcedata", data, "post", params),
+
+};

+ 19 - 12
src/views/orderEntry/orderConfirm/index.vue

@@ -996,10 +996,11 @@ export default {
         this.ruleForm.num,
         this.ruleForm.price
       );
-      await this.get_goods_active();
-      const { platform_code: platformCode } = this.subGoodData;
-      if (platformCode) {
-        await this.get_source(platformCode);
+      if (plat_code && plat_code !== "") {
+        await this.get_goods_active();
+      }
+      if (this.subGoodData.platform_code) {
+        await this.get_source(this.subGoodData.platform_code);
       }
     },
 
@@ -1046,21 +1047,23 @@ export default {
         if (
           !(this.status === "3" || this.status === "4" || this.status === "5")
         ) {
-          console.log(this.status);
+          console.log(12345);
           this.subSitem = confirm ? JSON.parse(JSON.stringify(confirm)) : null;
         } else {
           this.subSitem = user_update
             ? JSON.parse(JSON.stringify(user_update))
             : null;
         }
-
-        if (this.confirmSitem && this.confirmSitem.plat_code) {
+        if (
+          this.confirmSitem !== null &&
+          this.confirmSitem.plat_code &&
+          this.confirmSitem.plat_code !== ""
+        ) {
           await this.onlineData(1, this.confirmSitem.plat_code);
         }
-        if (this.subSitem && this.subSitem.plat_code) {
-          const { plat_code } = this.subSitem;
-          if (plat_code) {
-            await this.onlineData(2, plat_code);
+        if (this.subSitem !== null) {
+          if (this.subSitem.plat_code && this.subSitem.plat_code !== "") {
+            await this.onlineData(2, this.subSitem.plat_code);
           }
 
           await this.againForm(this.subSitem);
@@ -1084,10 +1087,13 @@ export default {
           this.conGoodData = data;
         } else {
           this.subGoodData = data;
-          const { platform_name } = data;
+          const { platform_name, platform_code } = data;
           if (this.status !== "2") {
             this.sitem.platform_name = platform_name + "客户";
           }
+          if (platform_code) {
+            await this.get_source(platform_code);
+          }
         }
       } else if (code >= 100 && code <= 104) {
         await this.logout();
@@ -1188,6 +1194,7 @@ export default {
     async get_goods_active() {
       this.actOptions = [];
       const { skuCode, companyNo, platform_code } = this.subGoodData;
+
       let model = {
         skuCode,
         companyNo,

+ 102 - 0
src/views/orderEntry/source/index.vue

@@ -0,0 +1,102 @@
+<template>
+  <div class="source pagePadding">
+    <div
+      v-if="powers && powers.length > 0 && powers.some((item) => item == '001')"
+      v-loading="loading"
+    >
+      <el-row>
+        <el-col :span="4" style="width: 200px">
+          <search-terrace
+            :value="parmValue.platform_id"
+            :disabled="false"
+            :size="'mini'"
+            :isDetail="false"
+            :placeholder="'业务平台'"
+            @searchChange="platform_codesearchChange"
+          />
+        </el-col>
+      </el-row>
+      <el-table
+        :data="tableData"
+        style="width: 100%"
+        border
+        :size="size"
+        stripe
+      >
+        <el-table-column label="序号" type="index"> </el-table-column>
+        <el-table-column prop="date" label="业务平台" width="180">
+        </el-table-column>
+        <el-table-column prop="source" label="销售渠道"> </el-table-column>
+      </el-table>
+    </div>
+
+    <no-auth v-else></no-auth>
+  </div>
+</template>
+<script>
+import asyncRequest from "@/apis/service/orderEntry/source";
+import { mapGetters } from "vuex";
+import resToken from "@/mixins/resToken";
+export default {
+  name: "source",
+  mixins: [resToken],
+  computed: {
+    //组件SIZE设置
+    ...mapGetters(["tablebtnSize", "searchSize", "size"]),
+    powers() {
+      let tran =
+        this.$store.getters.btnList.find(
+          (item) => item.menu_route == "source"
+        ) || {};
+      if (tran && tran.action && tran.action.length > 0) {
+        return tran.action;
+      } else {
+        return [];
+      }
+    },
+  },
+  data() {
+    return {
+      loading: true,
+      parmValue: {
+        platform_id: "",
+      },
+      tableData: [],
+    };
+  },
+  mounted() {
+    this.searchList();
+  },
+  methods: {
+    restSearch() {
+      this.parmValue = {
+        platform_id: "",
+      };
+      this.searchList();
+    },
+
+    async platform_codesearchChange(e) {
+      const { id } = e;
+      this.parmValue.platform_id = id || "";
+      await this.searchList();
+    },
+    // 刷新表格
+    async searchList() {
+      this.loading = true;
+      const { code, data, message } = await asyncRequest.list(this.parmValue);
+      if (code === 0) {
+        this.tableData = data;
+      } else if (code >= 100 && code <= 104) {
+        await this.logout();
+      } else {
+        this.tableData = [];
+        this.$message.warning(message);
+      }
+      this.loading = false;
+    },
+  },
+};
+</script>
+
+<style lang="scss" scoped>
+</style>

+ 0 - 0
src/views/orderEntry/source/平台销售渠道