From 7fbfeddedebd05e2d23ce411be887106d31e8eff Mon Sep 17 00:00:00 2001
From: zuozhengqing <a13193816592@163.com>
Date: 星期三, 27 三月 2024 15:02:18 +0800
Subject: [PATCH] 销售明细单产品列表添加动态表头,产品信息列表根据完成数量展示字体色

---
 src/components/makepager/CommonFormTableView.vue |  165 ++++++++++++++++++++++++++++++++++++++++++++----------
 1 files changed, 133 insertions(+), 32 deletions(-)

diff --git a/src/components/makepager/CommonFormTableView.vue b/src/components/makepager/CommonFormTableView.vue
index b11a1ac..ca08f1f 100644
--- a/src/components/makepager/CommonFormTableView.vue
+++ b/src/components/makepager/CommonFormTableView.vue
@@ -3,6 +3,7 @@
     <el-form ref="form" :model="tableList" :show-message="false" label-position="right">
       <el-table
         ref="fromTable"
+        :border="isBorder"
         :data="tableList.tableData"
         :show-summary="showSummary.show"
         :summary-method="getSummaries"
@@ -21,6 +22,7 @@
           :label="item.label"
           :width="item.width"
           :min-width="item.min"
+          v-if="item.isShowColumn"
           align="center"
         >
           <!-- 琛ㄥご鏍峰紡 -->
@@ -71,18 +73,18 @@
                   <div
                     v-if="scope.row[item.prop] && scope.row[item.prop].length > 0 && isOperate"
                     class="common-select-btn"
-                    @click="handleEditClient(scope.row, item.prop)"
+                    @click="handleEditClient(scope, item.prop)"
                   >
                     <i class="el-icon-edit" title="缂栬緫"></i>
                   </div>
                   <div
                     v-if="scope.row[item.prop] && scope.row[item.prop].length > 0 && isOperate"
                     class="common-select-btn"
-                    @click="clearupClient(scope.row)"
+                    @click="clearupClient(scope)"
                   >
                     <i class="el-icon-remove-outline" title="娓呴櫎"></i>
                   </div>
-                  <div class="common-select-btn" v-else @click="selClientClick(scope.row, item.prop)">
+                  <div class="common-select-btn" v-else @click="selClientClick(scope, item.prop)">
                     <i class="el-icon-circle-plus-outline" title="閫夋嫨"></i>
                   </div>
                 </div>
@@ -153,6 +155,28 @@
               </span>
             </template>
             <el-form-item
+                v-else-if="item.inputFloat"
+                label=" "
+                :prop="'tableData.' + scope.$index + '.' + item.prop"
+                :rules="[{ required: item.isRequird ? true : false, message: '杈撳叆涓嶈兘涓虹┖' }]"
+              >
+                <el-input-number
+                  v-model="scope.row[item.prop]"
+                  placeholder=""
+                  :min="0"
+                  :precision="2"
+                  :disabled="!isOperate"
+                  :controls="false"
+                  size="mini"
+                  style="width: 100%; margin-right: 5px"
+                  @change="
+                    (val) => {
+                      commonInputChange(val, item.prop, scope.row, scope)
+                    }
+                  "
+                ></el-input-number>
+              </el-form-item>
+            <el-form-item
               v-else-if="item.inputNumber && selectBox"
               label=" "
               :prop="'tableData.' + scope.$index + '.' + item.prop"
@@ -183,6 +207,12 @@
         </el-table-column>
         <slot name="tableButton" />
       </el-table>
+      <div class="styleBtn">
+        <i @click="checkCol()" class="label">...</i>
+        <el-checkbox-group v-model="showcol" v-show="iscolopen" class="checkbox-group" @change="selectCheckBoxList">
+          <el-checkbox v-for="item in tableList.allcol" :label="item" :key="item">{{ item }} </el-checkbox>
+        </el-checkbox-group>
+      </div>
     </el-form>
     <div v-if="!detailEnter" style="margin: 10px">
       <el-button size="small" type="primary" :disabled="!isOperate" @click="add">鏂板</el-button>
@@ -251,12 +281,18 @@
       type: Boolean,
       default: true
     },
