| | |
| | | plain |
| | | icon="Plus" |
| | | @click="openDialog('add','',1)" |
| | | v-hasPermi="['projectCaralog:add']" |
| | | >新增</el-button> |
| | | </el-form-item> |
| | | <el-form-item label="企业名称:" v-if="data.isAdmin" > |
| | |
| | | </el-table-column> |
| | | <el-table-column label="操作" align="center" class-name="small-padding fixed-width" > |
| | | <template #default="scope"> |
| | | <el-button link type="primary" @click="openDialog('add',scope.row,2)">新增</el-button> |
| | | <el-button link type="primary" @click="openDialog('edit',scope.row,null)">编辑</el-button> |
| | | <el-button link type="danger" v-if="scope.row.children && scope.row.children.length == 0" @click="handleDelete(scope.row)">删除</el-button> |
| | | <el-button link type="primary" @click="openDialog('add',scope.row,2)" v-hasPermi="['projectCaralog:add']">新增</el-button> |
| | | <el-button link type="primary" @click="openDialog('edit',scope.row,null)" v-hasPermi="['projectCaralog:edit']">编辑</el-button> |
| | | <el-button link type="danger" v-if="scope.row.children && scope.row.children.length == 0" @click="handleDelete(scope.row)" v-hasPermi="['projectCaralog:del']">删除</el-button> |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |