工艺管理接口联调

dev-scheduling
zhangdi 3 months ago
parent bb5e3a8a1b
commit 3728642660
  1. 7
      src/views/processManagement/basicProcesses.vue
  2. 2
      src/views/processManagement/processGroup/index.vue

@ -21,6 +21,7 @@
<el-button type="primary" @click="addFn">新增</el-button>
</template>
<template #menu="scope">
<!-- <el-button type="text" @click="editFn(scope.row)"> 编辑</el-button> -->
<el-button type="text" @click="detailsFn(scope.row)"> 详情</el-button>
<!-- 是否展示 -->
<el-button type="text" v-if="scope.row.isSpecial == 1" @click="setCrew(scope.row)">
@ -420,6 +421,12 @@ export default {
this.isAddOpen = true;
this.rowId = row.id;
},
//
editFn(row){
this.openTitle = '编辑';
this.isAddOpen = true;
this.rowId = row.id;
},
//
setCrew(row) {
this.rowId = row.id;

@ -12,7 +12,7 @@
<!-- <el-button type="danger" @click="batchDel()">删除</el-button> -->
</template>
<template #menu-right>
<el-button type="primary" @click="batchDel()">导入</el-button>
<!-- <el-button type="primary" @click="batchDel()">导入</el-button> -->
</template>
<template #menu="{ row }">

Loading…
Cancel
Save