|
@@ -118,7 +118,7 @@
|
|
|
<dict-tag :options="dict.type.order_status_type" :value="scope.row.status"/>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="打印次数" align="center" prop="printNum" />
|
|
|
+ <el-table-column label="打印次数" sortable="custom" align="center" width="100" prop="printNum" />
|
|
|
<el-table-column label="操作" align="center" fixed="right" width="80" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
@@ -129,8 +129,6 @@
|
|
|
>打印门票</el-button>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="打印顺序" sortable="custom" align="center" width="100px" prop="printSortId" />
|
|
|
- <el-table-column label="优先级" sortable="custom" align="center" width="100px" prop="sortIndex" />
|
|
|
<template slot="empty">
|
|
|
<div>
|
|
|
<span>未查询到相关订单,请重新输入!</span>
|
|
@@ -296,11 +294,11 @@
|
|
|
pageList(this.queryParams)
|
|
|
.then(response => {
|
|
|
let list = response.data.rows;
|
|
|
- list.forEach((item,index)=>{
|
|
|
- let num = item.printSortId == '-9999' ? index : item.printSortId
|
|
|
- item.printSortId = num
|
|
|
- item.sortIndex = index
|
|
|
- })
|
|
|
+ // list.forEach((item,index)=>{
|
|
|
+ // let num = item.printSortId == '-9999' ? index : item.printSortId
|
|
|
+ // item.printSortId = num
|
|
|
+ // item.sortIndex = index
|
|
|
+ // })
|
|
|
this.dataList = list
|
|
|
this.total = response.data.total;
|
|
|
this.loading = false;
|