|
|
|
@ -84,21 +84,21 @@ |
|
|
|
|
{{ stateKeys[scope.row.state] }} |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="操作"> |
|
|
|
|
<el-table-column label="操作" align="center"> |
|
|
|
|
<template slot-scope="scope"> |
|
|
|
|
<el-button type="text" @click="edit(scope.row,'0')">查看</el-button> |
|
|
|
|
<el-button v-if="scope.row.founder != 0" type="text" @click="edit(scope.row,'1')">编辑</el-button> |
|
|
|
|
<el-button v-if="scope.row.founder != 0" type="text" @click="handleDelete(scope.row.projectId)">删除</el-button> |
|
|
|
|
<el-button v-if="auth('复制')" type="text" @click="copyData(scope.row.projectId)">复制</el-button> |
|
|
|
|
<el-switch |
|
|
|
|
v-if="auth('禁用')" |
|
|
|
|
v-model="scope.row.isOpen" |
|
|
|
|
:active-text="scope.row.isOpen ? '关闭' : '启用'" |
|
|
|
|
:active-value="0" |
|
|
|
|
:inactive-value="1" |
|
|
|
|
style="margin: 0 10px 0 10px" |
|
|
|
|
@change="switchOff(scope.row)" |
|
|
|
|
></el-switch> |
|
|
|
|
<!-- <el-switch--> |
|
|
|
|
<!-- v-if="auth('禁用')"--> |
|
|
|
|
<!-- v-model="scope.row.isOpen"--> |
|
|
|
|
<!-- :active-text="scope.row.isOpen ? '关闭' : '启用'"--> |
|
|
|
|
<!-- :active-value="0"--> |
|
|
|
|
<!-- :inactive-value="1"--> |
|
|
|
|
<!-- style="margin: 0 10px 0 10px"--> |
|
|
|
|
<!-- @change="switchOff(scope.row)"--> |
|
|
|
|
<!-- ></el-switch>--> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table> |
|
|
|
|