MONSTER-ygh 10 ay önce
ebeveyn
işleme
9a96272d64

+ 164 - 29
src/views/tourism/membershipManagement/electronicMembership/formBox/membershipLevelForm.vue

@@ -81,12 +81,19 @@
             
             <div v-for="(item,index) in form.classifyList" :key="index" style="margin-top: 10px;display: flex;align-items: center;">
               <el-form-item label="单品折扣:" label-width="100px">
-                <el-select v-model="form.classifyList[index].classifyId" clearable placeholder="请选择单品">
+                <el-select 
+                v-model="form.classifyList[index].classifyId" 
+                clearable 
+                placeholder="请选择单品"
+                @visible-change="visibleChange"
+                >
                   <el-option
                     v-for="item in scenicAreaProducts"
-                    :key="item.value"
-                    :label="item.label"
-                    :value="item.value">
+                    :key="item.performId"
+                    :label="item.name"
+                    :value="item.performId"
+                    :disabled="item.disabled"
+                    >
                   </el-option>
                 </el-select>
                 <el-input-number style="width: 150px;margin-left: 20px;" v-model="form.classifyList[index].discount" placeholder="请输入单品折扣" controls-position="right"></el-input-number>
@@ -102,25 +109,33 @@
               <span style="padding-bottom: 15px;font-size: 12px;color: #ccc;">(会员下单获取积分值=实付金额**积分规则基础系数"会员成长系数会员系数越大,获得成长值越多,建议数值设置不要过大)</span>
             </el-form-item>
           </el-form-item>
-          <el-form-item label="专属优惠券:" prop="couponIdList">
-            <el-select v-model="form.couponIdLList" clearable placeholder="请选择专属优惠券">
-              <el-option
-                v-for="item in scenicAreaProducts"
-                :key="item.value"
-                :label="item.label"
-                :value="item.value">
-                </el-option>
-            </el-select>
+          <el-form-item label="专属优惠券:" prop="couponList">
+            <selectMoreBox 
+              v-model="form.couponList"
+              listUrl="/merchant/merchantCouponInfo/pageList"
+              nameKey="couponName"
+              selectKey="couponName"
+              :params="{
+                status: 2
+              }"
+              title="新增优惠券" 
+              placeholder="请点击添加,选择优惠券"
+              @submitForm="()=>$refs.form.validateField('couponList')">
+            </selectMoreBox>
           </el-form-item>
-          <el-form-item label="指定产品不参与会员折扣:" prop="goodsIdList">
-            <el-select v-model="form.goodsIdList" clearable placeholder="请选择指定产品不参与会员折扣">
-              <el-option
-                v-for="item in scenicAreaProducts"
-                :key="item.value"
-                :label="item.label"
-                :value="item.value">
-                </el-option>
-            </el-select>
+          <el-form-item label="指定产品不参与会员折扣:" prop="goodsList">
+            <selectMoreBox 
+              v-model="form.goodsList"
+              title="新增景区门票" 
+              listUrl="/merchant/merchantPerformAuditorium/merchantPerformList"
+              nameKey="name"
+              selectKey="name"
+              idKey="performId"
+              :params="{
+                status: 1
+              }"
+              @submitForm="()=>$refs.form.validateField('goodsList')">
+            </selectMoreBox>
           </el-form-item>
         </el-form>
       </div>
@@ -146,12 +161,14 @@
 import { 
   getTableDeatilsByIdApi,
   updateTableApi,
+  listTableApi, 
   addTableApi
  } from '@/api/CURD'
