戴艳蓉 3 years ago
parent
commit
fa728848c2

+ 15 - 0
src/components/globalComponents/search-terrace/main.vue

@@ -41,6 +41,21 @@ export default {
     "type",
     "names",
   ],
+   watch: {
+    names: function (val, old) {
+      // console.log(val, old, this.isDetail, "1");
+      this.searchName = val;
+      if (this.isDetail && this.searchName) {
+        this.remoteMethod(this.searchName);
+      }
+    },
+    isDetail: function (val, old) {
+      // console.log(val, old, this.isDetail, "2");
+      if (val && this.searchName) {
+        this.remoteMethod(this.searchName);
+      }
+    },
+  },
   /**
    * 属性集合
    * @param {String}        size             : 组件大小            非必填

+ 15 - 17
src/views/serviceParam/supplier/components/baseForm.vue

@@ -276,9 +276,7 @@
       <el-col :span="24">
         <div class="supplierAdd-title">营业执照信息</div></el-col
       >
-      <el-col
-        :span="8"
-      >
+      <el-col :span="8">
         <el-form-item label="注册号" prop="registercode">
           <el-input
             v-model="ruleForm.registercode"
@@ -288,7 +286,7 @@
           />
         </el-form-item>
       </el-col>
-      <el-col :span="16" >
+      <el-col :span="16">
         <el-form-item label="供应商名称" prop="name">
           <el-input
             v-model="ruleForm.name"
@@ -298,11 +296,11 @@
           />
         </el-form-item>
       </el-col>
-      <el-col :span="8" v-if="!(ruleForm.supplier_img&&type === 'add') ">
+      <el-col :span="8" v-if="!(ruleForm.supplier_img && type === 'add')">
         <el-form-item label="公司类型" prop="nature">
           <search-company-type
             :value="ruleForm.nature"
-            :disabled="type !== 'add' && type !== 'edit'"
+            :disabled="ruleForm.supplier_img && type !== 'add'"
             :size="'small'"
             :isDetail="false"
             :placeholder="'公司类型'"
@@ -310,21 +308,21 @@
           />
         </el-form-item>
       </el-col>
-      <el-col :span="16" v-if="!(ruleForm.supplier_img&&type === 'add') ">
+      <el-col :span="16" v-if="!(ruleForm.supplier_img && type === 'add')">
         <el-form-item label="详细地址" prop="addr">
           <el-input
             v-model="ruleForm.addr"
-            :disabled="type !== 'add' && type !== 'edit'"
+            :disabled="ruleForm.supplier_img && type !== 'add'"
             placeholder="详细地址"
             minlength="20"
           />
         </el-form-item>
       </el-col>
-      <el-col :span="8" v-if="!(ruleForm.supplier_img&&type === 'add') ">
+      <el-col :span="8" v-if="!(ruleForm.supplier_img && type === 'add')">
         <el-form-item label="法人代表" prop="legaler">
           <el-input
             v-model="ruleForm.legaler"
-            :disabled="type !== 'add' && type !== 'edit'"
+            :disabled="ruleForm.supplier_img && type !== 'add'"
             placeholder="法人代表"
             minlength="20"
           />
@@ -334,7 +332,7 @@
             v-model="ruleForm.registertime"
             type="date"
             value-format="yyyy-MM-dd"
-            :disabled="type !== 'add' && type !== 'edit'"
+            :disabled="ruleForm.supplier_img && type !== 'add'"
             style="width: 100%"
             :picker-options="pickerOptions"
             placeholder="成立日期"
@@ -343,13 +341,13 @@
         </el-form-item>
       </el-col>
 
-      <el-col :span="16" v-if="!(ruleForm.supplier_img&&type === 'add') ">
+      <el-col :span="16" v-if="!(ruleForm.supplier_img && type === 'add')">
         <el-form-item label="运营范围" prop="scope">
           <el-input
             v-model="ruleForm.scope"
             :autosize="{ minRows: 4, maxRows: 4 }"
             type="textarea"
-            :disabled="type !== 'add' && type !== 'edit'"
+            :disabled="ruleForm.supplier_img && type !== 'add'"
             placeholder="运营范围"
             minlength="20"
           />
@@ -591,11 +589,11 @@ export default {
           let model = JSON.parse(JSON.stringify(this.ruleForm));
           model.prove_img = model.prove_img.toString();
           let res = {};
-          if (this.id === "view") {
-            res = await asyncRequest.update(model);
-          } else {
+          if (this.id === "add") {
             delete model["id"];
             res = await asyncRequest.add(model);
+          } else {
+            res = await asyncRequest.update(model);
           }
           this.loading = false;
           if (res && res.code === 0) {
@@ -606,7 +604,7 @@ export default {
             });
             this.showModelThis = false;
             // 刷新
-            this.$emit("refresh");
+            this.$emit("refresh", res.data);
           } else if (res && res.code >= 100 && res.code <= 104) {
             await this.logout();
           } else {

+ 4 - 3
src/views/serviceParam/supplier/detail.vue

@@ -150,13 +150,14 @@ export default {
     handleClick(row) {
       console.log(row);
     },
-    refresh(e) {
-      const { spuCode } = e;
+    async refresh(e) {
+      const { id } = e;
       let model = {
-        id: this.queryType === "add" ? spuCode : this.queryId,
+        id: this.queryType === "add" ? id : this.queryId,
         type: "view",
       };
       this.routeReGoto("supplierDetail", model);
+      await this.initForm();
     },
     async initData() {
       this.loading = true;

+ 16 - 69
src/views/sheetOrder/project/columns.js

@@ -1,97 +1,44 @@
 export default [
 
   {
-    prop: "zxNo",
-    label: "咨询单号",
+    prop: "projectNo",
+    label: "项目单号",
     fixed: "left",
-    width: "152px",
-  },
-  // {
-  //   prop: "sequenceNo",
-  //   label: "单据号",
-  //   width: "152px",
-  // },
-  {
-    prop: "salesman",
-    label: "申请人",
-    width: "60px",
+    width: "170px",
   },
+
   {
     prop: "khNo",
     label: "客户公司编码",
     width: "125px",
   },
   {
-    prop: "khname",
+    prop: "khName",
     label: "客户公司名称",
     "min-width": "158px",
   },
   {
-    prop: "zxtype",
-    label: "咨询类型",
+    prop: "platform_code",
+    label: "平台编号",
     width: "85px",
   },
   {
-    prop: "cpNo",
-    label: "商品编号",
+    prop: "platform_name",
+    label: "平台名称",
     "width": "123px",
   },
   {
-    prop: "cpName",
-    label: "商品名称",
-    "min-width": "155px",
-  },
-  {
-    prop: "class_cat",
-    label: "商品分类",
-    "width": "100px",
+    prop: "budget_total",
+    label: "项目总预算",
+    "width": "160px",
   },
-
   {
-    prop: "unit",
-    label: "单位",
-    width: "45px",
-  },
-  {
-    prop: "num",
-    label: "需求数量",
-    width: "80px",
-  },
-  // {
-  //   prop: "sale_price",
-  //   label: "财务定价",
-  //   width: "110px",
-  // },
-  {
-    prop: "sale_fee",
-    label: "最终销售单价",
-    width: "100px",
+    prop: "creater",
+    label: "申请人",
+    width: "60px",
   },
-
-  // {
-  //   prop: "color",
-  //   label: "颜色",
-  // },
-  // {
-  //   prop: "model",
-  //   label: "型号",
-  // },
-  // {
-  //   prop: "material",
-  //   label: "材质",
-  // },
-  // {
-  //   prop: "status",
-  //   label: "状态",
-  //   _slot_: "status",
-  //   width: "80px",
-  // },
-  // {
-  //   prop: "scheme_name",
-  //   label: "方案名称",
-  // },
   {
-    prop: "zxtime",
+    prop: "addtime",
     label: "创建时间",
     width: "140px",
   },

+ 101 - 34
src/views/sheetOrder/project/components/addForm.vue

@@ -15,6 +15,7 @@
               <el-input
                 v-model="ruleForm.name"
                 placeholder="项目名称"
+                :disabled="type === 'view'"
                 maxlength="100"
               />
             </el-form-item>
@@ -23,9 +24,10 @@
             <el-form-item label="所属平台" prop="platform">
               <search-terrace
                 :value="ruleForm.platform"
-                :disabled="false"
+                :disabled="type === 'view'"
                 :size="'mini'"
-                :isDetail="false"
+                :isDetail="type === 'view'"
+                :names="platform_name"
                 :placeholder="'所属平台'"
                 @searchChange="platform_codesearchChange"
               />
@@ -36,9 +38,9 @@
               <search-work-company
                 :value="ruleForm.companyNo"
                 :placeholder="'销售方公司'"
-                :disabled="false"
+                :disabled="type === 'view'"
                 :size="'mini'"
-                :isDetail="false"
+                :isDetail="type === 'view'"
                 @searchChange="company_idsearchChange"
               />
             </el-form-item>
@@ -51,8 +53,8 @@
                 :placeholder="'购买方公司'"
                 :size="'mini'"
                 @searchChange="customerChange"
-                :disabled="false"
-                :is-detail="true"
+                :disabled="type === 'view'"
+                :is-detail="type === 'view'"
               />
             </el-form-item>
           </el-col>
@@ -66,6 +68,7 @@
                 :position="'right'"
                 :precision="2"
                 :size="'mini'"
+                :disabled="type === 'view'"
                 :controls="false"
                 :append="'元'"
                 @reschange="budget_total_change"
@@ -78,6 +81,7 @@
                 v-model="ruleForm.arrtime"
                 type="date"
                 style="width: 100%"
+                :disabled="type === 'view'"
                 value-format="yyyy-MM-dd"
                 :picker-options="pickerOptions"
                 placeholder="要求到货时间"
@@ -91,6 +95,7 @@
                 type="textarea"
                 :rows="2"
                 placeholder="项目用途"
+                :disabled="type === 'view'"
                 v-model="ruleForm.use_desc"
                 show-word-limit
               />
@@ -111,22 +116,42 @@
                   >
                 </el-table-column>
                 <el-table-column prop="good_type" label="商品类型" width="80px">
-                     <template slot-scope="scope">
+                  <template slot-scope="scope">
                     {{ scope.$index + 1 }}</template
                   >
                 </el-table-column>
                 <el-table-column prop="good_name" label="商品名称" />
-                <el-table-column prop="good_img" label="商品图片" />
-                <el-table-column prop="cat_id" label="商品分类" />
-                <el-table-column prop="budget_price" label="预算单价" />
-                <el-table-column prop="num" label="购买数量" />
+                <el-table-column prop="good_img" label="商品图片" width="70">
+                  <template slot-scope="scope">
+                    <div
+                      v-if="scope.row.good_img"
+                      style="width: 20px; height: 20px"
+                      class="hover"
+                      v-viewer
+                    >
+                      <img
+                        :src="scope.row.good_img"
+                        style="display: inline-block; width: 100%; height: 100%"
+                        alt=""
+                      />
+                    </div>
+                  </template>
+                </el-table-column>
+                <el-table-column prop="cat_name" label="商品分类" />
+                <el-table-column
+                  prop="budget_price"
+                  label="预算单价"
+                  width="110"
+                />
+                <el-table-column prop="num" label="购买数量" width="110" />
 
-                <el-table-column fixed="right">
+                <el-table-column fixed="right" width="110">
                   <template slot="header" slot-scope="scope">
                     <span>操作</span>
                     <el-tooltip
                       effect="dark"
                       content="添加阶梯"
+                      v-if="type === 'add'"
                       placement="top"
                     >
                       <i
@@ -136,14 +161,24 @@
                     </el-tooltip>
                   </template>
                   <template slot-scope="scope">
-                    <el-tooltip effect="dark" content="修改" placement="top">
+                    <el-tooltip
+                      effect="dark"
+                      content="修改"
+                      v-if="type === 'add'"
+                      placement="top"
+                    >
                       <i
                         class="el-icon-edit tb-icon"
                         @click="openCostEdit(scope.$index, scope.row)"
                       ></i>
                     </el-tooltip>
 
-                    <el-tooltip effect="dark" content="删除" placement="top">
+                    <el-tooltip
+                      effect="dark"
+                      content="删除"
+                      v-if="type === 'add'"
+                      placement="top"
+                    >
                       <i
                         class="el-icon-delete tb-icon"
                         @click="openCostEditDelete(scope.$index)"
@@ -165,13 +200,10 @@
         </el-row>
       </el-form>
     </el-col>
-    <el-col :span="24" style="text-align: right">
+    <el-col :span="24" style="text-align: right" v-if="type === 'add'">
       <el-button type="primary" :size="'mini'" @click="submitForm"
         >保 存
       </el-button>
-      <el-button :size="'mini'" @click="showModelThis = false">{{
-        isDetail ? "关 闭" : "取 消"
-      }}</el-button>
     </el-col>
   </el-row>
 </template>
@@ -182,7 +214,7 @@ import costFormAddEdit from "./costFormAddEdit";
 
 export default {
   name: "Account",
-  props: ["showModel", "sitem"],
+  props: ["showModel", "sitem", "id", "type"],
   mixins: [resToken],
   components: { costFormAddEdit },
   watch: {
@@ -219,7 +251,7 @@ export default {
       costshowModel: false,
       costmodelIndex: "",
       costsitem: {},
-         options: [
+      options: [
         { value: "1", label: "竞品" },
         { value: "2", label: "竞聘" },
       ],
@@ -228,6 +260,8 @@ export default {
           return time.getTime() <= Date.now();
         },
       },
+      company: "",
+      platform_name: "",
       ruleForm: {
         name: "",
         platform: [],
@@ -357,8 +391,6 @@ export default {
     },
     //销售方公司选择
     company_idsearchChange(e) {
-      console.log(e);
-
       if (e) {
         const { id, code, label } = e;
         this.ruleForm.companyNo = code || "";
@@ -396,7 +428,18 @@ export default {
     //初始化整个组件
     async initForm() {
       this.loading = true;
-      this.ruleForm.ladder = [];
+      this.company = "";
+      this.ruleForm = {
+        name: "",
+        platform: [],
+        companyNo: "",
+        khNo: [],
+        customer_name: "",
+        budget_total: "0",
+        arrtime: "",
+        use_desc: "",
+        ladder: [],
+      };
       this.rulesThis = this.rules;
       await this.resetForm();
       this.loading = false;
@@ -408,18 +451,42 @@ export default {
         if (this.$refs.ruleForm) {
           this.$refs.ruleForm.resetFields();
           this.$refs.ruleForm.clearValidate();
-          // const { zxNo, class_cat, khname, khNo, cpName, budget_total } =
-          //   this.sitem;
+          console.log(this.sitem);
+          const {
+            project_name,
+            budget_total,
+            ladder,
+            use_desc,
+            arrtime,
+            khName,
+            company,
+            khNo,
+            companyNo,
+            platform_id,
+            platform_name,
+          } = this.sitem;
+          this.company = company || "";
+          this.platform_name = platform_name || "";
           this.ruleForm = {
-            name: "新项目",
-            platform: [],
-            companyNo: "",
-            khNo: [],
-            budget_total: "100",
-            arrtime: "2022-03-01",
-            use_desc: "111",
-            ladder: [],
+            name: project_name || "",
+            platform: platform_id ? [platform_id] : [],
+            companyNo: companyNo || "",
+            khNo: khNo ? [khNo] : [],
+            customer_name: khName || "",
+            budget_total: budget_total || "0",
+            arrtime: arrtime || "",
+            use_desc: use_desc || "",
+            ladder: ladder && ladder.length > 0 ? ladder : [],
           };
+          this.ruleForm.ladder.forEach((e) => {
+            e.cat_name = "";
+            const { cat_info } = e;
+            if (cat_info && cat_info.length > 0) {
+              cat_info.forEach((b, bi) => {
+                e.cat_name += bi !== 0 ? "/" + b.name : b.name;
+              });
+            }
+          });
         }
       });
     },
@@ -475,7 +542,7 @@ export default {
             });
             this.showModelThis = false;
             // 刷新
-            this.$emit("refresh",res.data);
+            this.$emit("refresh", res.data);
           } else if (res && res.code >= 100 && res.code <= 104) {
             await this.logout();
           } else {

+ 564 - 0
src/views/sheetOrder/project/components/grossForm.vue

@@ -0,0 +1,564 @@
+<template>
+  <el-row>
+    <el-col :span="24">
+      <el-form
+        ref="ruleForm"
+        :model="ruleForm"
+        status-icon
+        :size="'mini'"
+        :rules="rulesThis"
+        label-width="112px"
+      >
+        <el-row>
+          <el-col :span="12">
+            <el-form-item label="项目名称" prop="name">
+              <el-input
+                v-model="ruleForm.name"
+                placeholder="项目名称"
+                :disabled="type === 'view'"
+                maxlength="100"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="所属平台" prop="platform">
+              <search-terrace
+                :value="ruleForm.platform"
+                :disabled="type === 'view'"
+                :size="'mini'"
+                :isDetail="type === 'view'"
+                :names="platform_name"
+                :placeholder="'所属平台'"
+                @searchChange="platform_codesearchChange"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="销售方" prop="companyNo">
+              <search-work-company
+                :value="ruleForm.companyNo"
+                :placeholder="'销售方公司'"
+                :disabled="type === 'view'"
+                :size="'mini'"
+                :isDetail="type === 'view'"
+                @searchChange="company_idsearchChange"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="购买方" prop="khNo">
+              <search-customer
+                :value="ruleForm.khNo"
+                :names="ruleForm.customer_name"
+                :placeholder="'购买方公司'"
+                :size="'mini'"
+                @searchChange="customerChange"
+                :disabled="type === 'view'"
+                :is-detail="type === 'view'"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="项目总预算" prop="budget_total">
+              <digital-input
+                :values="ruleForm.budget_total"
+                :placeholder="'项目总预算'"
+                :min="0"
+                :max="100000000000"
+                :position="'right'"
+                :precision="2"
+                :size="'mini'"
+                :disabled="type === 'view'"
+                :controls="false"
+                :append="'元'"
+                @reschange="budget_total_change"
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="12">
+            <el-form-item label="要求到货时间" prop="arrtime">
+              <el-date-picker
+                v-model="ruleForm.arrtime"
+                type="date"
+                style="width: 100%"
+                :disabled="type === 'view'"
+                value-format="yyyy-MM-dd"
+                :picker-options="pickerOptions"
+                placeholder="要求到货时间"
+              >
+              </el-date-picker>
+            </el-form-item>
+          </el-col>
+          <el-col :span="24">
+            <el-form-item label="项目用途" prop="use_desc">
+              <el-input
+                type="textarea"
+                :rows="2"
+                placeholder="项目用途"
+                :disabled="type === 'view'"
+                v-model="ruleForm.use_desc"
+                show-word-limit
+              />
+            </el-form-item>
+          </el-col>
+          <el-col :span="24">
+            <el-form-item label="商品要求" prop="ladder">
+              <el-table
+                :data="ruleForm.ladder"
+                :size="'mini'"
+                border
+                stripe
+                style="width: 100%"
+              >
+                <el-table-column label="商品阶梯" width="70px">
+                  <template slot-scope="scope">
+                    {{ scope.$index + 1 }}</template
+                  >
+                </el-table-column>
+                <el-table-column prop="good_type" label="商品类型" width="80px">
+                  <template slot-scope="scope">
+                    {{ scope.$index + 1 }}</template
+                  >
+                </el-table-column>
+                <el-table-column prop="good_name" label="商品名称" />
+                <el-table-column prop="good_img" label="商品图片" width="70">
+                  <template slot-scope="scope">
+                    <div
+                      v-if="scope.row.good_img"
+                      style="width: 20px; height: 20px"
+                      class="hover"
+                      v-viewer
+                    >
+                      <img
+                        :src="scope.row.good_img"
+                        style="display: inline-block; width: 100%; height: 100%"
+                        alt=""
+                      />
+                    </div>
+                  </template>
+                </el-table-column>
+                <el-table-column prop="cat_name" label="商品分类" />
+                <el-table-column
+                  prop="budget_price"
+                  label="预算单价"
+                  width="110"
+                />
+                <el-table-column prop="num" label="购买数量" width="110" />
+
+                <el-table-column fixed="right" width="110">
+                  <template slot="header" slot-scope="scope">
+                    <span>操作</span>
+                    <el-tooltip
+                      effect="dark"
+                      content="添加阶梯"
+                      v-if="type === 'add'"
+                      placement="top"
+                    >
+                      <i
+                        class="el-icon-circle-plus-outline tb-icon fr"
+                        @click="openCostEdit(-1, {})"
+                      ></i>
+                    </el-tooltip>
+                  </template>
+                  <template slot-scope="scope">
+                    <el-tooltip
+                      effect="dark"
+                      content="修改"
+                      v-if="type === 'add'"
+                      placement="top"
+                    >
+                      <i
+                        class="el-icon-edit tb-icon"
+                        @click="openCostEdit(scope.$index, scope.row)"
+                      ></i>
+                    </el-tooltip>
+
+                    <el-tooltip
+                      effect="dark"
+                      content="删除"
+                      v-if="type === 'add'"
+                      placement="top"
+                    >
+                      <i
+                        class="el-icon-delete tb-icon"
+                        @click="openCostEditDelete(scope.$index)"
+                      ></i>
+                    </el-tooltip>
+                  </template>
+                </el-table-column>
+              </el-table>
+            </el-form-item>
+            <!-- 弹窗 新增/修改 -->
+            <cost-form-add-edit
+              :index="costmodelIndex"
+              :show-model="costshowModel"
+              :sitem="costsitem"
+              @refresh="costrefreshEdit"
+              @cancel="costshowModel = false"
+            />
+          </el-col>
+        </el-row>
+      </el-form>
+    </el-col>
+    <el-col :span="24" style="text-align: right" v-if="type === 'add'">
+      <el-button type="primary" :size="'mini'" @click="submitForm"
+        >保 存
+      </el-button>
+    </el-col>
+  </el-row>
+</template>
+<script>
+import asyncRequest from "@/apis/service/sheetOrder/project";
+import resToken from "@/mixins/resToken";
+import costFormAddEdit from "./costFormAddEdit";
+
+export default {
+  name: "Account",
+  props: ["showModel", "sitem", "id", "type"],
+  mixins: [resToken],
+  components: { costFormAddEdit },
+  watch: {
+    // showModel: function (val) {
+    //   this.showModelThis = val;
+    //   if (val) {
+    //     this.initForm();
+    //   }
+    // },
+    // showModelThis(val) {
+    //   if (!val) {
+    //     this.$emit("cancel");
+    //   }
+    // },
+  },
+  data() {
+    const validate_sale_price = (rule, value, callback) => {
+      if (value === "") {
+        callback(new Error("项目总预算不能为空!"));
+      } else if (
+        value === "0" ||
+        value === "0." ||
+        value === "0.0" ||
+        value === "0.00"
+      ) {
+        callback(new Error("项目总预算不能为零!"));
+      } else {
+        callback();
+      }
+    };
+    return {
+      loading: false,
+      tableData: [],
+      costshowModel: false,
+      costmodelIndex: "",
+      costsitem: {},
+      options: [
+        { value: "1", label: "竞品" },
+        { value: "2", label: "竞聘" },
+      ],
+      pickerOptions: {
+        disabledDate(time) {
+          return time.getTime() <= Date.now();
+        },
+      },
+      company: "",
+      platform_name: "",
+      ruleForm: {
+        name: "",
+        platform: [],
+        companyNo: "",
+        khNo: [],
+        customer_name: "",
+        budget_total: "0",
+        arrtime: "",
+        use_desc: "",
+        ladder: [],
+      },
+      rulesThis: this.rules,
+      rules: {
+        name: [
+          {
+            required: true,
+            message: "项目名称不能为空!",
+            trigger: "blur",
+          },
+        ],
+        platform: [
+          {
+            type: "array",
+            required: true,
+            message: "请选择所属平台",
+            trigger: "change",
+          },
+        ],
+        companyNo: [
+          {
+            required: true,
+            message: "请选择销售方公司",
+            trigger: "change",
+          },
+        ],
+        khNo: [
+          {
+            type: "array",
+            required: true,
+            message: "请选择购买方公司",
+            trigger: "change",
+          },
+        ],
+
+        budget_total: [
+          {
+            required: true,
+            validator: validate_sale_price,
+            trigger: "blur",
+          },
+        ],
+
+        arrtime: [
+          {
+            required: true,
+            message: "要求到货时间",
+            trigger: "change",
+          },
+        ],
+
+        use_desc: [
+          {
+            required: true,
+            message: "项目用途不能为空",
+            trigger: "blur",
+          },
+        ],
+        ladder: [
+          {
+            type: "array",
+            required: true,
+            message: "至少添加两个商品要求",
+            trigger: "change",
+          },
+        ],
+      },
+    };
+  },
+  mounted() {
+    this.initForm();
+  },
+  methods: {
+    //商品要求阶梯修改
+    costrefreshEdit(e) {
+      let item = JSON.parse(JSON.stringify(e));
+      const {
+        index,
+        id,
+        budget_price,
+        num,
+        cat_name,
+        good_img,
+        good_name,
+        good_type,
+        cat_id,
+      } = item;
+      if (index + "" === "-1") {
+        this.ruleForm.ladder.push(item);
+      } else {
+        this.ruleForm.ladder.forEach((i, findex) => {
+          if (i.id === id && findex === parseInt(i.index)) {
+            this.ruleForm.ladder[findex].id = id;
+            this.ruleForm.ladder[findex].budget_price = budget_price;
+            this.ruleForm.ladder[findex].num = num;
+            this.ruleForm.ladder[findex].good_type = good_type;
+            this.ruleForm.ladder[findex].cat_id = JSON.parse(
+              JSON.stringify(cat_id)
+            );
+            this.ruleForm.ladder[findex].cat_name = JSON.parse(
+              JSON.stringify(cat_name)
+            );
+            this.ruleForm.ladder[findex].good_name = good_name;
+            this.ruleForm.ladder[findex].good_img = good_img;
+          }
+        });
+      }
+      this.showModel = false;
+      this.$refs.ruleForm.validateField("ladder");
+    },
+    //平台选择
+    platform_codesearchChange(e) {
+      if (e) {
+        const { id, code, label } = e;
+        this.ruleForm.platform = id ? [id] : [];
+        this.$refs.ruleForm.validateField("platform");
+      }
+    },
+    //销售方公司选择
+    company_idsearchChange(e) {
+      if (e) {
+        const { id, code, label } = e;
+        this.ruleForm.companyNo = code || "";
+      }
+      this.$refs.ruleForm.validateField("companyNo");
+    },
+    //购买方公司选择
+    customerChange(e) {
+      if (e && e.id) {
+        this.ruleForm.khNo = [e.code];
+        this.ruleForm.customer_name = e.label;
+      } else {
+        this.ruleForm.khNo = [];
+        this.ruleForm.customer_name = "";
+      }
+
+      this.$refs.ruleForm.validateField("khNo");
+    },
+    //项目总预算编辑
+    budget_total_change(e) {
+      this.ruleForm.budget_total = e + "";
+      this.$refs.ruleForm.validateField("budget_total");
+    },
+    //商品要求阶梯弹窗打开
+    openCostEdit(index, sitem) {
+      this.costmodelIndex = index;
+      this.costsitem = sitem;
+      this.costshowModel = true;
+    },
+    //删除某一商品要求
+    openCostEditDelete(index) {
+      this.ruleForm.ladder.splice(index, 1);
+      this.$refs.ruleForm.validateField("ladder");
+    },
+    //初始化整个组件
+    async initForm() {
+      this.loading = true;
+      this.company = "";
+      this.ruleForm = {
+        name: "",
+        platform: [],
+        companyNo: "",
+        khNo: [],
+        customer_name: "",
+        budget_total: "0",
+        arrtime: "",
+        use_desc: "",
+        ladder: [],
+      };
+      this.rulesThis = this.rules;
+      await this.resetForm();
+      this.loading = false;
+    },
+    //初始化整个表单
+    async resetForm() {
+      // 重置
+      await this.$nextTick(() => {
+        if (this.$refs.ruleForm) {
+          this.$refs.ruleForm.resetFields();
+          this.$refs.ruleForm.clearValidate();
+          console.log(this.sitem);
+          const {
+            project_name,
+            budget_total,
+            ladder,
+            use_desc,
+            arrtime,
+            khName,
+            company,
+            khNo,
+            companyNo,
+            platform_id,
+            platform_name,
+          } = this.sitem;
+          this.company = company || "";
+          this.platform_name = platform_name || "";
+          this.ruleForm = {
+            name: project_name || "",
+            platform: platform_id ? [platform_id] : [],
+            companyNo: companyNo || "",
+            khNo: khNo ? [khNo] : [],
+            customer_name: khName || "",
+            budget_total: budget_total || "0",
+            arrtime: arrtime || "",
+            use_desc: use_desc || "",
+            ladder: ladder && ladder.length > 0 ? ladder : [],
+          };
+          this.ruleForm.ladder.forEach((e) => {
+            e.cat_name = "";
+            const { cat_info } = e;
+            if (cat_info && cat_info.length > 0) {
+              cat_info.forEach((b, bi) => {
+                e.cat_name += bi !== 0 ? "/" + b.name : b.name;
+              });
+            }
+          });
+        }
+      });
+    },
+
+    async submitForm() {
+      await this.$refs.ruleForm.validate(async (valid) => {
+        if (valid) {
+          this.loading = true;
+          let model = JSON.parse(JSON.stringify(this.ruleForm));
+          console.log(model);
+          const { budget_total, ladder } = model;
+          let ztotal = Math.floor(budget_total * 100) / 100;
+          model.platform = model.platform.toString();
+          model.khNo = model.khNo.toString();
+          delete model["customer_name"];
+          if (ladder && ladder.length < 2) {
+            this.$message.warning("至少添加两个商品要求!");
+            this.loading = false;
+            return;
+          }
+          let total = 0;
+          let list = [];
+          ladder.forEach((e) => {
+            let item = JSON.parse(JSON.stringify(e));
+            delete item["id"];
+            delete item["index"];
+            delete item["is_del"];
+            delete item["cat_name"];
+            item.cat_id =
+              item.cat_id && item.cat_id.length > 0
+                ? item.cat_id[item.cat_id.length - 1]
+                : "";
+            list.push(item);
+            let a1 = Math.floor(e.budget_price * 100);
+            let a2 = parseInt(e.num);
+            let a3 = (a1 * a2) / 100;
+            total = Math.floor((a3 + total) * 100) / 100;
+          });
+          console.log(`项目总预算为${ztotal}---商品要求预算总和为${total}`);
+          if (ztotal < total) {
+            this.$message.warning("项目总预算不能低于所以商品要求预算总和!");
+            this.loading = false;
+            return;
+          }
+          model.ladder = JSON.parse(JSON.stringify(list));
+
+          let res = await asyncRequest.add(model);
+          this.loading = false;
+          if (res && res.code === 0) {
+            this.$notify.success({
+              title: "添加成功",
+              message: "",
+            });
+            this.showModelThis = false;
+            // 刷新
+            this.$emit("refresh", res.data);
+          } else if (res && res.code >= 100 && res.code <= 104) {
+            await this.logout();
+          } else {
+            this.$message.warning(res.message);
+          }
+        } else {
+          console.log("error submit!!");
+          return false;
+        }
+      });
+    },
+  },
+};
+</script>
+
+   <style lang="scss" scoped>
+.account {
+}
+</style>

+ 20 - 4
src/views/sheetOrder/project/detail.vue

@@ -1,19 +1,34 @@
 <template>
   <div class="projectDetail">
-    <div>{{ powers }},{{ status }}</div>
     <div
       class="projectDetail-main"
       v-if="powers && powers.length > 0 && powers.some((item) => item == '007')"
     >
       <el-tabs v-model="projectTabs">
         <el-tab-pane label="新建项目" name="0" v-if="queryType === 'add'">
-          <add-form @refresh="refresh" />
+          <add-form
+            v-if="newTime !== ''"
+            :newTime="newTime"
+            :id="queryId"
+            :type="queryType"
+            :sitem="sitem"
+            @refresh="refresh"
+          />
         </el-tab-pane>
         <el-tab-pane label="项目详情" name="1" v-if="queryType !== 'add'">
           <el-collapse v-model="projectNames" style="margin: -18px 0 0 0">
-            <el-collapse-item title="项目详情" name="0"> 222 </el-collapse-item>
+            <el-collapse-item title="项目详情" name="0">
+              <add-form
+                v-if="newTime !== ''"
+                :newTime="newTime"
+                :id="queryId"
+                :type="queryType"
+                :sitem="sitem"
+                @refresh="refresh"
+              />
+            </el-collapse-item>
             <el-collapse-item
-              title="产品部门审批"
+              title="设置项目毛利率"
               name="1"
               v-if="status == '0' && powers.some((item) => item == '056')"
             >
@@ -174,6 +189,7 @@ export default {
         projectNo: this.queryId,
       });
       this.loading = false;
+      console.log(data);
       if (code === 0) {
         this.sitem = JSON.parse(JSON.stringify(data));
         const { status } = this.sitem;

+ 11 - 4
src/views/sheetOrder/project/index.vue

@@ -127,7 +127,9 @@
                     :size="searchSize"
                     type="success"
                     style="float: right"
-                    @click="routeGoto('projectDetail', { id:'add',type:'add' })"
+                    @click="
+                      routeGoto('projectDetail', { id: 'add', type: 'add' })
+                    "
                   >
                     添加
                   </el-button>
@@ -155,7 +157,12 @@
           >
             <i
               class="el-icon-view tb-icon"
-              @click="routeGoto('projectDetail', { id: scope.row.id })"
+              @click="
+                routeGoto('projectDetail', {
+                  id: scope.row.projectNo,
+                  type: 'view',
+                })
+              "
             ></i>
           </el-tooltip>
         </template>
@@ -278,7 +285,7 @@ export default {
       this.input = "";
       this.customerCode = [];
       this.parmValue = {
-         start: "",
+        start: "",
         end: "",
         page: 1, // 页码
         size: 15, // 每页显示条数
@@ -298,7 +305,7 @@ export default {
         this.customerCode = [];
         this.parmValue.khNo = "";
       }
-       this.pageInfo.curr = 1;
+      this.pageInfo.curr = 1;
       this.parmValue.page = 1;
       await this.searchList();
     },