套轴申请
This commit is contained in:
@@ -71,15 +71,19 @@
|
||||
<th>管芯规格</th>
|
||||
<th>管芯类型</th>
|
||||
<th>管芯尺寸</th>
|
||||
<th>删除</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="(e, i) in dataList" :key="i">
|
||||
<td>{{e.point_name}}</td>
|
||||
<td>{{e.point_code}}</td>
|
||||
<td>{{['左卷', '右卷'][Number(e.left_or_right) - 1]}}</td>
|
||||
<td>{{e.material_spec}}</td>
|
||||
<td>{{['纸管', 'FRP管'][Number(e.paper_or_frp) - 1]}}</td>
|
||||
<td>{{e.qzz_size.substring(0, 1)}}</td>
|
||||
<td>
|
||||
<uni-icons type="trash-filled" color="#ff6a00" size="24" @tap="delItem(i)"></uni-icons>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
@@ -209,6 +213,9 @@
|
||||
this.picker3 = ''
|
||||
this.dataList = []
|
||||
this.disabled = false
|
||||
},
|
||||
delItem (i) {
|
||||
this.dataList.splice(i, 1)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user