This commit is contained in:
2023-04-13 19:31:12 +08:00
parent 537b349a9f
commit 40bab7f486
5 changed files with 18 additions and 52 deletions

View File

@@ -29,7 +29,7 @@
</tr>
</thead>
<tbody>
<tr v-for="e in dataList" :key="e.sale_code" :class="{'checked': e.checked}">
<tr v-for="e in dataList" :key="e.material_id" :class="{'checked': e.checked}">
<td>
<view class="iconfont icon_unchecked" :class="{'icon_checked': e.checked}" @tap="toCheck(e)">&#xe608;</view>
</td>
@@ -83,7 +83,7 @@
},
/** 初始化查询 */
async _orderSearch () {
let res = await orderSearch(this.val1, this.pageNum + '', this.pageSize + '')
let res = await orderSearch(this.pageNum + '', this.pageSize + '', this.val1)
this.totalCount = res.totalElements
if (res.totalElements > 0) {
res.content.map(el => {