报废管理

This commit is contained in:
zzyuan 2024-12-13 15:29:30 +08:00
parent 602eec34a6
commit bc16532a69
1 changed files with 13 additions and 13 deletions

View File

@ -41,7 +41,7 @@
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<!-- <el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="success"
@ -64,30 +64,30 @@
>驳回</el-button
>
</el-col>
</el-row>
</el-row> -->
<el-table
v-loading="loading"
:data="equipmentList"
row-key="id"
@selection-change="handleSelectionChange"
>
<el-table-column
<!-- <el-table-column
type="selection"
width="55"
align="center"
:selectable="selectable"
/>
/> -->
<el-table-column label="序号" align="center" type="index" />
<el-table-column
label="类型名称"
align="center"
prop="specificationType"
prop="typeName"
:show-overflow-tooltip="true"
/>
<el-table-column
label="规格型号"
align="center"
prop="machineTypeName"
prop="type"
:show-overflow-tooltip="true"
/>
<el-table-column
@ -97,17 +97,17 @@
:show-overflow-tooltip="true"
>
</el-table-column>
<el-table-column
<!-- <el-table-column
label="退料数量"
align="center"
prop="repairNum"
:show-overflow-tooltip="true"
>
</el-table-column>
</el-table-column> -->
<el-table-column
label="报废数量"
align="center"
prop="repairedNum"
prop="scrapNum"
:show-overflow-tooltip="true"
/>
<el-table-column
@ -270,8 +270,8 @@ export default {
// return auditPass(param);
})
.then(() => {
this.getTaskInfo();
this.$modal.msgSuccess("通过成功");
// this.getTaskInfo();
// this.$modal.msgSuccess("");
})
.catch(() => {});
},
@ -288,8 +288,8 @@ export default {
// return auditPass(param);
})
.then(() => {
this.getTaskInfo();
this.$modal.msgSuccess("驳回成功");
// this.getTaskInfo();
// this.$modal.msgSuccess("");
})
.catch(() => {});
},