浏览代码

Merge branch 'company' of http://120.46.155.214:3000/xiaodai2022/order-ui-pc into company

snow 2 年之前
父节点
当前提交
7cf4c323f4

+ 2 - 0
src/apis/service/serviceParam/supplier/index.js

@@ -14,6 +14,8 @@ export default {
   status: (data, params) => http(api + 'supplerstatus', data, 'post', params),
   // 详情
   detail: (data, params) => http(api + "supplerinfo", data, "post", params),
+  //升级为业务公司
+  inv_update: (data, params) => http(api + "supplerUpgrade", data, "post", params),
 
   // 添加
   kadd: (data, params) => http(api + "keepbcreate", data, "post", params),

+ 29 - 55
src/views/serviceParam/supplier/components/addEdit.vue

@@ -24,8 +24,8 @@
             label-width="90px"
             class="demo-ruleForm"
           >
-            <el-row style="">
-              <el-col :span="1" style="height: 258px; border-right: 1px solid #dcdfe6">
+            <el-row>
+              <el-col :span="1" style="padding: 20px 0 0 0">
                 <ul class="tc fff">
                   <li>企</li>
                   <li>业</li>
@@ -33,7 +33,7 @@
                   <li>息</li>
                 </ul>
               </el-col>
-              <el-col :span="23">
+              <el-col :span="23" style="border-left: 1px solid #dcdfe6">
                 <el-row>
                   <el-col :span="4">
                     <el-form-item label="法人" prop="inv_legaler">
@@ -85,15 +85,9 @@
 
                       <el-col :span="9">
                         <el-form-item label="公司类型" prop="type">
-                          <search-company-type
-                            :value="ruleForm.type"
-                            :disabled="false"
-                            :size="'mini'"
-                            :isDetail="false"
-                            :placeholder="'公司类型'"
-                            @searchChange="type_search_change"
-                          /> </el-form-item
-                      ></el-col>
+                          {{ ruleForm.type }}</el-form-item
+                        ></el-col
+                      >
                     </el-row>
                   </el-col>
 
@@ -104,27 +98,13 @@
                   </el-col>
                   <el-col :span="6">
                     <el-form-item label="联系人" prop="contactor">
-                      <el-input
-                        placeholder="联系人"
-                        v-model="ruleForm.contactor"
-                        maxlength="12"
-                        minlength="2"
-                        clearable
-                        :disabled="isDetail == '007'"
-                      /> </el-form-item
-                  ></el-col>
+                      {{ ruleForm.contactor }}
+                    </el-form-item></el-col
+                  >
 
                   <el-col :span="24">
                     <el-form-item label="营业范围" prop="inv_scope">
-                      <el-input
-                        v-model="ruleForm.inv_scope"
-                        type="textarea"
-                        placeholder="营业范围"
-                        maxlength="2000"
-                        :rows="5"
-                        show-word-limit
-                        :disabled="isDetail == '007'"
-                      />
+                      {{ ruleForm.inv_scope }}
                     </el-form-item>
                   </el-col>
                 </el-row>
@@ -132,14 +112,7 @@
             </el-row>
 
             <el-row style="border-top: 1px solid #dcdfe6">
-              <el-col
-                :span="1"
-                style="
-                  height: 120px;
-                  padding: 20px 0 0 0;
-                  border-right: 1px solid #dcdfe6;
-                "
-              >
+              <el-col :span="1" style="padding: 20px 0 0 0">
                 <ul class="tc sss">
                   <li>开</li>
                   <li>票</li>
@@ -147,7 +120,10 @@
                   <li>息</li>
                 </ul>
               </el-col>
-              <el-col :span="23" style="padding: 20px 0 0 0">
+              <el-col
+                :span="23"
+                style="padding: 20px 0 0 0; border-left: 1px solid #dcdfe6"
+              >
                 <el-row>
                   <el-col :span="13">
                     <el-form-item size="medium" label="银行名称" prop="inv_bank">
@@ -306,6 +282,7 @@ export default {
       showModelThis: this.showModel,
       ruleForm: {
         id: "",
+        code: "",
         company: "", //公司名称
         type: "", //	公司类型
         inv_code: "", //	纳税识别号
@@ -421,11 +398,6 @@ export default {
       await this.initData();
       this.loading = false;
     },
-    type_search_change(e) {
-      const { id } = e;
-      this.ruleForm.type = id || "";
-      this.$refs.ruleForm.validateField("type");
-    },
 
     async initData() {
       const { code } = this.sitem;
@@ -446,6 +418,7 @@ export default {
         // console.log(invTime(registertime));
         this.ruleForm = {
           id: id || "",
+          code,
           company: name || "", //公司名称
           type: nature || "", //	公司类型
           inv_code: registercode || "", //	纳税识别号
@@ -460,7 +433,6 @@ export default {
           inv_scope: scope || "", //	经营范围
           license_img: license_img || "", //	营业执照
         };
-        console.log(this.ruleForm);
       } else if (res && res.code >= 100 && res.code <= 104) {
         await this.logout();
       } else {
@@ -475,6 +447,7 @@ export default {
           this.$refs.ruleForm.clearValidate();
           this.ruleForm = {
             id: "",
+            code: "",
             company: "", //公司名称
             type: "", //	公司类型
             inv_code: "", //	纳税识别号
@@ -499,20 +472,21 @@ export default {
             return;
           }
           this.loading = true;
-          let model = JSON.parse(JSON.stringify(this.ruleForm));
+          const { code, inv_bank, inv_bankNo, addr, mobile } = this.ruleForm;
 
-          let res = {};
-          if (this.isDetail === "003") {
-            delete model["id"];
-            res = await asyncRequest.add(model);
-          } else {
-            res = await asyncRequest.update(model);
-          }
+          const model = {
+            code,
+            inv_bank,
+            inv_bankNo,
+            addr,
+            mobile,
+          };
+
+          const res = await asyncRequest.inv_update(model);
           this.loading = false;
           if (res && res.code === 0) {
-            const title = this.isDetail === "003" ? "添加成功" : "修改成功";
             this.$notify.success({
-              title,
+              title: "升级成功",
               message: "",
             });
             this.showModelThis = false;

+ 204 - 23
src/views/serviceParam/terrace/addEdit.vue

@@ -20,6 +20,7 @@
             ref="ruleForm"
             :model="ruleForm"
             status-icon
+            size="mini"
             :rules="rulesThis"
             label-width="80px"
             class="demo-ruleForm"
@@ -41,6 +42,7 @@
                     v-model="ruleForm.use_type"
                     style="width: 100%"
                     :disabled="id == '007'"
+                    @change="set_required"
                     placeholder="请选择平台类型"
                   >
                     <el-option
@@ -58,6 +60,7 @@
                     v-model="ruleForm.platform_type"
                     style="width: 100%"
                     :disabled="id == '007'"
+                    @change="set_required"
                     placeholder="请选择对接平台"
                   >
                     <el-option
@@ -69,16 +72,20 @@
                     </el-option>
                   </el-select> </el-form-item
               ></el-col>
-              <el-col :span="8">
-                <el-form-item label="对接平台" prop="platform_type">
+              <el-col
+                :span="8"
+                v-show="ruleForm.use_type === '1' && ruleForm.platform_type === '0'"
+              >
+                <el-form-item label="开启渠道" prop="is_pay">
                   <el-select
-                    v-model="ruleForm.platform_type"
+                    v-model="ruleForm.is_pay"
+                    @change="set_required"
                     style="width: 100%"
                     :disabled="id == '007'"
-                    placeholder="请选择对接平台"
+                    placeholder="是否开启"
                   >
                     <el-option
-                      v-for="item in options"
+                      v-for="item in is_pay_options"
                       :key="item.value"
                       :label="item.label"
                       :value="item.value"
@@ -86,32 +93,102 @@
                     </el-option>
                   </el-select> </el-form-item
               ></el-col>
-              <el-col :span="8">
-                <el-form-item label="对接平台" prop="platform_type">
-                  <el-select
-                    v-model="ruleForm.platform_type"
-                    style="width: 100%"
+              <el-col
+                :span="8"
+                v-show="
+                  ruleForm.use_type === '1' &&
+                  ruleForm.platform_type === '0' &&
+                  ruleForm.is_pay === '1'
+                "
+              >
+                <el-form-item label="渠道名称" prop="pay_name">
+                  <el-input
+                    v-model="ruleForm.pay_name"
                     :disabled="id == '007'"
-                    placeholder="请选择对接平台"
-                  >
-                    <el-option
-                      v-for="item in options"
-                      :key="item.value"
-                      :label="item.label"
-                      :value="item.value"
-                    >
-                    </el-option>
-                  </el-select> </el-form-item
+                    placeholder="渠道名称"
+                    maxlength="20" /></el-form-item
               ></el-col>
-              <el-col :span="24"> 111</el-col>
+              <el-col
+                :span="24"
+                v-show="
+                  ruleForm.use_type === '1' &&
+                  ruleForm.platform_type === '0' &&
+                  ruleForm.is_pay === '1'
+                "
+              >
+                <el-form-item label="内容配置" prop="pay_rate">
+                  <el-table size="mini" border :data="ruleForm.pay_rate">
+                    <el-table-column label="业务公司">
+                      <template #default="scope">
+                        <search-work-company
+                          v-if="scope.row.isEdit"
+                          :value="scope.row.companyNo"
+                          :names="''"
+                          :size="'mini'"
+                          :is-detail="id !== 'add'"
+                          :placeholder="'业务公司'"
+                          @searchChange="handleCompanyChange($event, scope.$index)"
+                        />
+
+                        <span v-else>{{ ruleForm.pay_rate[0].companyName }}</span>
+                      </template>
+                    </el-table-column>
+
+                    <el-table-column label="收费点数">
+                      <template #default="scope">
+                        <digital-input
+                          ref="digitalInput"
+                          v-if="scope.row.isEdit"
+                          size="mini"
+                          :values="scope.row.rate"
+                          :placeholder="'收费点数'"
+                          :min="0"
+                          :max="100"
+                          :position="'right'"
+                          :precision="2"
+                          :controls="false"
+                          :append="'%'"
+                          @reschange="handleRateChange($event, scope.$index)"
+                        />
+
+                        <span v-else
+                          >{{ Number(ruleForm.pay_rate[0].rate).toFixed(2) }}%</span
+                        >
+                      </template>
+                    </el-table-column>
+
+                    <el-table-column
+                      width="60px"
+                      label="操作"
+                      v-if="id === '003' || id === '005'"
+                    >
+                      <template #default="scope">
+                        <el-tooltip
+                          effect="dark"
+                          :content="scope.row.isEdit ? '完成' : '修改'"
+                          placement="top"
+                        >
+                          <i
+                            :class="[
+                              scope.row.isEdit ? 'el-icon-circle-check' : 'el-icon-edit',
+                              'tb-icon',
+                            ]"
+                            @click="handleEdit(scope.$index)"
+                          ></i>
+                        </el-tooltip>
+                      </template>
+                    </el-table-column>
+                  </el-table>
+                </el-form-item>
+              </el-col>
             </el-row>
           </el-form>
         </el-col>
         <el-col :span="24" style="text-align: right">
-          <el-button v-if="id !== '007'" type="primary" @click="submitForm"
+          <el-button v-if="id !== '007'" size="mini" type="primary" @click="submitForm"
             >保 存
           </el-button>
-          <el-button @click="showModelThis = false">{{
+          <el-button size="mini" @click="showModelThis = false">{{
             id == "007" ? "关 闭" : "取 消"
           }}</el-button>
         </el-col>
@@ -122,6 +199,7 @@
 <script>
 import asyncRequest from "@/apis/service/serviceParam/terrace";
 import resToken from "@/mixins/resToken";
+import { accMul, accDiv } from "@/utils/validate";
 export default {
   name: "terrace",
   props: ["showModel", "id", "sitem"],
@@ -131,10 +209,28 @@ export default {
       loading: false,
       title: "添加平台",
       showModelThis: this.showModel,
+      rateBefore: {
+        companyNo: "GYS",
+        companyName: "供应商",
+        rate: "0",
+        is_cgd: "0",
+        is_qrd: "1",
+      },
+      rateAfter: {
+        companyNo: "KH",
+        companyName: "客户",
+        rate: "0",
+        is_cgd: "0",
+        is_qrd: "0",
+      },
       options: [
         { value: "0", label: "无对接" },
         { value: "1", label: "有赞平台" },
       ],
+      is_pay_options: [
+        { value: "0", label: "不选支付渠道" },
+        { value: "1", label: "选择支付渠道" },
+      ],
       use_type_options: [
         { value: "1", label: "ToB" },
         { value: "2", label: "ToC" },
@@ -144,12 +240,35 @@ export default {
         platform_name: "",
         platform_type: "0",
         use_type: "1",
+        pay_name: "",
+        is_pay: "0",
+        pay_rate: [
+          {
+            companyNo: "",
+            rate: "",
+            is_cgd: "1",
+            is_qrd: "1",
+            isEdit: true,
+          },
+        ],
       },
       rulesThis: this.rules,
       rules: {
         platform_name: [{ required: true, message: "平台名称不能为空", trigger: "blur" }],
         platform_type: [{ required: true, message: "请选择对接平台", trigger: "change" }],
         use_type: [{ required: true, message: "请选择平台类型", trigger: "change" }],
+        is_pay: [
+          { required: true, message: "请选择是否开启支付渠道", trigger: "change" },
+        ],
+        pay_name: [{ required: true, message: "渠道名称不能为空", trigger: "blur" }],
+        pay_rate: [
+          {
+            type: "array",
+            required: true,
+            message: "内容配置不能为空",
+            trigger: "change",
+          },
+        ],
       },
     };
   },
@@ -194,11 +313,44 @@ export default {
             platform_name: platform_name || "",
             platform_type: platform_type || "0",
             use_type: use_type || "",
+            pay_name: "",
+            is_pay: "0",
+            pay_rate: [
+              {
+                companyNo: "",
+                rate: "",
+                is_cgd: "1",
+                is_qrd: "1",
+                isEdit: true,
+              },
+            ],
           };
+          this.set_required();
         }
       });
     },
+    handleEdit(index) {
+      const lineData = this.ruleForm.pay_rate[index];
+      if (lineData.isEdit) {
+        const { companyNo, rate } = lineData;
+        if (!companyNo) return this.$message.warning("业务公司不能为空");
+        if (!rate) return this.$message.warning("收费点数不能为空");
+      }
+
+      this.$set(this.ruleForm.pay_rate, index, {
+        ...this.ruleForm.pay_rate[index],
+        ...{ isEdit: !lineData.isEdit },
+      });
+
+      this.$nextTick(() => {
+        //手动更新
+        this.$refs.digitalInput && this.$refs.digitalInput.manualUpdate(lineData.rate);
+      });
+    },
     async submitForm() {
+      const payRates = this.ruleForm.pay_rate;
+      const isPayRateSave = payRates.every(({ isEdit }) => !isEdit);
+      if (!isPayRateSave) return this.$message.warning("未完成内容配置编辑");
       await this.$refs.ruleForm.validate(async (valid) => {
         if (valid) {
           if (this.loading) {
@@ -206,6 +358,9 @@ export default {
           }
           this.loading = true;
           let model = JSON.parse(JSON.stringify(this.ruleForm));
+          delete model.pay_rate[0].isEdit;
+          model.pay_rate[0].rate = accDiv(model.pay_rate[0].rate, 100);
+          model.pay_rate = [this.rateBefore, ...model.pay_rate, this.rateAfter];
           let res = {};
           if (this.id === "003") {
             delete model["id"];
@@ -234,6 +389,32 @@ export default {
         }
       });
     },
+    set_required() {
+      const { platform_type, use_type, is_pay } = this.ruleForm;
+      this.rulesThis.is_pay[0].required = use_type === "1" && platform_type === "0";
+      this.rulesThis.pay_name[0].required =
+        use_type === "1" && platform_type === "0" && is_pay === "1";
+      this.rulesThis.pay_rate[0].required =
+        use_type === "1" && platform_type === "0" && is_pay === "1";
+      console.log("11111111111111111");
+    },
+    handleCompanyChange(e, index) {
+      const { code, label } = e;
+      const companyInfo = {
+        companyNo: code,
+        companyName: label,
+      };
+      this.$set(this.ruleForm.pay_rate, index, {
+        ...this.ruleForm.pay_rate[index],
+        ...companyInfo,
+      });
+    },
+    handleRateChange(rate, index) {
+      this.$set(this.ruleForm.pay_rate, index, {
+        ...this.ruleForm.pay_rate[index],
+        ...{ rate },
+      });
+    },
   },
 };
 </script>