Browse Source

添加重打开 和 删除卷的功能

master
Rui_Li 4 years ago
parent
commit
3acf394618
  1. 13
      src/views/modules/yieldReport/com_produce_report_normal.vue

13
src/views/modules/yieldReport/com_produce_report_normal.vue

@ -324,6 +324,19 @@
style="width: 100px; height: 80px"/></span>
</template>
</el-table-column>
<el-table-column
fixed="left"
header-align="center"
align="center"
width="115"
:label="'操作'">
<template slot-scope="scope">
<a class="customer-a" v-if="operatorData.operatorName != '' && scope.row.FinishedFlag != 'N'" @click="replaceMaterialModal(scope.row)"
>重打开</a>
<a class="customer-a" v-if="scope.row.finishedFlag == 'N' && scope.row.histType == '发料'" @click="cuttingMaterialModal(scope.row)"
>删除卷</a>
</template>
</el-table-column>
</el-table>
</el-tab-pane>
</el-tabs>

Loading…
Cancel
Save