소스 검색

1. 优化

MONSTER-ygh 10 달 전
부모
커밋
d685f9b5c7
2개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      src/views/venue/performanceHallMr/mixins/selectList.js
  2. 3 3
      src/views/venue/performanceHallMr/model/seatManagementTable.vue

+ 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;
                         }