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