+    isBorder:{
+      type: Boolean,
+      default: false
+    },
     productTableList: {
       type: Object,
       default: () => {
         return {
           tableData: [], // 鎺ュ彛杩斿洖鏁版嵁
           isReturn: false,
+          allcol: [],
+          showcol: [],
           tableColumn: [
             // table琛ㄥ崟
             { label: "", prop: "", min: 200, tooltip: true }
@@ -289,22 +325,47 @@
         infomation: {}
       },
       productIndex: 0,
-      isRecalculate: true
+      isRecalculate: true,
+      iscolopen: false,
+      showcol: []
     }
   },
   created() {
     if (!this.selectBox) {
       this.getProductList()
     }
-    this.tableList = this.productTableList
-    if (this.tableList.tableData.length === 1 && this.tableList.tableData[0].name === "") {
-      this.isRecalculate = false
-    } else {
-      this.isRecalculate = true
+    this.getTableInfo()
+  },
+  watch:{
+    "productTableList": {
+      handler() {
+        this.getTableInfo()
+      },
+      immediate: true
+    },
+    "productTableList.showcol": {
+      handler(newVal) {
+        this.showcol = newVal
+      },
+      immediate: true
     }
   },
   computed: {},
   methods: {
+    checkCol() {
+      this.iscolopen = !this.iscolopen
+    },
+    selectCheckBoxList(val) {
+      this.$emit("selTableCol", val)
+    },
+    getTableInfo(){
+      this.tableList = this.productTableList
+      if (this.tableList.tableData.length === 1 && this.tableList.tableData[0].name === "") {
+        this.isRecalculate = false
+      } else {
+        this.isRecalculate = true
+      }
+    },
     // 浜у搧鍚嶇О
     async getProductList() {
       await getProductList({
@@ -417,6 +478,7 @@
     // 鏂板
     add() {
       if (this.addTypeIdMultiple) {
+        this.productIndex = this.tableList.tableData.length
         this.editSelCommonConfig.title = "浜у搧鍚嶇О"
         this.editSelCommonConfig.isSelectBox = true
         this.editSelCommonConfig.editVisible = true
@@ -508,43 +570,46 @@
       })
     },
     // 鏂板
-    selClientClick(row, prop) {
-      console.log(row, prop)
-      this.productIndex = row.productId - 1
+    selClientClick(scope, prop) {
+      console.log(scope, prop)
+      this.productIndex = scope.$index
       this.editSelCommonConfig.title = "浜у搧鍚嶇О"
       this.editSelCommonConfig.isSelectBox = true
       this.editSelCommonConfig.editVisible = true
     },
     // 缂栬緫
-    handleEditClient(row, prop) {
-      console.log(row, prop)
-      this.productIndex = row.productId - 1
+    handleEditClient(scope, prop) {
+      console.log(scope, prop)
+      this.productIndex = scope.$index
       this.editSelCommonConfig.title = "浜у搧鍚嶇О"
       this.editSelCommonConfig.isSelectBox = false
       this.editSelCommonConfig.editVisible = true
     },
     selClient(item) {
-      console.log(item)
-      console.log(this.tableList.tableData)
-      this.isRecalculate = true
-      // this.editConfig.infomation.client_name = row.name
-      this.tableList.tableData.map((ite, index) => {
-        if (index === this.productIndex) {
-          ite.name = item.name
-          ite.amount = item.amount || 1
-          ite.number = item.number
-          ite.price = item.price
-          ite.total = item.amount ? item.amount * item.price : 1 * item.price
-          ite.unit = item.unit
-        }
-      })
+      let list = this.tableList.tableData.map((item) => item.number)
+      if (list.findIndex((v) => v == item.number) == -1) {
+        this.isRecalculate = true
+        // this.editConfig.infomation.client_name = row.name
+        this.tableList.tableData.map((ite, index) => {
+          if (index === this.productIndex) {
+            ite.name = item.name
+            ite.amount = item.amount || 1
+            ite.number = item.number
+            ite.price = item.price
+            ite.total = item.amount ? item.amount * item.price : 1 * item.price
+            ite.unit = item.unit
+          }
+        })
+      } else {
+        this.$message.error("涓嶈兘閫夋嫨閲嶅鐨勪骇鍝侊紝 璇烽噸鏂伴�夋嫨")
+      }
     },
     getSelectArray(val) {
-      this.$emit("getSelectArray", val)
+      this.$emit("getSelectArray", val, this.productIndex)
     },
     // 娓呴櫎宸查�夋嫨鐢ㄦ埛
-    clearupClient(row) {
-      this.productIndex = row.productId - 1
+    clearupClient(scope) {
+      this.productIndex = scope.$index
       this.tableList.tableData.map((ite, index) => {
         if (index === this.productIndex) {
           ite.name = ""
@@ -575,6 +640,7 @@
 <!-- Add "scoped" attribute to limit CSS to this component only -->
 <style lang="scss" scoped>
 .page-view {
+  position: relative;
   .el-form-item {
     margin-bottom: 0;
     .custom-name {
@@ -607,5 +673,40 @@
     // text-align: left;
     text-align: center !important;
   }
+  .styleBtn {
+    position: absolute;
+    width: 30px;
+    height: 36px;
+    // line-height: 26px;
+    // background: #06c062;
+    top: 0;
+    right: -6px;
+    z-index: 11;
+    .label {
+      position: absolute;
+      top: 6px;
+      font-size: 20px;
+      // line-height: 5px;
+      cursor: pointer;
+      color: #000;
+      transform: rotate(-90deg);
+    }
+    .checkbox-group {
+      width: 160px;
+      height: 300px;
+      overflow: auto;
+      display: flex;
+      flex-direction: column;
+      line-height: 25px;
+      background: #ffffff;
+      border-radius: 16px;
+      padding: 12px;
+      position: absolute;
+      right: 0;
+      top: 30px;
+      z-index: 99;
+      box-shadow: 0 0 2px 2px #f8f8f8;
+    }
+  }
 }
 </style>

--
Gitblit v1.8.0