浏览代码

1. 优化

MONSTER-ygh 10 月之前
父节点
当前提交
d685f9b5c7

+ 1 - 1
src/views/venue/performanceHallMr/mixins/selectList.js

@@ -399,7 +399,7 @@ export default {
                         if(this.selectTabelList[i].styleCss.id == this.tableDataAll[j].styleCss.id){
                             listTabel[j] = {
                                 ...this.tableDataAll[j],
-                                printSortId: '按优先级出票'
+                                printSortId: -9999
                             }
                             break;
                         }    

+ 3 - 3
src/views/venue/performanceHallMr/model/seatManagementTable.vue

@@ -318,7 +318,7 @@
                                         align="center"
                                         label="出票顺序">
                                             <template slot-scope="scope">
-                                                <span>{{ scope.row.printSortId }}</span>
+                                                <span>{{ scope.row.printSortId == '-9999' ? '按优先级出票' : scope.row.printSortId }}</span>
                                             </template>
                                         </el-table-column>
                                     </el-table>
@@ -374,7 +374,7 @@
                                         align="center"
                                         label="出票顺序">
                                             <template slot-scope="scope">
-                                                <span>{{ scope.row.printSortId }}</span>
+                                                <span>{{ scope.row.printSortId == '-9999' ? '按优先级出票' : scope.row.printSortId }}</span>
                                             </template>
                                         </el-table-column>
                                     </el-table>
@@ -1355,7 +1355,7 @@ export default {
                         if(this.multipleSelection[i].styleCss.id == this.tableDataAll[j].styleCss.id){
                             listTabel[j] = {
                                 ...this.tableDataAll[j],
-                                printSortId: '按优先级出票'
+                                printSortId: -9999
                             }
                             break;
                         }