feat(orderInfo/execution): 新增生产日报入口按钮(TASK-xxx)

master
zch 1 month ago
parent 1b0403e95b
commit fb41a3decc

@ -78,6 +78,15 @@
<!-- 批量操作按钮 -->
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="info"
plain
icon="el-icon-document"
size="mini"
@click="handleProductionDailyReport"
>生产日报</el-button>
</el-col>
<el-col :span="1.5">
<el-button
v-hasPermi="['base:orderInfo:edit']"
@ -546,6 +555,10 @@ export default {
this.detailOrder = row
this.detailDialogVisible = true
},
handleProductionDailyReport() {
// DAY/RT
this.$tab.openPage('生产日报', '/report/productionDailyReport/index')
},
handleSelectionChange(selection) {
this.selectedIds = selection.map(item => item.objId)
this.multiple = !selection.length

Loading…
Cancel
Save