Browse Source

1. 修复问题

MONSTER-ygh 1 năm trước cách đây
mục cha
commit
4436e15592

+ 1 - 1
src/views/officesale/ticketingSales.vue

@@ -367,7 +367,7 @@
                     item.isSelect = this.setIsSelect(item);
                     if(item.rowNo){
                         listNum.forEach((item1,index)=>{
-                            if(item1.id == item.seatTypeId && item.status ==1) {
+                            if(item1.id == item.seatTypeId && item.status ==1 && !item.occupyStatus) {
                                 listNum[index]['num'] = listNum[index]['num'] + 1 
                             }
                         })

+ 1 - 0
src/views/team/ticketMr/index.vue

@@ -54,6 +54,7 @@
           <el-tag type="info" v-if="scope.row.status == 0">未上架</el-tag>
         </template>
       </el-table-column>
+      <el-table-column label="创建人" align="center" prop="createBy" />
       <el-table-column label="添加时间" align="center" prop="createTime" width="160">
         <template slot-scope="scope">
           <span>{{ parseTime(scope.row.createTime) }}</span>