前端领料申请抱杆增加弹框内容

This commit is contained in:
wcy 2024-10-11 14:33:23 +08:00
parent 33642c1af1
commit b4bc3f56f4
1 changed files with 25 additions and 6 deletions

View File

@ -219,9 +219,14 @@
label="设备所属"
prop="deviceAscription"
/>
<el-table-column label="预领数量" align="center">
<template slot-scope="scope">
<span>{{ props.row.preNum }}</span> <!-- 内层显示外层的 preNum -->
</template>
</el-table-column>
<el-table-column
align="center"
label="领用数量"
label="库存数量"
prop="deviceNum"
/>
</el-table>
@ -232,6 +237,20 @@
align="center"
label="抱杆设备名称"
/>
<el-table-column label="预领数量" align="center">
<template slot-scope="scope">
<el-input
v-model.number="scope.row.preNum"
placeholder="请输入预领数量"
type="number"
min="1"
@input="checkNum(scope.row)"
clearable
style="width: 100%"
/>
</template>
</el-table-column>
<el-table-column align="center" label="操作" width="180">
<template slot-scope="scope">
<el-button