套轴申请

This commit is contained in:
蔡玲
2024-11-01 13:55:40 +08:00
parent cdf147bac5
commit 5be0ac7016

View File

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