This commit is contained in:
2026-03-12 13:49:00 +08:00
parent 847cd05d54
commit 566ac88c89
8 changed files with 339 additions and 6 deletions

View File

@@ -9,7 +9,6 @@
<thead>
<tr>
<!-- <th @tap="toAllCheck"><uni-icons :type="allCheck ? 'checkbox' : 'circle'" size="24" color="#4e6ef2"></uni-icons></th> -->
<th>序号</th>
<th>点位编码</th>
<th>点位名称</th>
<th>点位状态</th>
@@ -22,7 +21,6 @@
<tbody>
<tr v-for="(e, i) in dataList" :key="i">
<!-- <td @tap="toCheck(e)"><uni-icons :type="e.checked ? 'checkbox' : 'circle'" size="24" color="#4e6ef2"></uni-icons></td> -->
<td>{{i+1}}</td>
<td>{{e.point_code}}</td>
<td>{{e.point_name}}</td>
<td>{{['', '空位', '有箱有料'][Number(e.point_status)]}}</td>