|
@@ -163,7 +163,7 @@
|
|
|
<el-button v-if="scope.row.loginFlag === '0'" size="small" text type="primary" @click="updateLoginFlag1(scope.row)">激活</el-button>
|
|
|
</div>
|
|
|
<div v-else>
|
|
|
- <el-button v-if="hasPermission('entry:edit')&&(scope.row.type === '5'||scope.row.type === '0'||scope.row.type === '1'|| scope.row.type === '3')&&scope.row.createById === $store.state.user.id" size="small" text type="primary" @click="edit(scope.row)">修改</el-button>
|
|
|
+ <el-button v-if="hasPermission('entry:edit')&&(scope.row.type === '5'||scope.row.type === '0'||scope.row.type === '1'|| scope.row.type === '3')" size="small" text type="primary" @click="edit(scope.row)">修改</el-button>
|
|
|
<el-button text type="primary" size="small" v-if="hasPermission('entry:del') && scope.row.type==='0' || scope.row.type==='1'|| scope.row.type==='3'&&scope.row.createById === $store.state.user.id" @click="del(scope.row.id)">删除</el-button>
|
|
|
<!-- 当前申请人撤回-->
|
|
|
<el-button v-if="hasPermission('entry:edit') && scope.row.createById === $store.state.user.id && scope.row.type==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
|