-
+ import selectMoreBox from '../model/selectMoreBox.vue';
 export default {
   name: "addAndEdit",
   dicts: [],
+  components: {selectMoreBox},
   data() {
     return {
       title: "",
@@ -164,6 +181,7 @@ export default {
         add: '/member/memberLevelInfo/insertOrUpdate', // 新增地址
         details: '/member/memberLevelInfo/selectById', // 详情地址
         edit: '/member/memberLevelInfo/insertOrUpdate', // 编辑地址
+        list: '/merchant/merchantPerformAuditorium/merchantPerformList'
       },
       form: {
         id: undefined,
@@ -191,8 +209,15 @@ export default {
       this.actionUrlLoading = false
       this.model = model
       this.formStatus = 0
+      this.getList()
       if(model=='ADD') { // 新增
-        this.$set(this,'form',{...row,logo:[]})
+        this.$set(this,'form',{
+          ...row,
+          logo:[],
+          classifyList: [],
+          couponList: [],
+          goodsList: []
+        })
         this.formStatus = 1
       }else if(model=='EDIT') { // 新增
         let obj = {
@@ -221,7 +246,34 @@ export default {
           let obj = {
             ...res.data,
             logo: res.data.logo?res.data.logo.split(','):[],
-        }
+          }
+          if(!obj.classifyList) {
+            obj.classifyList = []
+          }
+          if(obj.couponList && obj.couponList.length>0) {
+            let list = []
+            obj.couponList.forEach((item,index)=>{
+              list.push({
+                id: item.couponId,
+                name: item.couponName
+              })
+            })
+            obj.couponList = list
+          }else {
+            obj.couponList = []
+          }
+          if(obj.goodsList && obj.goodsList.length>0) {
+            let list = []
+            obj.goodsList.forEach((item,index)=>{
+              list.push({
+                id: item.goodsId,
+                name: item.goodsName
+              })
+            })
+            obj.goodsList = list
+          }else {
+            obj.goodsList = []
+          }
           this.$set(this,'form',JSON.parse(JSON.stringify(obj)))
           this.formStatus = 1
         }else {
@@ -238,6 +290,20 @@ export default {
         this.open = false;
       }
     },
+    /** 查询用户列表 */
+    async getList() {
+      try {
+        let res = await listTableApi(
+          this.configUrl.list,
+          this.addDateRange({pageSize: 1000,
+          pageNum: 1,status: 1}))
+        this.scenicAreaProducts = res.data.rows;
+      } catch (error) {
+        console.error('获取列表失败!!!!',error)
+        this.scenicAreaProducts = [];
+      }
+        
+    },
     /**
      * 保存
      * @date 2023-11-22
@@ -247,12 +313,60 @@ export default {
       this.$refs["form"].validate(valid => {
         if (valid) {
           this.loadingText = "提交数据中..."
+          
+          let params = JSON.parse(JSON.stringify(this.form))
+          if(params.classifyList && params.classifyList.length>0) {
+            let list = []
+            let flog = false
+            this.scenicAreaProducts.forEach((item1,index1)=>{
+              params.classifyList.forEach((item,index)=>{
+                if((!item.discount&&item.discount!=0) || !item.classifyId) {
+                  flog = true
+                }
+                if(item1.performId == item.classifyId) {
+                  item.classifyName = item1.name
+                  list.push(item)
+                }
+              })
+            })
+            if(flog) {
+              this.$message.error("请选择单品或输入单品折扣!!!");
+              return
+            }
+            params.classifyList = list
+          }else {
+            params.classifyList = []
+          }
+          if(params.couponList && params.couponList.length>0) {
+            let list = []
+            params.couponList.forEach((item,index)=>{
+              list.push({
+                couponId: item.id,
+                couponName: item.name
+              })
+            })
+            params.couponList = list
+          }else {
+            params.couponList = []
+          }
+          if(params.goodsList && params.goodsList.length>0) {
+            let list = []
+            params.goodsList.forEach((item,index)=>{
+              list.push({
+                goodsId: item.id,
+                goodsName: item.name
+              })
+            })
+            params.goodsList = list
+          }else {
+            params.goodsList = []
+          }
           this.loading = true
           if (this.model != 'ADD') {
             addTableApi(
               this.configUrl.edit,{
-                ...this.form,
-                logo: this.form.logo ? this.form.logo.join(','):''
+                ...params,
+                logo: params.logo ? params.logo.join(','):''
               }).then(response => {
               this.$modal.msgSuccess("修改成功");
               this.loading = false
@@ -264,8 +378,8 @@ export default {
             })
           } else {
             addTableApi(this.configUrl.edit,{
-                ...this.form,
-                logo: this.form.logo ? this.form.logo.join(','):''
+              ...params,
+                logo: params.logo ? params.logo.join(','):''
               }).then(response => {
               this.$modal.msgSuccess("新增成功");
               this.loading = false
@@ -346,6 +460,27 @@ export default {
     /** 移除单品  */
     clearClassifyList(index) {
       this.form.classifyList.splice(index,1)
+    },
+    /**  禁选 */
+    visibleChange(type) {
+      if(type) {
+        let list = JSON.parse(JSON.stringify(this.scenicAreaProducts))
+        this.scenicAreaProducts.forEach((item1,index1)=>{
+          let folg = false
+          this.form.classifyList.forEach((item,index)=>{
+            if(item1.performId == item.classifyId) {
+              folg = true
+            }
+          })
+          if(folg) {
+            list[index1].disabled = true
+          }else {
+            list[index1].disabled = false
+          }
+        })
+        this.scenicAreaProducts = list
+      }
+      
     }
   },
 };

+ 522 - 0
src/views/tourism/membershipManagement/electronicMembership/model/selectMoreBox.vue

@@ -0,0 +1,522 @@
+<template>
+    <div class="select-more-box">
+        
+        <div class="select-more-item">
+            <div class="c_left_tag" v-if="modalDetails.length>0">
+                <el-tag class="tag" size="closable" v-for="(item, index) in modalDetails" :key="index"
+                    @close="handleCloseCopy(item)" closable>
+                    {{ item.name }}
+                    </el-tag>
+            </div>
+            <span style="color: #c0c0c0;" v-else>{{ placeholder }}</span>
+            <div class="select-more-tool" v-if="isAdd">
+                <span>目前已选择:{{ modalDetails.length }}个</span>
+                <div class="select-more-but-add" @click="dialogVisible = true"><span>添加</span><span>+</span></div>
+                <div class="select-more-but-clear" @click="clearModalDetails"><span>清除已选</span></div>
+            </div>
+        </div>
+        <el-dialog 
+        append-to-body 
+        :title="title" 
+        :visible.sync="dialogVisible" 
+        @open="dialogOpen" 
+        @close="dialogClose"
+        :close-on-click-modal="false"
+        :destroy-on-close="true" 
+        width="900px" 
+        class="information-dialog"
+        custom-class="template-con-dialog" top="auto">
+            <div class="form-con" v-loading="loading">
+                <div class="form_content">
+                    <!-- left -->
+                    <div class="c_left">
+                        <div class="c_left_btn">
+                            <div>已选成员</div>
+                            <el-button type="text" @click="clearUser">清空</el-button>
+                        </div>
+                        <div class="c_left_tag">
+                            <el-tag class="tag" size="closable" v-for="(item, index) in nameList" :key="index"
+                                @close="handleClose(item)" closable>
+                                {{ item.name }}
+                            </el-tag>
+                        </div>
+                    </div>
+                    <!-- right -->
+                    <div class="c_right">
+                        <div class="c_input">
+                            <el-input size="mini" prefix-icon="el-icon-search" v-model="userValue" placeholder="输入搜索"></el-input>
+                            <el-button style="margin-left: 10px;" size="mini" @click="searchFun(false)">
+                                重置
+                            </el-button>
+                            <el-button size="mini" @click="searchFun(true)" type="primary">
+                                搜索
+                            </el-button>
+                        </div>
+                        <div class="c_checkbox" v-loading="listLoading">
+                            <el-checkbox :indeterminate="isIndeterminate" v-model="checkAll"
+                                @change="handleCheckAllChange">全选当前页</el-checkbox>
+                           <div style="margin: 15px 0;"></div>
+                            <div class="c_checkbox_item" v-for="(item, index) in dataList" :key="index">
+                                <el-checkbox 
+                                class="checkBox_item" 
+                                v-model="item.checked"
+                                @change="(val)=>changeCheckbox(item,index,val)"
+                                    :key="index">{{
+                                        item.name
+                                    }}</el-checkbox>
+                            </div>
+                            
+                        </div>
+                        <div class="c_pagination">
+                            <el-pagination
+                            v-if="!listLoading"
+                            small
+                            background
+                            layout="total, prev, pager, next"
+                            :page-sizes="page.pageSizes"
+                            :page-size="page.pageSize"
+                            :total="page.total"
+                            :current-page="page.pageNum"
+                            @size-change="handleSizeChange"
+                            @current-change="handleCurrentChange"
+                            >
+                            </el-pagination>
+                        </div>
+                    </div>
+                </div>
+    
+                <div class="drawer-footer">
+                    <el-button @click="dialogVisible = false">
+                        取消
+                    </el-button>
+                    <el-button @click="submitForm()" type="primary">
+                        确定
+                    </el-button>
+                </div>
+            </div>
+        </el-dialog>
+    </div>
+    
+</template>
+  
+<script>
+import { 
+    listTableApi, 
+  } from "@/api/CURD";
+export default {
+    props: {
+        title: {
+            type: String,
+            default: '新增',
+        },
+        value: {
+            type: Array,
+            default: ()=>{
+                return []
+            },
+        },
+        idKey: { // 绑定的iD
+            type: String,
+            default: 'id',
+        },
+        nameKey: { // 展示的字段名称
+            type: String,
+            default: 'name',
+        },
+        isAdd: { // 是否展示新增
+            type: Boolean,
+            default: true,
+        },
+        selectKey: { // 查询参数
+            type: String,
+            default: 'name',
+        },
+        pageSizeKey: { // 分页参数
+            type: String,
+            default: 'pageSize',
+        },
+        pageNumKey: { // 分页参数
+            type: String,
+            default: 'pageNum',
+        },
+        listUrl: { // 列表查询接口地址
+            type: String,
+            default: '',
+        },
+        params: { // 默认条件
+            type: Object,
+            default: ()=>{
+                return {}
+            },
+        },
+        limit: { // 限制选择的条数
+            type: Number,
+            default: -1, // -1 表示不限
+        },
+        placeholder: {
+            type: String,
+            default: '请点击添加',
+        }
+    },
+    data() {
+        return {
+            dialogVisible: false, //弹窗选择
+            userValue: '', //人员搜索
+            dataList: [], //数据列表集合
+            nameList: [],//已选择人员
+            checkAll: false,
+            checkedUsers: [], // 选中的
+            isIndeterminate: false,
+            modalDetails: [],
+            loading: false,// 
+            page: {
+                pageSizes: [100, 200, 300, 400],
+                pageSize: 10,
+                pageNum: 1,
+                total: 0,
+            },
+            listLoading: false,
+        }
+    },
+    watch: {
+        value: {
+            handler(newValue){
+                console.log("dfsdsfsdf====",this.value)
+                if(this.value) {
+                    this.modalDetails = JSON.parse(JSON.stringify(this.value))
+                }else {
+                    this.modalDetails = []
+                }
+            },
+            immediate: true
+        }
+    },
+    methods: {
+        // 弹窗组件显示事件
+        async dialogOpen() {
+            this.loading = true
+            this.listLoading = false
+            this.userValue = ''
+            this.$set(this.page,'pageNum',1)
+            if (this.modalDetails.length) {
+                this.modalDetails.forEach((item) => {
+                    this.checkedUsers.push(item.id)
+                })
+                this.nameList = this.modalDetails//已选择人员
+                this.checkAll = false
+                this.isIndeterminate = false
+                this.userValue = '' //人员搜索
+            } else {
+                this.nameList = []//已选择人员
+                this.checkAll = false
+                this.checkedUsers = [] // 选中的
+                this.isIndeterminate = false
+                this.userValue = '' //人员搜索
+            }
+            await this.listUser()
+            this.loading = false
+        },
+        /**  搜索   */
+        searchFun(type) {
+            this.listLoading = true
+            if(!type) {
+                this.userValue = ''
+            }
+            this.listUser()
+        },
+        // 查询支部人员集合
+        async listUser() {
+            try {
+                this.dataList = []
+                let res = await listTableApi(this.listUrl,{
+                    ...this.params,
+                    [this.selectKey]: this.userValue,
+                    [this.pageNumKey]: this.page.pageNum,
+                    [this.pageSizeKey]: this.page.pageSize
+                })
+                if (res.code == 200) {
+                    let list = []
+                    let listId = []
+                    this.nameList.forEach((item1,index1)=>{
+                        listId.push(item1.id)
+                    })
+                    res.data.rows.forEach((item,index)=>{
+                        list.push({
+                            ...item,
+                            id: item[this.idKey],
+                            name: item[this.nameKey],
+                            checked: listId.includes(item[this.idKey])
+                        })
+                    })
+                    this.dataList = list
+                    this.$set(this.page,'total',res.data.total)
+                } else {
+                    this.$message({
+                        type: 'error',
+                        message: res.msg
+                    });
+                }
+                this.checkedCurrentPageAll()
+                this.listLoading = false
+            } catch (error) {
+                this.checkedCurrentPageAll()
+                this.loading = false
+                this.listLoading = false
+                this.dialogVisible = false
+            }
+        },
+        // 清空按钮
+        clearUser() {
+            this.handleCheckAllChange(false)
+            this.isIndeterminate = false;
+            this.checkAll = false
+        },
+        // 清除全部
+        clearModalDetails() {
+            this.$emit('input', [])
+            this.$emit('submitForm')
+        },
+        // 单项删除已选按钮 (外部)
+        handleCloseCopy(item) {
+            let arr = this.modalDetails.filter((item1) => {
+                return item.id != item1.id
+            })
+            this.$emit('input', arr)
+            this.$emit('submitForm')
+        },
+        // 单项删除已选按钮 (备选)
+        handleClose(item) {
+            let arr = this.nameList.filter((item1) => {
+                return item.id != item1.id
+            })
+            let listId = []
+            arr.forEach((item,index) => {
+                listId.push(item.id)
+            })
+            let list = JSON.parse(JSON.stringify(this.dataList))
+            list.forEach((item,index) => {
+                list[index].checked = listId.includes(item.id)
+            })
+            this.nameList = arr
+            this.dataList = list
+            this.checkedCurrentPageAll()
+        },
+        // 全选当前页按钮
+        handleCheckAllChange(val) {
+            // if(this.limit != -1 ) {
+            //     if(this.dataList.length)
+            // }
+
+            let list = JSON.parse(JSON.stringify(this.dataList))
+            let listId = []
+            list.forEach((item,index) => {
+                list[index].checked = val
+                listId.push(item.id)
+            })
+            let listExist = this.nameList.filter((item,index)=>{
+                return !listId.includes(item.id)
+            })
+            list.forEach((item,index) => {
+                if(item.checked) {
+                    listExist.push({
+                        ...item
+                    })
+                } 
+            })
+            this.dataList = list
+            this.nameList = listExist
+            this.isIndeterminate = false;
+        },
+        /** 检测当前页是否全选  */
+        checkedCurrentPageAll() {
+            let length = 0
+            let list = JSON.parse(JSON.stringify(this.dataList))
+            list.forEach((item,index) => {
+                if(item.checked) {
+                    length++
+                }
+            })
+            this.checkAll = (length == list.length)&& length != 0
+        },
+        // 弹窗组件关闭事件
+        dialogClose() {
+        },
+        // 提交表单事件
+        submitForm() {
+            this.$emit('input', JSON.parse(JSON.stringify(this.nameList)))
+            this.$emit('submitForm')
+            this.dialogVisible = false
+        },
+        /** 调整每页选择条数  */
+        handleSizeChange(val) {
+        },
+        /** 点击页码  */
+        handleCurrentChange(val) {
+            this.page.pageNum = val
+            this.listLoading = true
+            this.listUser()
+        },
+        /** 选择列表  */
+        changeCheckbox(item,index,val) {
+            if(val){
+                this.nameList.push({
+                    ...item
+                })
+            }else {
+                let i = -1
+                this.nameList.forEach((item1,index)=>{
+                    if(item1.id == item.id) {
+                        i = index
+                    }
+                })
+                if(i!=-1) {
+                    this.nameList.splice(i,1)
+                }
+            }
+            this.checkedCurrentPageAll()
+        }
+ 
+    },
+}
+</script>
+  
+<style lang="scss" scoped>
+.is-error {
+    .select-more-item {
+        border-color: #f56c6c !important;
+    }
+}
+.select-more-tool {
+    position: absolute;
+    bottom: 5px;
+    right: 5px;
+    display: flex;
+    .select-more-but-add {
+        width: 80px;
+        height: 36px;
+        box-sizing: border-box;
+        color: #fff;
+        background-color: #409eff;
+        border-color: #409eff;
+        display: flex;
+        justify-content: center;
+        align-items: center;
+        border-radius: 5px;
+        cursor: pointer;
+        margin-left: 10px;
+        
+    }
+    .select-more-but-clear {
+        width: 80px;
+        height: 36px;
+        box-sizing: border-box;
+        color: #fff;
+        background-color: #f56c6c;
+        border-color: #f56c6c;
+        display: flex;
+        justify-content: center;
+        align-items: center;
+        border-radius: 5px;
+        cursor: pointer;
+        margin-left: 10px;
+    }
+}
+
+.select-more-item {
+    width: 100%;
+    height: 150px;
+    border: 1px solid #C0C4CC;
+    overflow: hidden;
+    overflow-y: auto;
+    border-radius: 5px;
+    margin-top: 5px;
+    position: relative;
+    padding: 10px;
+    .c_left_tag {
+        display: flex;
+        flex-wrap: wrap;
+    }
+ 
+            .tag {
+                margin-left: 0 !important;
+                margin-right: 10px;
+                margin-bottom: 10px;
+            }
+}
+.form-con {
+    padding-top: 10px;
+    margin: auto;
+ 
+    .form_content {
+        height: 500px;
+        display: flex;
+ 
+        .c_left {
+            width: 50%;
+            border-right: 1px solid #EBEEF5;
+            padding: 0 10px;
+ 
+            .c_left_btn {
+                height: 32px;
+                display: flex;
+                justify-content: space-between;
+                align-items: center;
+            }
+ 
+            .c_left_tag {
+                margin-top: 10px;
+                display: flex;
+                flex-wrap: wrap;
+            }
+ 
+            .tag {
+                margin-left: 0 !important;
+                margin-right: 10px;
+                margin-bottom: 10px;
+            }
+ 
+        }
+ 
+        .c_right {
+            width: 50%;
+            height: 100%;
+            padding: 0 10px;
+            display: flex;
+            flex-direction: column;
+            justify-content: space-between;
+            box-sizing: border-box;
+            .c_input {
+                height: 32px;
+                flex-shrink: 0;
+                display: flex;
+                align-items: center;
+            }
+            .c_checkbox {
+                margin-top: 10px;
+                height: 100%;
+                .c_checkbox_item {
+                    width: 100%;
+                    margin-bottom: 5px;
+                }
+            }
+ 
+            .checkBox {
+                display: flex;
+                flex-direction: column;
+                
+                .checkBox_item {
+                    height: 30px;
+                    display: flex;
+                    align-items: center;
+                }
+            }
+            .c_pagination {
+                height: 32px;
+                flex-shrink: 0;
+                display: flex;
+                justify-content: center;
+            }
+        }
+    }
+}
+</style>