xiaodai2022 пре 2 година
родитељ
комит
5cb97e41e8

+ 5 - 5
src/apis/index.js

@@ -7,7 +7,7 @@ export function detail(data) {
   const { full } = model
   delete model['full']
   return http({
-    url: `${full == 'good-share' ? prodURL : testURL}admin/projectshare`,
+    url: `${full === '/good-share' ? prodURL : testURL}admin/projectshare`,
     method: 'post',
     data: model
   })
@@ -18,7 +18,7 @@ export function back_good_list(data) {
   const { full } = model
   delete model['full']
   return http({
-    url: `${full == 'good-share' ? prodURL : testURL}admin/projectsharelist`,
+    url: `${full === '/good-share' ? prodURL : testURL}admin/projectsharelist`,
     method: 'post',
     data: model
   })
@@ -29,7 +29,7 @@ export function back_good_submit(data) {
   const { full } = model
   delete model['full']
   return http({
-    url: `${full == 'good-share' ? prodURL : testURL}admin/projectsharecheck`,
+    url: `${full === '/good-share' ? prodURL : testURL}admin/projectsharecheck`,
     method: 'post',
     data: model
   })
@@ -40,7 +40,7 @@ export function get_project_plan(data) {
   const { full } = model
   delete model['full']
   return http({
-    url: `${full == 'good-share' ? prodURL : testURL}admin/projectshareplan`,
+    url: `${full === '/good-share' ? prodURL : testURL}admin/projectshareplan`,
     method: 'post',
     data: model
   })
@@ -51,7 +51,7 @@ export function change_project_plan(data) {
   const { full } = model
   delete model['full']
   return http({
-    url: `${full == 'good-share' ? prodURL : testURL}admin/plancheck`,
+    url: `${full === '/good-share' ? prodURL : testURL}admin/plancheck`,
     method: 'post',
     data: model
   })

+ 3 - 2
src/views/good-share/components/changeBackGood.vue

@@ -124,7 +124,6 @@
                     searchList(index);
                   "
                   @selection="selection_change"
-                  
                 >
                   <template #good_img="{ scope }">
                     <div
@@ -202,7 +201,7 @@
   </div>
 </template>
 <script>
-import {back_good_submit,back_good_list} from "@/apis";
+import { back_good_submit, back_good_list } from "@/apis";
 import resToken from "@/mixins/resToken";
 import columnsForm from "./columnsForm";
 export default {
@@ -306,6 +305,7 @@ export default {
         list.forEach((e) => {
           model.feedid.push(e.id);
         });
+        model.full = this.$route.path;
         let res = await back_good_submit(model);
         this.loading = false;
         if (res && res.code === 0) {
@@ -398,6 +398,7 @@ export default {
         status: this.status === "3" ? "1" : "",
         projectNo: this.projectNo,
       };
+      model.full = this.$route.path;
       const { code, data } = await back_good_list(model);
       if (code === 0) {
         const { list, count } = data;

+ 32 - 32
src/views/good-share/components/showBackGood.vue

@@ -131,7 +131,7 @@
               </ex-table>
             </template>
           </div>
-          <div class="project-backGoodShow-title" v-if="total!==0">
+          <div class="project-backGoodShow-title" v-if="total !== 0">
             {{ status === "5" || status === "6" ? "已选定方案" : "选择方案" }}
 
             <el-button-group
@@ -268,7 +268,7 @@
   </div>
 </template>
 <script>
-import {change_project_plan,back_good_list,get_project_plan} from "@/apis";
+import { change_project_plan, back_good_list, get_project_plan } from "@/apis";
 import columnsForm from "./columnsForm";
 export default {
   name: "changeBackGood",
@@ -361,6 +361,7 @@ export default {
             planNos: [planNo],
             status: "1",
           };
+          model.full = this.$route.path;
           const res = await change_project_plan(model);
           if (res && res.code === 0) {
             this.loading = false;
@@ -378,32 +379,32 @@ export default {
           console.log("取消");
         });
 
-      const { code, data } = await back_good_list(model);
-      if (code === 0) {
-        const { list, count } = data;
-        this.tableData = list;
-        this.tableData.map((v) => {
-          v.class_cat = "";
-          if (v.can && v.can.length > 0) {
-            v.can.forEach((x, i) => {
-              v.class_cat += i === 0 ? x.name : "_" + x.name;
-            });
-          }
-          v.model = "";
-          if (v.specinfo && v.specinfo.length > 0) {
-            v.specinfo.forEach((x, i) => {
-              v.model += `${i !== 0 ? "--" : ""}${x.spec_name}[${
-                x.spec_value_name
-              }]`;
-            });
-          }
-          return v;
-        });
-        this.pageInfo.total = Number(count);
-      }  else {
-        this.tableData = [];
-        this.pageInfo.total = 0;
-      }
+      // const { code, data } = await back_good_list(model);
+      // if (code === 0) {
+      //   const { list, count } = data;
+      //   this.tableData = list;
+      //   this.tableData.map((v) => {
+      //     v.class_cat = "";
+      //     if (v.can && v.can.length > 0) {
+      //       v.can.forEach((x, i) => {
+      //         v.class_cat += i === 0 ? x.name : "_" + x.name;
+      //       });
+      //     }
+      //     v.model = "";
+      //     if (v.specinfo && v.specinfo.length > 0) {
+      //       v.specinfo.forEach((x, i) => {
+      //         v.model += `${i !== 0 ? "--" : ""}${x.spec_name}[${
+      //           x.spec_value_name
+      //         }]`;
+      //       });
+      //     }
+      //     return v;
+      //   });
+      //   this.pageInfo.total = Number(count);
+      // }  else {
+      //   this.tableData = [];
+      //   this.pageInfo.total = 0;
+      // }
       // change_project_plan
     },
     //初始化整个组件
@@ -475,9 +476,8 @@ export default {
         projectNo: this.projectNo,
         type: this.status === "5" || this.status === "6" ? "1" : "",
       };
-      const { code, data, message } = await get_project_plan(
-        model
-      );
+      model.full = this.$route.path;
+      const { code, data, message } = await get_project_plan(model);
       if (code === 0) {
         if (data.length > 0) {
           this.allPlanList = JSON.parse(JSON.stringify(data));
@@ -493,7 +493,7 @@ export default {
           sale_total: "0",
           feedback: [],
         };
-      }  else {
+      } else {
         this.$message.warning(message);
       }
     },

+ 1 - 0
src/views/good-share/index.vue

@@ -93,6 +93,7 @@ export default {
       this.loading = true;
       const { code, message, data } = await detail({
         projectNo: this.queryId,
+        full: this.$route.path
       });
       this.loading = false;
       if (code === 0) {