戴艳蓉 3 жил өмнө
parent
commit
9a92b480ee

+ 1 - 1
src/apis/service/sheetOrder/project/index.js

@@ -9,7 +9,7 @@ export default {
   // 分页查询
   list: (data, params) => http(api + "projectlist", data, "post", params),
   // 详情
-  detail: (data, params) => http(api + "Consultinfo", data, "post", params),
+  detail: (data, params) => http(api + "projectinfo", data, "post", params),
   // 更新
   update: (data, params) => http(api + "update", data, "post", params),
   // 修改状态

+ 19 - 2
src/components/globalComponents/digital-input/main.vue

@@ -11,12 +11,21 @@
       :min="min"
       :max="max"
       :disabled="disabled"
-      :size="size || 'large'"
+      :size="size || 'medium'"
       :placeholder="placeholder"
       :controls-position="position"
     />
     <!-- step-strictly -->
-    <div class="my-append fl" v-if="append">{{ append }}</div>
+    <div
+      class="my-append fl"
+      :class="{
+        'my-append-mini': size === 'mini',
+        'my-append-small': size === 'small',
+      }"
+      v-if="append"
+    >
+      {{ append }}
+    </div>
   </div>
 </template>
 
@@ -94,6 +103,14 @@ export default {
     border-left: 0;
     border-top-right-radius: 4px;
     border-bottom-right-radius: 4px;
+    &.my-append-small {
+      height: 32px !important;
+      line-height: 32px !important;
+    }
+    &.my-append-mini {
+      height: 28px !important;
+      line-height: 28px !important;
+    }
   }
 }
 </style>

+ 1 - 0
src/views/goodStore/active/components/edit-minorder-form.vue

@@ -62,6 +62,7 @@
               />
             </el-form-item>
             <el-form-item label="成本单价" prop="cost_price">
+              
               <digital-input
                 :values="ruleForm.cost_price"
                 :placeholder="'起订量'"

+ 7 - 9
src/views/goodStore/goodsCost/index.vue

