戴艳蓉 3 years ago
parent
commit
ae3317288f

+ 1 - 1
src/apis/service/serviceParam/business/index.js

@@ -9,7 +9,7 @@ export default {
     // 组织详情
     zdetail: (data, params) => http(api + "customerselect", data, "post", params),
     // 组织更新
-    zupdate: (data, params) => http(api + "customeredit", data, "post", params),
+    zupdate: (data, params) => http(api + "customerupdate", data, "post", params),
     // 组织删除
     zdelete: (data, params) => http(api + "customerdelect", data, "post", params),
     // 组织状态

+ 1 - 1
src/components/globalComponents/search-brand/main.vue

@@ -20,7 +20,7 @@
       :key="item.id + index + 'brand'"
       :label="item.brand_name"
       :value="item.id"
-      :disabled="item.status === '1'"
+      :disabled="item.status === '0'"
     >
     </el-option>
   </el-select>

+ 1 - 1
src/components/globalComponents/search-spec/main.vue

@@ -20,7 +20,7 @@
       :key="item.id + index + 'spec'"
       :label="item.spec_name"
       :value="item.id"
-      :disabled="item.status === '1'"
+      :disabled="item.status === '0'"
     >
     </el-option>
   </el-select>

+ 1 - 1
src/components/show-good-data-modal/ShowDataTableColumns.js

@@ -45,7 +45,7 @@ export default [
     span: 8,
   },
   {
-    prop: "platform_name",
+    prop: "platform_code_en",
     label: "平台商品编码",
     span: 8,
   },

+ 12 - 10
src/views/serviceParam/business/addEdit.vue

@@ -239,7 +239,6 @@ export default {
       this.loading = true;
       this.tableData = [];
       this.old_tableData = [];
-
       await this.resetForm();
       if (this.isDetail === "003") {
         this.title = "添加企业/组织";
@@ -253,6 +252,7 @@ export default {
         this.rulesThis = {};
         await this.initData();
       }
+      console.log(this.ruleForm);
       this.setOrganName();
       this.loading = false;
     },
@@ -293,19 +293,20 @@ export default {
     },
     async initData() {
       let res = {};
-      console.log(this.kh);
       if (this.kh + "" === "0") {
         res = await asyncRequest.zdetail({ id: this.id });
       } else {
         res = await asyncRequest.qdetail({ id: this.id });
       }
-      if (res.code === 0) {
-        const { pid, name, pname, companyName, parent, member } = res.data;
+      const { code, data, message } = res;
+      if (code === 0) {
+        const { pid, name, pname, companyName, parent, member } = data;
+        console.log(data);
         this.organName = pname;
         this.ruleForm = {
           id: this.id,
           region: this.kh + "" || "0",
-          pid: parent || pid || "",
+          pid: parent ? parent : pid ? pid : "0",
           name: name || "",
           companyName: companyName || "",
         };
@@ -316,14 +317,15 @@ export default {
           this.old_tableData = [];
           this.tableData = [];
         }
-      } else if (res.code >= 100 && res.code <= 104) {
+        this.$refs.ruleForm.resetFields();
+        this.$refs.ruleForm.clearValidate();
+      } else if (code >= 100 && code <= 104) {
         await this.logout();
       } else {
-        this.$message.warning(res.message);
+        this.$message.warning(message);
       }
     },
     contactRefresh(e) {
-      console.log(e);
       this.editModel = false;
       const { index } = e;
       if (index + "" === "-1") {
@@ -341,7 +343,7 @@ export default {
           if (this.ruleForm.region === "0") {
             let zitem = {
               id: id,
-              pid: pid === "0" ? "" : pid,
+              pid:  pid,
               name: name,
             };
             if (this.isDetail === "003") {
@@ -359,7 +361,7 @@ export default {
             let qitem = {
               id: id,
               companyName: this.organName + companyName,
-              parent: pid === "0" ? "" : pid,
+              parent:  pid,
               customer_member: this.getCustomer(),
             };
 

+ 13 - 3
src/views/serviceParam/business/index.vue

@@ -142,16 +142,26 @@
         </el-table-column>
         <el-table-column fixed="right" label="操作" width="170">
           <template slot-scope="scope">
-            <el-tooltip effect="dark" content="查看信息" placement="top">
+            <el-tooltip
+              effect="dark"
+              v-if="powers.some((item) => item == '007')"
+              content="查看信息"
+              placement="top"
+            >
               <i
                 class="el-icon-view tb-icon"
                 @click="openModal(scope.row.id, '007', scope.row.kh)"
               ></i>
             </el-tooltip>
-            <el-tooltip effect="dark" content="编辑信息" placement="top">
+            <el-tooltip
+              v-if="powers.some((item) => item == '005')"
+              effect="dark"
+              content="编辑信息"
+              placement="top"
+            >
               <i
                 class="el-icon-edit tb-icon"
-                @click="openModal(scope.row.id, '007', scope.row.kh)"
+                @click="openModal(scope.row.id, '005', scope.row.kh)"
               ></i>
             </el-tooltip>
             <el-tooltip