瀏覽代碼

bug修改和座位画框选择

zhongzhao 1 年之前
父節點
當前提交
6eeba5c111

+ 3 - 2
src/api/system/user.js

@@ -127,9 +127,10 @@ export function updateAuthRole(data) {
 }
 
 // 查询部门下拉树结构
-export function deptTreeSelect() {
+export function deptTreeSelect(data) {
   return request({
     url: '/system/dept/treeselect',
-    method: 'get'
+    method: 'get',
+    params: data
   })
 }

+ 137 - 40
src/utils/directives.js

@@ -1,52 +1,149 @@
 import Vue from 'vue';
 
-Vue.directive('drag', (el) => {
+Vue.directive('drag', (el, binding) => {
   const oDiv = el // 当前元素
   const minTop = oDiv.getAttribute('drag-min-top')
+  const drawBox = document.getElementById("drawBox");
   const ifMoveSizeArea = 20
   oDiv.onmousedown = e => {
     let target = oDiv
-    while (window.getComputedStyle(target).position !== 'absolute' && target !== document.body) {
-      target = target.parentElement
-    }
+    if(e.button == 2){
+      while (window.getComputedStyle(target).position !== 'absolute' && target !== document.body) {
+        target = target.parentElement
+      }
 
-    document.onselectstart = () => {
-      return false
-    }
-    if (!target.getAttribute('init_x')) {
-      target.setAttribute('init_x', target.offsetLeft)
-      target.setAttribute('init_y', target.offsetTop)
-    }
-    const initX = parseInt(target.getAttribute('init_x'))
-    const initY = parseInt(target.getAttribute('init_y'))
-
-    // 鼠标按下,计算当前元素距离可视区的距离
-    const disX = e.clientX - target.offsetLeft
-    const disY = e.clientY - target.offsetTop
-    document.onmousemove = e => {
-      if(e.preventDefault){
-        e.preventDefault()
-      } else {
-        e.returnValue = false
-      }
-      // 通过事件委托,计算移动的距离
-      // 因为浏览器里并不能直接取到并且使用clientX、clientY,所以使用事件委托在内部做完赋值
-      const l = e.clientX - disX
-      const t = e.clientY - disY
-      const { marginTop: mt, marginLeft: ml } = window.getComputedStyle(target)
-      // 计算移动当前元素的位置,并且给该元素样式中的left和top值赋值
-      target.style.left = l - parseInt(ml) + 'px'
-      target.style.top = t + 'px'
-      if (Math.abs(l - initX) > ifMoveSizeArea || Math.abs(t - initY) > ifMoveSizeArea) {
-        target.setAttribute('dragged', '')
-      } else {
-        target.removeAttribute('dragged')
+      document.onselectstart = () => {
+        return false
+      }
+
+      if (!target.getAttribute('init_x')) {
+        target.setAttribute('init_x', target.offsetLeft)
+        target.setAttribute('init_y', target.offsetTop)
+      }
+      const newE = e;
+      const initX = parseInt(target.getAttribute('init_x'))
+      const initY = parseInt(target.getAttribute('init_y'))
+
+      // 鼠标按下,计算当前元素距离可视区的距离
+      // 获取div元素的坐标点
+      let drawRect = el.getBoundingClientRect();
+
+      let init_x = e.clientX - drawRect.x;
+      let init_y = e.clientY - drawRect.y;
+
+      const disX = e.clientX - (target.offsetLeft >= 0 ? target.offsetLeft : 0)
+      const disY = e.clientY - (target.offsetTop >= 0 ? target.offsetTop : 0)
+
+      let l_type = 'none';
+      let t_type = 'none';
+
+      document.onmousemove = e => {
+        if(e.preventDefault){
+          e.preventDefault()
+        } else {
+          e.returnValue = false
+        }
+        // 通过事件委托,计算移动的距离
+        // 因为浏览器里并不能直接取到并且使用clientX、clientY,所以使用事件委托在内部做完赋值
+        let l = (e.clientX - disX) - (drawRect.x > 77 ? parseInt(drawRect.x - 76) : 0);
+        let t = (e.clientY - disY) - (drawRect.y > 288 ? parseInt(drawRect.y - 287) : 0);
+        const { marginTop: mt, marginLeft: ml } = window.getComputedStyle(target)
+        // 计算移动当前元素的位置,并且给该元素样式中的left和top值赋值
+        // target.style.left = l - parseInt(ml) + 'px'
+        // target.style.top = t + 'px'
+        let div = document.getElementById("drawDiv");
+        if(!div){
+          div = document.createElement("div");
+          div.id = "drawDiv";
+          div.className = "innerDiv";
+          div.style.border = "1px dashed red";
+          div.style.borderRadius = "5px";
+          div.style.top =  init_x + 'px';
+          div.style.left =  init_y + 'px';
+          div.style.position = "absolute";
+          drawBox.append(div);
+        }
+        if(l < 0 && l_type != 'right') {
+          div.style.right =  (oDiv.offsetWidth - init_x) + 'px';
+          div.style.removeProperty('left');
+          l_type = 'right';
+        } else if (l > 0 && l_type != 'left') {
+          div.style.left =  init_x + 'px';
+          div.style.removeProperty('right');
+          l_type = 'left';
+        } else {
+          l_type = 'none';
+        }
+
+        if(t < 0 && t_type != 'bottom') {
+          div.style.bottom =  (oDiv.offsetHeight - init_y) + 'px';
+          div.style.removeProperty('top');
+          t_type = 'bottom';
+        } else if (t > 0 && t_type != 'top') {
+          div.style.top =  init_y + 'px';
+          div.style.removeProperty('bottom');
+          t_type = 'top';
+        } else {
+          t_type = 'none';
+        }
+        div.style.width = Math.abs(l) + 'px';
+        div.style.height = Math.abs(t) + 'px';
+      }
+      document.onmouseup = e => {
+        // 因为浏览器里并不能直接取到并且使用clientX、clientY,所以使用事件委托在内部做完赋值
+        const l = e.clientX - disX
+        const t = e.clientY - disY
+        let drawDialog = document.getElementById("draw-dialog-type");
+        drawDialog.style.top = '60px';
+        drawDialog.style.right = '0px';
+        drawDialog.style.display = "block";
+        document.onmousemove = null
+        document.onmouseup = null
+        document.onselectstart = null
+      }
+    } else {
+      while (window.getComputedStyle(target).position !== 'absolute' && target !== document.body) {
+        target = target.parentElement
+      }
+
+      document.onselectstart = () => {
+        return false
+      }
+      if (!target.getAttribute('init_x')) {
+        target.setAttribute('init_x', target.offsetLeft)
+        target.setAttribute('init_y', target.offsetTop)
+      }
+      const initX = parseInt(target.getAttribute('init_x'))
+      const initY = parseInt(target.getAttribute('init_y'))
+
+      // 鼠标按下,计算当前元素距离可视区的距离
+      const disX = e.clientX - target.offsetLeft
+      const disY = e.clientY - target.offsetTop
+      document.onmousemove = e => {
+        if(e.preventDefault){
+          e.preventDefault()
+        } else {
+          e.returnValue = false
+        }
+        // 通过事件委托,计算移动的距离
+        // 因为浏览器里并不能直接取到并且使用clientX、clientY,所以使用事件委托在内部做完赋值
+        const l = e.clientX - disX
+        const t = e.clientY - disY
+        const { marginTop: mt, marginLeft: ml } = window.getComputedStyle(target)
+        // 计算移动当前元素的位置,并且给该元素样式中的left和top值赋值
+        target.style.left = l - parseInt(ml) + 'px'
+        target.style.top = t + 'px'
+        if (Math.abs(l - initX) > ifMoveSizeArea || Math.abs(t - initY) > ifMoveSizeArea) {
+          target.setAttribute('dragged', '')
+        } else {
+          target.removeAttribute('dragged')
+        }
+      }
+      document.onmouseup = e => {
+        document.onmousemove = null
+        document.onmouseup = null
+        document.onselectstart = null
       }
-    }
-    document.onmouseup = e => {
-      document.onmousemove = null
-      document.onmouseup = null
-      document.onselectstart = null
     }
     // return false不加的话可能导致黏连,拖到一个地方时div粘在鼠标上不下来,相当于onmouseup失效
     return false

+ 2 - 0
src/views/finance/flowingWaterMr/index.vue

@@ -140,6 +140,8 @@ export default {
         1: '小程序',
         2: '美团',
         3: '携程',
+        4: '公众号',
+        5: '支付宝',
       },
       incomeExpensesList: [
         {id: 1, name: '收入', value: '收入'},

+ 1 - 1
src/views/finance/refundMr/dialog/details.vue

@@ -19,7 +19,7 @@
     <div class="dialog" v-if="form">
       <el-row>
         <el-col :span="24">
-          <div class="grid-content bg-purple item-class">退款单号: <span>{{ form.refundTransactionId }}</span></div>
+          <div class="grid-content bg-purple item-class">退款单号: <span>{{ form.id }}</span></div>
         </el-col>
         <el-col :span="24">
           <div class="grid-content bg-purple item-class">原订单号: <span>{{ form.orderId }}</span></div>

+ 8 - 8
src/views/finance/refundMr/index.vue

@@ -64,7 +64,7 @@
 
     <el-table ref="tables" v-loading="loading" :data="dataList" border>
       <el-table-column label="序号" align="center" type="index" width="60"></el-table-column>
-      <el-table-column label="退款单号" align="center" prop="refundTransactionId" />
+      <el-table-column label="退款单号" align="center" prop="id" />
 <!--      <el-table-column label="原订单号" align="center" prop="orderId" />-->
       <el-table-column label="原订单号" align="center" prop="orderId" width="160" sortable="custom" >
         <template slot-scope="scope">
@@ -101,19 +101,19 @@
             @click="openDetails(scope.row)"
             v-hasPermi="['refundMr:refundMr:details']"
           >详情</el-button>
-          <el-button
-            size="mini"
-            type="text"
-            @click="openDetails(scope.row)"
-            v-hasPermi="['refundMr:refundMr:edit']"
-          >查看</el-button>
+<!--          <el-button-->
+<!--            size="mini"-->
+<!--            type="text"-->
+<!--            @click="openDetails(scope.row)"-->
+<!--            v-hasPermi="['refundMr:refundMr:edit']"-->
+<!--          >查看</el-button>-->
           <el-button
             size="mini"
             type="text"
             v-if="scope.row.status == 0 || scope.row.status == 2"
             @click="openDetails(scope.row, 'refund')"
             v-hasPermi="['refundMr:refundMr:delete']"
-          >退款</el-button>
+          >审核</el-button>
         </template>
       </el-table-column>
     </el-table>

+ 2 - 0
src/views/order/orderMr/dialog/details.vue

@@ -138,6 +138,8 @@ export default {
         1: '小程序',
         2: '美团',
         3: '携程',
+        4: '公众号',
+        5: '支付宝',
       },
       dataList: []
     };

+ 4 - 0
src/views/order/orderMr/index.vue

@@ -219,11 +219,15 @@ export default {
         1: '小程序',
         2: '美团',
         3: '携程',
+        4: '公众号',
+        5: '支付宝',
       },
       sourceMapList: [
         {id: 1, name: '小程序', value: 1},
         {id: 2, name: '美团', value: 2},
         {id: 3, name: '携程', value: 3},
+        {id: 4, name: '公众号', value: 4},
+        {id: 5, name: '支付宝', value: 5},
       ],
       visibleStatus: false,
       newObj: {},

+ 2 - 2
src/views/perform/performMr/index.vue

@@ -32,7 +32,7 @@
 
     <el-table ref="tables" v-loading="loading" :data="dataList" border>
       <el-table-column label="序号" align="center" type="index" width="50"></el-table-column>
-      <el-table-column label="主办方名" align="center" prop="name" />
+      <el-table-column label="主办方名" align="center" prop="name" />
       <el-table-column label="法人" align="center" prop="corporationName" />
       <el-table-column label="主办方负责人" align="center" prop="contactName" />
       <el-table-column label="负责人联系电话" align="center" prop="contactMobile" />
@@ -197,7 +197,7 @@ export default {
 
     /** 删除按钮操作 */
     handleDelete(row) {
-      this.$modal.confirm('是否确认删除数据主办方名为"' + row.name + '"的数据项?').then(function() {
+      this.$modal.confirm('是否确认删除数据主办方名为"' + row.name + '"的数据项?').then(function() {
         return deleteById(row.id);
       }).then(() => {
         this.getList();

+ 2 - 1
src/views/perform/programmeMr/dialog/addAndEdit.vue

@@ -400,7 +400,8 @@ export default {
           this.$set(this.form, 'peopleNum', obj.peopleNum);
           this.$set(this.form, 'posterImg', obj.posterImg);
           this.$set(this.form, 'performSnapshot', obj.performSnapshot);
-          this.performerList = obj.performerList || [];
+          // this.performerList = obj.performerList || [];
+          this.$set(this.form, 'performerList', obj.performerList || []);
           obj.photoList.forEach(item => {
             item.url = item.imageUrl
           })

+ 2 - 2
src/views/perform/programmeMr/dialog/details.vue

@@ -53,10 +53,10 @@
                 <div>宣传图:</div>
               </el-col>
               <el-col :span="12">
-                <div v-if="form.showImg">
+                <div v-if="form.posterImg">
                   <el-image
                     style="width: 100px; height: 100px"
-                    :src="form.showImg"
+                    :src="form.posterImg"
                     fit="cover"
                   />
                 </div>

+ 1 - 1
src/views/perform/programmeMr/index.vue

@@ -143,7 +143,7 @@
       <div v-if="visibleType == 'img'">
         <el-image
           style="width: 400px; height: 100%"
-          :src="newObj.showImg"
+          :src="newObj.posterImg"
           fit="cover"
         />
       </div>

+ 1 - 1
src/views/system/user/index.vue

@@ -478,7 +478,7 @@ export default {
     },
     /** 查询部门下拉树结构 */
     getDeptTree() {
-      deptTreeSelect().then(response => {
+      deptTreeSelect({status: 0}).then(response => {
         this.deptOptions = response.data;
       });
     },

+ 137 - 9
src/views/venue/performanceHallMr/dialog/seatTemplateEdit.vue

@@ -42,15 +42,55 @@
           </div>
           <div class="box-class scroll-container-class"
                v-if="seatType"
+               @contextmenu.prevent.stop="contextmenuEven"
                @wheel.prevent="wheelHandle"
-               @mousedown.stop="mousedownEven"
                ref="scrollContainer"
-               style="position: relative; overflow: hidden"
+               style="position: relative; overflow: hidden; padding: 0;"
                >
-            <div style="position: absolute; width: 100%; height: 100%">
-              <div class="box-bottom-class scroll-container" v-drag :style="{ width: boxWidth ? boxWidth + 'px' : '100%', height: boxWidth ? boxWidth + 'px' : '100%'}" ref="seatBox" v-if="seatType">
+            <!--  画框确定  -->
+            <div class="draw-dialog-class" id="draw-dialog-type" v-show="drawDialogType">
+              <div class="box-class" style="border: none; height: 240px">
+                <el-form :model="drawForm" ref="drawForm" :rules="drawRules" label-width="100px" label-position="top">
+                  <el-form-item label="" prop="status">
+                    <el-radio v-model="drawForm.status" label="1">可售</el-radio>
+                    <el-radio v-model="drawForm.status" label="2">不可售</el-radio>
+                  </el-form-item>
+                  <el-form-item label="" prop="seatTypeId">
+                    <el-select
+                      v-model="drawForm.seatTypeId"
+                      placeholder="座位类型"
+                      clearable
+                      style="width: 100%"
+                      @change="seatTypeDrawChange"
+                    >
+                      <el-option
+                        v-for="dict in seatList"
+                        :key="dict.id"
+                        :label="dict.name"
+                        :value="dict.id"
+                      />
+                    </el-select>
+                  </el-form-item>
+                  <el-form-item label="">
+                    <el-input
+                      v-model.number="drawForm.priority"
+                      placeholder="座位自动分配优先级"
+                      clearable
+                      style="width: 100%;"
+                    />
+                  </el-form-item>
+                  <el-form-item >
+                    <el-button @click="drawDialogClen">取 消</el-button>
+                    <el-button @click="drawDialogOk" style="float: right" type="primary">确 定</el-button>
+                  </el-form-item>
+                </el-form>
+              </div>
+            </div>
+            <div style="position: relative;">
+              <div class="box-bottom-class scroll-container" style="position: absolute; width: 100%; height: 100%" id="drawBox" v-drag :style="{ width: boxWidth ? boxWidth + 'px' : '100%', height: boxWidth ? boxWidth + 'px' : '100%'}" ref="seatBox" v-if="seatType">
                 <div v-for="row in seatMap.row" :key="row" style="display: inline-block">
                   <div class="seat-tag"
+                       :id="row+'_'+col"
                        @click.stop="setSeatTemplateMap(row, col)"
                        v-for="col in seatMap.col"
                        :key="col"
@@ -144,6 +184,7 @@ import { seatSaveAndEdit, saveAndEdit, getSelectById } from "@/api/performanceHa
 import { getToken } from "@/utils/auth";
 export default {
   name: "seatTemplateEdit",
+  that: this,
   data() {
     return {
       title: "编辑",
@@ -182,9 +223,77 @@ export default {
       dragStatus: true,
       canNum: [],
       unCanNum: [],
+
+      drawForm: {},
+      drawDialogType: false,
+      drawRules: {
+        status: [{ required: true, message: "请选择状态", trigger: "blur" }],
+        seatTypeId: [{ required: true, message: "请选择座位类型", trigger: "blur" }]
+      },
     };
   },
   methods: {
+    drawDialogClen() {
+      let drawDialog = document.getElementById("draw-dialog-type");
+      drawDialog.style.display = "none";
+      let drawDiv = document.getElementById("drawDiv");
+      drawDiv.remove();
+
+      this.$forceUpdate();
+    },
+    // 画框座位设置
+    drawDialogOk() {
+      console.log(this.colSeatMap)
+      this.$refs["drawForm"].validate(async (valid) => {
+        if (valid) {
+          let drawDialog = document.getElementById("drawDiv");
+          // 获取div元素的坐标点
+          let rect = drawDialog.getBoundingClientRect();
+          let P_div = document.getElementById("drawBox");
+          let test_div = document.getElementById("1_12");
+
+          let P_div_list = P_div.children; // 获取行子集
+          let select_div = [];
+          // 循环判断是否在选择框里
+          for (let i = 0; i < P_div_list.length; i++) {
+            if(P_div_list[i] && P_div_list[i].childNodes) {
+              let child_div = P_div_list[i].children
+              for (let j = 0; j <child_div.length; j++) {
+                let rect_div = child_div[j].getBoundingClientRect();
+                if(rect.top < (rect_div.top + rect_div.height) && rect.bottom > (rect_div.bottom - rect_div.height) &&
+                  rect.left < (rect_div.left + rect_div.width) && rect.right > (rect_div.right - rect_div.width)) {
+                  select_div.push(i+"_"+j);
+                }
+              }
+            }
+          }
+          select_div.forEach(item => {
+            let row_col = item.split("_");
+            this.setSeatDrawMap(parseInt(row_col[0]) + 1, parseInt(row_col[1]) + 1);
+          })
+          this.drawDialogClen()
+        }
+      });
+    },
+    // 画框座位放置参数
+    setSeatDrawMap(row, col) {
+      let map = this.colSeatMap[row + '_' +col];
+      map.status = this.drawForm.status;
+      map.color = this.drawForm.seat.color;
+      map.seatTypeId = this.drawForm.seat.seatTypeId;
+      map.seatLabel = this.drawForm.seat.seatLabel;
+      map.name = "";
+      map.priority = this.drawForm.priority;
+
+      if(this.drawForm.status == 2) {
+        this.map.color = '#7d7d7e';
+        this.map.seatTypeId = '';
+        this.map.seatLabel = '';
+      }
+      this.$set(this.colSeatMap, row + '_' +col, map);
+      this.countNum();
+      this.$forceUpdate()
+    },
     // 鼠标滚动
     wheelHandle(e) {
       if(e.wheelDelta > 0){
@@ -200,8 +309,8 @@ export default {
       // this.seatWidth = (this.seatWidth + this.zoom);
       this.$forceUpdate();
     },
-    mousedownEven() {
-
+    contextmenuEven(e) {
+      return false;
     },
     dragEven(){
       this.dragStatus = !this.dragStatus;
@@ -216,7 +325,8 @@ export default {
       this.open = true;
       this.seatType = false;
       this.getSeatTypeList();
-      this.colSeatMap = {};
+      this.colSeatMap = {}
+      this.drawForm = {};
       this.boxWidth = 0;
       this.dragStatus = true;
       this.form = {
@@ -327,6 +437,15 @@ export default {
         }
       })
     },
+    /** 画框座位类型选择事件 */
+    seatTypeDrawChange(val) {
+      this.$set(this.drawForm, 'priority', '');
+      this.seatList.forEach(item => {
+        if(val == item.id){
+          this.drawForm.seat = item
+        }
+      })
+    },
     /** 座位设置确认事件 */
     setSeatMap() {
       this.seatSetMap = {};
@@ -466,6 +585,15 @@ export default {
   max-height: 75vh;
   overflow-y: auto;
 }
+.draw-dialog-class{
+  border-radius: 10px;
+  height: 240px;
+  width: 200px;
+  background-color: #fff;
+  position: absolute;
+  z-index: 55;
+  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
+}
 .dialog {
   padding: 0 30px;
 
@@ -496,8 +624,8 @@ export default {
 
     .box-bottom-class{
       //border: 2px solid #5656c2;
-      margin-top: 15px;
-      padding-left: 4px;
+      //margin-top: 15px;
+      //padding-left: 4px;
 
       .seat-tag{
         display: inline-block;