@@ -320,7 +320,7 @@ export default {
         status: "",
         good_name: "",
         spucode: "",
-        cat_id: "",
+        cat_id: [],
         brandid: "",
         good_type: "",
         companyNo: "",
@@ -346,20 +346,17 @@ export default {
       // 表格 - 列参数
       columns: listCol,
       supplierNo: [],
-      cat_id: [],
       brandid: [],
     };
   },
   mounted() {
     this.supplierNo = [];
-    this.cat_id = [];
     this.brandid = [];
     this.searchList();
   },
   methods: {
     restSearch() {
       this.supplierNo = [];
-      this.cat_id = [];
       this.brandid = [];
       // 表格 - 分页
       this.pageInfo = {
@@ -375,7 +372,7 @@ export default {
         status: "",
         good_name: "",
         spucode: "",
-        cat_id: "",
+        cat_id: [],
         brandid: "",
         good_type: "",
         companyNo: "",
@@ -479,7 +476,10 @@ export default {
       this.parmValue.good_name = this.select === "2" ? this.sinput : "";
       this.parmValue.companyNo = this.select === "3" ? this.sinput : "";
       this.parmValue.supplierNo = this.select === "4" ? this.sinput : "";
-      const res = await asyncRequest.list(this.parmValue);
+      let item = JSON.parse(JSON.stringify(this.parmValue));
+      item.cat_id =
+        item.cat_id.length > 0 ? item.cat_id[item.cat_id.length - 1] : "";
+      const res = await asyncRequest.list(item);
       if (res && res.code === 0 && res.data) {
         this.tableData = res.data.list;
         this.tableData.forEach((a) => {
@@ -500,9 +500,7 @@ export default {
     },
     //商品分类选择
     async goods_class_change(e) {
-      this.cat_id = e || [];
-      this.parmValue.cat_id =
-        this.cat_id.length > 0 ? this.cat_id[this.cat_id.length - 1] : "";
+      this.parmValue.cat_id =e
       this.pageInfo.curr = 1;
       this.parmValue.page = 1;
       await this.searchList();

+ 229 - 310
src/views/sheetOrder/project/components/addForm.vue

@@ -1,406 +1,333 @@
 <template>
-  <el-dialog
-    v-loading="loading"
-    :title="'添加咨询订单'"
-    :center="true"
-    align="left"
-    top="5vh"
-    width="1040px"
-    :close-on-click-modal="false"
-    :visible.sync="showModelThis"
-    element-loading-text="拼命加载中"
-    element-loading-spinner="el-icon-loading"
-    element-loading-background="rgba(0, 0, 0, 0.8)"
-    @close="showModelThis = false"
-  >
-    <el-card style="margin-top: -20px">
+  <el-row>
+    <el-col :span="24">
       <el-form
         ref="ruleForm"
         :model="ruleForm"
         status-icon
+        :size="'mini'"
         :rules="rulesThis"
-        label-width="85px"
-        class="demo-ruleForm"
+        label-width="112px"
       >
         <el-row>
           <el-col :span="12">
-            <el-form-item label="商品分类" prop="class_cat">
+            <el-form-item label="项目名称" prop="name">
               <el-input
-                v-model="ruleForm.class_cat"
-                placeholder="商品分类"
-                disabled
+                v-model="ruleForm.name"
+                placeholder="项目名称"
+                maxlength="100"
               />
             </el-form-item>
           </el-col>
           <el-col :span="12">
-            <el-form-item label="商品名称" prop="goods_name">
-              <el-input
-                v-model="ruleForm.goods_name"
-                placeholder="商品分类"
-                disabled
+            <el-form-item label="所属平台" prop="platform">
+              <search-terrace
+                :value="ruleForm.platform"
+                :disabled="false"
+                :size="'mini'"
+                :isDetail="false"
+                :placeholder="'所属平台'"
+                @searchChange="platform_codesearchChange"
               />
             </el-form-item>
           </el-col>
           <el-col :span="12">
-            <el-form-item label="销售方" prop="supplierNo">
-              <search-supplier
-                :value="ruleForm.supplierNo"
+            <el-form-item label="销售方" prop="companyNo">
+              <search-work-company
+                :value="ruleForm.companyNo"
                 :placeholder="'销售方公司'"
                 :disabled="false"
+                :size="'mini'"
                 :isDetail="false"
-                :type="'1'"
-                @searchChange="supplierChange"
+                @searchChange="company_idsearchChange"
               />
             </el-form-item>
           </el-col>
           <el-col :span="12">
-            <el-form-item label="购买方" prop="customer_code">
-              <!-- <el-form-item label="购买方" prop="customer_code"> -->
+            <el-form-item label="购买方" prop="khNo">
               <search-customer
-                :value="ruleForm.customer_code"
+                :value="ruleForm.khNo"
                 :names="ruleForm.customer_name"
                 :placeholder="'购买方公司'"
+                :size="'mini'"
                 @searchChange="customerChange"
                 :disabled="false"
                 :is-detail="true"
               />
-              <!-- </el-form-item> -->
-              <!-- <el-input
-                v-model="ruleForm.customer_name"
-                placeholder="购买方公司"
-                disabled
-              /> -->
-            </el-form-item>
-          </el-col>
-          <el-col :span="6">
-            <el-form-item label="商品单价" prop="sale_fee">
-              <el-input
-                v-model="ruleForm.sale_fee"
-                placeholder="商品单价"
-                disabled
-                ><template slot="append">元</template></el-input
-              >
             </el-form-item>
           </el-col>
-          <el-col :span="6">
-            <el-form-item label="下单数量" prop="good_num">
-              <el-input v-model="ruleForm.good_num" placeholder="下单数量" />
+          <el-col :span="12">
+            <el-form-item label="项目总预算" prop="budget_total">
+              <digital-input
+                :values="ruleForm.budget_total"
+                :placeholder="'起订量'"
+                :min="0"
+                :max="10000000000"
+                :position="'right'"
+                :precision="2"
+                :size="'mini'"
+                :controls="false"
+                :append="'元'"
+                @reschange="budget_total_change"
+              />
             </el-form-item>
           </el-col>
-
-          <el-col :span="6">
-            <el-form-item label="商品类型" prop="goodtype">
-              <el-select
-                v-model="ruleForm.goodtype"
+          <el-col :span="12">
+            <el-form-item label="要求到货时间" prop="arrtime">
+              <el-date-picker
+                v-model="ruleForm.arrtime"
+                type="date"
                 style="width: 100%"
-                placeholder="商品类型"
+                value-format="yyyy-MM-dd"
+                :picker-options="pickerOptions"
+                placeholder="要求到货时间"
               >
-                <el-option
-                  v-for="item in goodtypeOptions"
-                  :key="item.value"
-                  :label="item.label"
-                  :value="item.value"
-                >
-                </el-option>
-              </el-select>
+              </el-date-picker>
             </el-form-item>
           </el-col>
-          <el-col :span="6">
-            <el-form-item label="发货类型" prop="sendtype">
-              <el-select
-                v-model="ruleForm.sendtype"
-                style="width: 100%"
-                placeholder="发货类型"
-              >
-                <el-option
-                  v-for="item in options"
-                  :key="item.value"
-                  :label="item.label"
-                  :value="item.value"
-                >
-                </el-option>
-              </el-select>
+          <el-col :span="24">
+            <el-form-item label="项目用途" prop="use_desc">
+              <el-input
+                type="textarea"
+                :rows="2"
+                placeholder="项目用途"
+                v-model="ruleForm.use_desc"
+                show-word-limit
+              />
             </el-form-item>
           </el-col>
-        </el-row>
-      </el-form>
-      <div style="height: 40px" v-if="ruleForm.sendtype === '1'" class="tr">
-        <download-addr />
-        <el-button
-          type="primary"
-          size="mini"
-          @click="addrmodel = true"
-          style="margin: 0 0 0 10px"
-          >导入收货地址</el-button
-        >
-      </div>
-      <el-form
-        v-if="ruleForm.sendtype === '1'"
-        :model="addrForm"
-        ref="addrForm"
-        :size="'mini'"
-      >
-        <el-table
-          :data="addrForm.addrlist"
-          border
-          max-height="300px"
-          :size="'mini'"
-          style="width: 100%"
-          row-key="key"
-        >
-          <el-table-column
-            prop="receipt_quantity"
-            label="收货总数"
-            width="100"
-          />
-
-          <el-table-column
-            prop="arrive_time"
-            label="最晚收货日期"
-            width="110"
-          />
-
-          <el-table-column prop="contactor" label="收件联系人" width="110" />
-
-          <el-table-column prop="mobile" label="收货联系电话" width="110" />
-
-          <el-table-column
-            prop="addr_code_name"
-            label="收货省市区"
-            min-width="230"
-          />
-          <el-table-column prop="addr" label="详细地址" min-width="170" />
-
-          <el-table-column fixed="right" width="80">
-            <template slot="header" slot-scope="scope">
-              <span>操作</span>
-
-              <el-tooltip
-                class="fr"
-                style="margin: 3px 0 0 0"
-                effect="dark"
-                content="添加"
-                placement="top"
+          <el-col :span="24">
+            <el-form-item label="商品要求" prop="ladder">
+              <el-table
+                :data="tableData"
+                :size="'mini'"
+                border
+                stripe
+                style="width: 100%; margin: 0 0 20px 0"
               >
-                <i
-                  class="el-icon-circle-plus-outline tb-icon"
-                  style="color: #63cbe7"
-                  @click="openHouseModal(-1)"
-                ></i>
-              </el-tooltip>
-            </template>
-            <template slot-scope="scope">
-              <el-tooltip
-                effect="dark"
-                content="编辑"
-                v-if="!scope.row.edit"
-                placement="top"
-              >
-                <i
-                  class="el-icon-edit tb-icon"
-                  @click="openHouseModal(scope.$index)"
-                ></i>
-              </el-tooltip>
+                <el-table-column label="商品阶梯">
+                  <template slot-scope="scope"> {{ scope.$index }}</template>
+                </el-table-column>
+                <el-table-column prop="good_type" label="商品类型" />
+                <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-tooltip effect="dark" content="删除" placement="top">
-                <i
-                  class="el-icon-delete tb-icon"
-                  @click="deleteRow(scope.$index, addrForm.addrlist)"
-                ></i>
-              </el-tooltip>
-            </template>
-          </el-table-column>
-        </el-table>
-      </el-form>
-      <in-addr-model
-        :show-model="addrmodel"
-        @cancel="addrmodel = false"
-        @refresh="addrRefresh"
-      />
+                <el-table-column fixed="right">
+                  <template slot="header" slot-scope="scope">
+                    <span>操作</span>
+                    <el-tooltip
+                      effect="dark"
+                      content="添加阶梯"
+                      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="修改" placement="top">
+                      <i
+                        class="el-icon-edit tb-icon"
+                        @click="openCostEdit(scope.$index, scope.row)"
+                      ></i>
+                    </el-tooltip>
 
-      <addr-add-edit-modal
-        :showModel="showAddrAddEditModal"
-        :index="AddrAddEditModalIndex"
-        :sitem="AddrAddEditModalSitem"
-        @cancel="showAddrAddEditModal = false"
-        @refresh="showAddrAddEditModalRefresh"
-      />
-      <div style="text-align: right">
-        <el-button type="primary" :size="'mini'" @click="submitForm"
-          >保 存
-        </el-button>
-        <el-button :size="'mini'" @click="showModelThis = false">{{
-          isDetail ? "关 闭" : "取 消"
-        }}</el-button>
-      </div>
-    </el-card>
-  </el-dialog>
+                    <el-tooltip effect="dark" content="删除" 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">
+      <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>
 <script>
 import asyncRequest from "@/apis/service/sheetOrder/project";
 import resToken from "@/mixins/resToken";
-import inAddrModel from "@/components/in-addr-model";
-import AddrAddEditModal from "@/components/addr-add-edit-modal";
-import { isnumber } from "@/utils/validate";
+import costFormAddEdit from "./costFormAddEdit";
+
 export default {
   name: "Account",
   props: ["showModel", "sitem"],
   mixins: [resToken],
-  components: { inAddrModel, AddrAddEditModal },
+  components: { costFormAddEdit },
+  watch: {
+    // showModel: function (val) {
+    //   this.showModelThis = val;
+    //   if (val) {
+    //     this.initForm();
+    //   }
+    // },
+    // showModelThis(val) {
+    //   if (!val) {
+    //     this.$emit("cancel");
+    //   }
+    // },
+  },
   data() {
-    const validateWeight = (rule, value, callback) => {
-      if (value === "") {
-        callback(new Error("不能为空!"));
-      } else {
-        if (!isnumber(value)) {
-          callback(new Error("仅支持整数!"));
-        } else {
-          callback();
-        }
-      }
-    };
     return {
       loading: false,
-      showAddrAddEditModal: false,
-      AddrAddEditModalIndex: -1,
-      AddrAddEditModalSitem: {},
-
-      showModelThis: this.showModel,
-      addrmodel: false,
-      supplierNo: "",
-      options: [
-        {
-          value: "1",
-          label: "直接发货",
-        },
-        {
-          value: "2",
-          label: "延迟发货",
+      tableData: [],
+      costshowModel: false,
+      costmodelIndex: "",
+      costsitem: {},
+      pickerOptions: {
+        disabledDate(time) {
+          return time.getTime() <= Date.now();
         },
-      ],
-      goodtypeOptions: [
-        {
-          value: "1",
-          label: "普通商品",
-        },
-        {
-          value: "2",
-          label: "赠品",
-        },
-        {
-          value: "3",
-          label: "样品",
-        },
-      ],
-      addrForm: {
-        addrlist: [],
       },
       ruleForm: {
-        zxNo: "",
-        customer_code: [],
-        supplierNo: [],
-        sendtype: "1",
-        good_num: "",
-        goodtype: "1",
-        class_cat: "",
-        goods_name: "",
-        sale_fee: "",
+        name: "",
+        platform: [],
+        companyNo: "",
+        khNo: [],
+        customer_name: "",
+        budget_total: "",
+        arrtime: "",
+        use_desc: "",
+        ladder: [],
       },
       rulesThis: this.rules,
       rules: {
-        zxNo: [
+        name: [
           {
             required: true,
-            message: "咨询单号不能为空!",
+            message: "项目名称不能为空!",
             trigger: "blur",
           },
         ],
-        customer_code: [
+        platform: [
           {
+            type: "array",
             required: true,
-            message: "请选择购买方公司",
+            message: "请选择所属平台",
             trigger: "change",
           },
         ],
-        class_cat: [
+        companyNo: [
           {
             required: true,
-            message: "请选择商品分类",
+            message: "请选择销售方公司",
             trigger: "change",
           },
         ],
-        supplierNo: [
+        khNo: [
           {
             type: "array",
             required: true,
-            message: "请选择销售方公司",
+            message: "请选择购买方公司",
             trigger: "change",
           },
         ],
-        sendtype: [
+
+        budget_total: [
           {
             required: true,
-            message: "请选择发货类型",
-            trigger: "change",
+            message: "项目总预算",
+            trigger: "blur",
           },
         ],
 
-        good_num: [
+        arrtime: [
           {
             required: true,
-            validator: validateWeight,
-            trigger: "blur",
+            message: "要求到货时间",
+            trigger: "change",
           },
         ],
-        goodtype: [
+
+        use_desc: [
           {
             required: true,
-            message: "请选择商品类型",
-            trigger: "change",
+            message: "项目用途不能为空",
+            trigger: "blur",
           },
         ],
-        sale_fee: [
+        ladder: [
           {
+            type: "array",
             required: true,
-            message: "请输入商品单价",
-            trigger: "blur",
+            message: "至少添加两个商品要求",
+            trigger: "change",
           },
         ],
       },
     };
   },
-  watch: {
-    showModel: function (val) {
-      this.showModelThis = val;
-      if (val) {
-        this.initForm();
+  mounted() {
+    this.initForm();
+  },
+  methods: {
+    //平台选择
+    platform_codesearchChange(e) {
+      if (e) {
+        const { id, code, label } = e;
+        this.parmValue.platform = id ? [id] : [];
+        this.$refs.ruleForm.validateField("platform");
       }
     },
-    showModelThis(val) {
-      if (!val) {
-        this.$emit("cancel");
+    //销售方公司选择
+    company_idsearchChange(e) {
+      console.log(e);
+
+      if (e) {
+        const { id, code, label } = e;
+        this.ruleForm.companyNo = code || "";
       }
+      this.$refs.ruleForm.validateField("companyNo");
     },
-  },
-  methods: {
+    //购买方公司选择
     customerChange(e) {
       if (e && e.id) {
-        this.ruleForm.customer_code = [e.code];
+        this.ruleForm.khNo = [e.code];
         this.ruleForm.customer_name = e.label;
       } else {
-        this.ruleForm.customer_code = [];
+        this.ruleForm.khNo = [];
         this.ruleForm.customer_name = "";
       }
 
-      this.$refs.ruleForm.validateField("customer_code");
+      this.$refs.ruleForm.validateField("khNo");
     },
-    async supplierChange(e) {
-      if (e && e.id) {
-        this.ruleForm.supplierNo = [e.code];
-      } else {
-        this.ruleForm.supplierNo = [];
-      }
-      this.$refs.ruleForm.validateField("supplierNo");
+    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.tableData.splice(index, 1);
     },
     showAddrAddEditModalRefresh(e) {
       const { index, item } = e;
@@ -442,19 +369,17 @@ export default {
         if (this.$refs.ruleForm) {
           this.$refs.ruleForm.resetFields();
           this.$refs.ruleForm.clearValidate();
-          const { zxNo, class_cat, khname, khNo, cpName, sale_fee } =
-            this.sitem;
+          // const { zxNo, class_cat, khname, khNo, cpName, budget_total } =
+          //   this.sitem;
           this.ruleForm = {
-            zxNo: zxNo || "",
-            customer_code: khNo ? [khNo] : [],
-            customer_name: khname || "",
-            class_cat: class_cat || "",
-            goods_name: cpName || "",
-            supplierNo: [],
-            sendtype: "1", // 真实姓名
-            good_num: "",
-            sale_fee: sale_fee || "",
-            goodtype: "1",
+            name: "",
+            platform: [],
+            companyNo: "",
+            khNo: [],
+            budget_total: "",
+            arrtime: "",
+            use_desc: "",
+            ladder: [],
           };
         }
       });
@@ -518,14 +443,8 @@ export default {
       await this.$refs.ruleForm.validate(async (valid) => {
         if (valid) {
           this.loading = true;
-          const {
-            zxNo,
-            customer_code,
-            good_num,
-            sendtype,
-            supplierNo,
-            goodtype,
-          } = JSON.parse(JSON.stringify(this.ruleForm));
+          const { zxNo, khNo, good_num, sendtype, companyNo, goodtype } =
+            JSON.parse(JSON.stringify(this.ruleForm));
           const { addrlist } = JSON.parse(JSON.stringify(this.addrForm));
           if (sendtype === "1") {
             let isok = true,
@@ -551,9 +470,9 @@ export default {
           }
           const model = {
             zxNo: zxNo || "",
-            customer_code: customer_code.length === 1 ? customer_code[0] : "",
+            khNo: khNo.length === 1 ? khNo[0] : "",
             good_num: good_num || "",
-            supplierNo: supplierNo.length > 0 ? supplierNo[0] : "",
+            companyNo: companyNo.length > 0 ? companyNo[0] : "",
             sendtype: sendtype | "",
             goodtype: goodtype || "",
             addrlist: [],

+ 296 - 0
src/views/sheetOrder/project/components/costFormAddEdit.vue

@@ -0,0 +1,296 @@
+<template>
+  <el-dialog
+    v-loading="loading"
+    :title="title"
+    :center="true"
+    align="left"
+    top="18vh"
+    width="500px"
+    :close-on-click-modal="false"
+    :visible.sync="showModelThis"
+    element-loading-text="拼命加载中"
+    element-loading-spinner="el-icon-loading"
+    element-loading-background="rgba(0, 0, 0, 0.8)"
+    @close="showModelThis = false"
+  >
+    <el-card style="margin: -20px 0 0 0">
+      <el-row :gutter="10">
+        <el-col :span="24">
+          <el-form
+            ref="ruleForm"
+            :model="ruleForm"
+            status-icon
+            :size="'mini'"
+            :rules="rulesThis"
+            label-width="80px"
+            class="demo-ruleForm"
+          >
+            <el-form-item label="商品类型" prop="good_type">
+              <el-select
+                style="width: 100%"
+                v-model="ruleForm.good_type"
+                placeholder="商品类型"
+              >
+                <el-option
+                  v-for="item in options"
+                  :key="item.value"
+                  :label="item.label"
+                  :value="item.value"
+                >
+                </el-option>
+              </el-select>
+            </el-form-item>
+            <el-form-item label="商品名称" prop="good_name">
+              <el-input
+                placeholder="商品名称"
+                v-model="ruleForm.good_name"
+                maxlength="100"
+              >
+              </el-input>
+            </el-form-item>
+            <el-form-item label="商品图片" prop="good_img">
+              <div v-if="ruleForm.good_img" class="clearfix">
+                <img
+                  style="width: 102px; height: 102px"
+                  :src="ruleForm.good_img"
+                  class="avatar fl"
+                />
+                <el-link
+                  :underline="false"
+                  @click="deleteUrl('2')"
+                  type="warning"
+                  style="margin: 0 0 0 16px"
+                  >删除</el-link
+                >
+              </div>
+
+              <div class="activity-upload" v-else>
+                <div class="btnupload" style="position: relative">
+                  <i class="el-icon-plus avatar-uploader-icon"></i>
+                  <file-upload
+                    class="Upload"
+                    :disabled="type === 'view' || type === 'editCoin'"
+                    :accept="'.jpg,.png,.jpeg'"
+                    :multiple="false"
+                    :uploadcondition="beforeAvatarUpload"
+                    @UploadErrorEvent="UploadErrorEventproof_url"
+                    @UploadSuccessEvent="UploadSuccessEventproof_url"
+                  ></file-upload>
+                </div>
+                <div class="txt-tips fl">
+                  <p>建议大小:小于1MB</p>
+                  <p>文件格式:.jpg,.png,.jpeg</p>
+                </div>
+              </div>
+            </el-form-item>
+
+            <el-form-item label="商品分类" prop="cat_id">
+              <good-class
+                :value="ruleform.cat_id"
+                @handleChange="goods_class_change"
+                :disabled="false"
+                :size="'mini'"
+                :isDetail="false"
+                :placeholder="'分类'"
+              />
+            </el-form-item>
+            <el-form-item label="预算单价" prop="budget_price">
+              <digital-input
+                :values="ruleForm.budget_price"
+                :placeholder="'预算单价'"
+                :min="0"
+                :max="10000000000"
+                :position="'right'"
+                :precision="2"
+                :size="'mini'"
+                :controls="false"
+                :append="'元'"
+                @reschange="budget_price_change"
+              />
+            </el-form-item>
+            <el-form-item label="购买数量" prop="num">
+              <digital-input
+                :values="ruleForm.num"
+                :placeholder="'购买数量'"
+                :min="0"
+                :max="10000000000"
+                :position="'right'"
+                :precision="2"
+                :size="'mini'"
+                :controls="false"
+                :append="'元'"
+                @reschange="num_change"
+              />
+            </el-form-item>
+          </el-form>
+        </el-col>
+        <el-col :span="24" style="text-align: right">
+          <el-button :size="'small'" type="primary" @click="submitForm"
+            >保 存
+          </el-button>
+          <el-button @click="showModelThis = false" :size="'small'">{{
+            "取 消"
+          }}</el-button>
+        </el-col>
+      </el-row>
+    </el-card>
+  </el-dialog>
+</template>
+<script>
+import resToken from "@/mixins/resToken";
+export default {
+  name: "brand",
+  props: ["showModel", "index", "sitem"],
+  mixins: [resToken],
+  data() {
+    return {
+      loading: false,
+      title: "",
+      options: [
+        { value: "1", name: "竞品" },
+        { value: "2", name: "竞聘" },
+      ],
+      showModelThis: this.showModel,
+      ruleForm: {},
+      rulesThis: this.rules,
+      rules: {
+        min_num: [
+          { required: true, message: "起订量应为合法数字", trigger: "blur" },
+        ],
+        cost_fee: [
+          { required: true, message: "工艺费应为合法数字", trigger: "blur" },
+        ],
+        nake_fee: [
+          { required: true, message: "商品合计应为合法数字", trigger: "blur" },
+        ],
+        delivery_fee: [
+          { required: true, message: "其中运费应为合法数字", trigger: "blur" },
+        ],
+      },
+    };
+  },
+  watch: {
+    showModel: function (val) {
+      this.showModelThis = val;
+      if (val) {
+        this.initForm();
+      }
+    },
+    showModelThis(val) {
+      if (!val) {
+        this.$emit("cancel");
+      }
+    },
+  },
+  methods: {
+    async initForm() {
+      this.loading = true;
+      await this.resetFormData();
+      this.rulesThis = this.rules;
+      console.log(this.index);
+      if (this.index + "" === "-1") {
+        this.title = "添加商品阶梯";
+      } else {
+        this.title = "修改商品阶梯";
+      }
+
+      await this.resetForm();
+      this.loading = false;
+    },
+    //商品分类选择
+    async goods_class_change(e) {
+      this.ruleform.cat_id = e;
+      this.$refs.ruleform.validatefield("cat_id");
+    },
+    //图片上传成功
+    async UploadSuccessEventproof_url(data) {
+      const { url } = data;
+      if (url === "noToken") {
+        await this.logout();
+      } else {
+        this.ruleform.good_img = url;
+        this.$refs.ruleform.validatefield("good_img");
+        this.$message.success("图片上传成功!");
+      }
+    },
+
+    //图片上传失败
+    UploadErrorEventproof_url(res) {
+      if (res !== "break") {
+        this.$refs.ruleform.validatefield("good_img");
+        this.$message.error("图片上传失败!");
+      }
+    },
+
+    //判断图片规格
+    beforeAvatarUpload(file) {
+      let isJPG = false;
+      if (
+        file.type === "image/jpg" ||
+        file.type === "image/png" ||
+        file.type === "image/jpeg"
+      ) {
+        isJPG = true;
+      }
+      const isLt2M = file.size / 1024 / 1024 < 1;
+      if (!isJPG) {
+        this.$message.error("图片格式不正确!");
+      }
+      if (!isLt2M) {
+        this.$message.error("图片大小不能超过 1MB!");
+      }
+      return isJPG && isLt2M;
+    },
+
+    budget_price_change(e) {
+      this.ruleForm.budget_price = e + "";
+      this.$refs.ruleForm.validateField("budget_price");
+    },
+    num_change(e) {
+      this.ruleForm.num = e + "";
+      this.$refs.ruleForm.validateField("num");
+    },
+    async resetForm() {
+      // 重置
+      await this.$nextTick(async () => {
+        if (this.$refs.ruleForm) {
+          this.$refs.ruleForm.resetFields();
+          this.$refs.ruleForm.clearValidate();
+          await this.resetFormData();
+        }
+      });
+    },
+    async resetFormData() {
+      const { id, min_num, cost_fee, nake_fee, delivery_fee, cat_id } =
+        this.sitem;
+      this.ruleForm = {
+        id: id || "",
+        index: this.index,
+        good_type: good_type || "",
+        cat_id: cat_id || [],
+        cost_fee: cost_fee || "",
+        nake_fee: nake_fee || "",
+        delivery_fee: delivery_fee || "",
+      };
+    },
+
+    async submitForm() {
+      await this.$refs.ruleForm.validate(async (valid) => {
+        if (valid) {
+          this.showModelThis = false;
+          // 刷新
+          this.$emit("refresh", this.ruleForm);
+        } else {
+          console.log("error submit!!");
+          return false;
+        }
+      });
+    },
+  },
+};
+</script>
+
+   <style lang="scss" scoped>
+.brand {
+}
+</style>

+ 14 - 57
src/views/sheetOrder/project/detail.vue

@@ -6,84 +6,41 @@
       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'">
-          <base-form
-            v-if="newTime !== ''"
-            :type="queryType"
-            :id="queryId"
-            :newTime="newTime"
-            :sitem="sitem"
-            @refresh="refresh"
-          />
+        <el-tab-pane label="新建项目" name="0" v-if="queryType === 'add'">
+          <add-form/>
         </el-tab-pane>
-        <el-tab-pane label="商品详情" name="1" v-if="queryType !== 'add'">
+        <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">
-              <base-form
-                v-if="newTime !== ''"
-                :type="queryType"
-                :id="queryId"
-                :newTime="newTime"
-                :sitem="sitem"
-                @refresh="refresh"
-              />
-            </el-collapse-item>
+            <el-collapse-item title="项目详情" name="0"> 222 </el-collapse-item>
             <el-collapse-item
               title="产品部门审批"
               name="1"
-              v-if="status == '0'&&powers.some((item) => item == '056')"
+              v-if="status == '0' && powers.some((item) => item == '056')"
             >
-              <exam-form
-                :statusList="statusList"
-                :newTime="newTime"
-                :disabled="false"
-                :isMust="false"
-                @searchChange="examForm"
-              />
+              33
             </el-collapse-item>
             <el-collapse-item
               title="采购部定价"
               name="2"
-              v-if="status == '1'&&powers.some((item) => item == '057')"
+              v-if="status == '1' && powers.some((item) => item == '057')"
             >
-              <finance-exam-one-form
-                v-if="newTime !== ''"
-                :type="queryType"
-                :id="queryId"
-                :newTime="newTime"
-                :sitem="sitem"
-                @refresh="initData()"
-              />
+              444
             </el-collapse-item>
 
             <el-collapse-item
               title="财务定价"
               name="3"
-              v-if="status == '2'&&powers.some((item) => item == '058')"
+              v-if="status == '2' && powers.some((item) => item == '058')"
             >
-              <finance-exam-two-form
-                v-if="newTime !== ''"
-                :type="queryType"
-                :id="queryId"
-                :newTime="newTime"
-                :sitem="sitem"
-                @refresh="initData()"
-              />
+              555
             </el-collapse-item>
 
             <el-collapse-item
               title="财务审核定价"
               name="4"
-              v-if="status == '3'&&powers.some((item) => item == '059')"
+              v-if="status == '3' && powers.some((item) => item == '059')"
             >
-              <finance-exam-three-form
-                v-if="newTime !== ''"
-                :type="queryType"
-                :id="queryId"
-                :newTime="newTime"
-                :sitem="sitem"
-                @refresh="initData()"
-              />
+              666
             </el-collapse-item>
           </el-collapse>
         </el-tab-pane>
@@ -101,7 +58,7 @@
 import asyncRequest from "@/apis/service/sheetOrder/project";
 import resToken from "@/mixins/resToken";
 import { mapGetters } from "vuex";
-// import baseForm from "./components/baseForm";
+import addForm from "./components/addForm";
 // import financeExamOneForm from "./components/finance-exam-one-form";
 // import financeExamTwoForm from "./components/finance-exam-two-form";
 // import financeExamThreeForm from "./components/finance-exam-three-form";
@@ -109,7 +66,7 @@ export default {
   name: "projectDetail",
   mixins: [resToken],
   components: {
-    // baseForm,
+    addForm,
     // financeExamOneForm,
     // financeExamTwoForm,
     // financeExamThreeForm,

+ 29 - 44
src/views/sheetOrder/project/index.vue

@@ -30,10 +30,10 @@
                 <el-col :span="4" style="width: 140px">
                   <el-select
                     :size="searchSize"
-                    v-model="parmValue.zxtype"
+                    v-model="parmValue.status"
                     filterable
                     clearable
-                    placeholder="项目类型"
+                    placeholder="项目状态"
                     style="width: 100%"
                     @change="
                       pageInfo.curr = 1;
@@ -43,9 +43,9 @@
                   >
                     <el-option
                       v-for="item in statusList"
-                      :key="'zxtype' + item"
-                      :label="iteme"
-                      :value="item"
+                      :key="'project' + item.id"
+                      :label="item.label"
+                      :value="item.id"
                     />
                   </el-select>
                 </el-col>
@@ -81,7 +81,7 @@
                     刷新
                   </el-button>
                 </el-col>
-                   <el-col :span="4" style="width: 66px; float: right">
+                <el-col :span="4" style="width: 66px; float: right">
                   <el-button
                     type="warning"
                     class="fr"
@@ -95,7 +95,7 @@
             </el-row>
             <el-row style="padding: 10px 0 0 0">
               <el-col :span="24">
-                <el-col :span="4" style="width: 365px; ">
+                <el-col :span="4" style="width: 365px">
                   <search-customer
                     :value="customerCode"
                     :size="searchSize"
@@ -106,15 +106,17 @@
                 <el-col :span="4" style="width: 350px; padding: 0 0 0 10px">
                   <el-input
                     placeholder="项目名称"
-                    v-model="input"
+                    v-model="parmValue.project_name"
                     :size="searchSize"
-                    @blur="pageInfo.curr = 1;
-                        parmValue.page = 1;
-                        searchList();"
+                    @blur="
+                      pageInfo.curr = 1;
+                      parmValue.page = 1;
+                      searchList();
+                    "
                   >
                   </el-input>
                 </el-col>
-             
+
                 <el-col
                   :span="3"
                   class="fr"
@@ -125,9 +127,7 @@
                     :size="searchSize"
                     type="success"
                     style="float: right"
-                    @click="
-                      routeGoto('projectDetail', { id: 'add', type: 'add' })
-                    "
+                    @click="routeGoto('projectDetail', { id:'add',type:'add' })"
                   >
                     添加
                   </el-button>
@@ -160,14 +160,6 @@
           </el-tooltip>
         </template>
       </ex-table>
-      <!-- 弹窗 新增/修改 -->
-      <add-edit
-        :id="modelId"
-        :show-model="showModel"
-        :sitem="sitem"
-        @refresh="searchList"
-        @cancel="showModel = false"
-      />
     </div>
     <div v-else>
       <no-auth></no-auth>
@@ -213,28 +205,23 @@ export default {
         { id: "1", label: "启用" },
       ],
       statusList: [
-        "样品项目单",
-        "线上项目",
-        "线上贵金属",
-        "线下项目",
-        "线下贵金属",
-        "赠品项目单",
-        "项目竞聘",
+        { id: "0", label: "禁用" },
+        { id: "1", label: "启用" },
       ],
       loading: true,
       showModel: false,
       isDetail: false,
       modelId: 0,
       parmValue: {
-        zxNo: "", // 项目单编码
-        khNo: "", // 客户编码
-        cpName: "", //商品名称
-        zxtype: "", //项目类型
-        salesman: "", //申请人
         start: "",
         end: "",
         page: 1, // 页码
         size: 15, // 每页显示条数
+        khNo: "", // 客户编码
+        status: "",
+        project_name: "",
+        low: "",
+        up: "",
       },
       tableData: [],
       passwordModel: false,
@@ -291,15 +278,15 @@ export default {
       this.input = "";
       this.customerCode = [];
       this.parmValue = {
-        zxNo: "", // 项目单编码
-        khNo: "", // 客户编码
-        cpName: "", //商品名称
-        zxtype: "", //项目类型
-        salesman: "", //申请人
-        start: "",
+         start: "",
         end: "",
         page: 1, // 页码
         size: 15, // 每页显示条数
+        khNo: "", // 客户编码
+        status: "",
+        project_name: "",
+        low: "",
+        up: "",
       };
       this.searchList();
     },
@@ -311,6 +298,7 @@ export default {
         this.customerCode = [];
         this.parmValue.khNo = "";
       }
+       this.pageInfo.curr = 1;
       this.parmValue.page = 1;
       await this.searchList();
     },
@@ -357,9 +345,6 @@ export default {
     },
     async searchList() {
       this.loading = true;
-      this.parmValue.zxNo = this.select === "1" ? this.input : ""; //项目类型
-      this.parmValue.salesman = this.select === "2" ? this.input : ""; //申请人
-      this.parmValue.cpName = this.select === "3" ? this.input : ""; //商品名称
       const res = await asyncRequest.list(this.parmValue);
       if (res && res.code === 0 && res.data) {
         this.tableData = res.data.list;