|
@@ -46,7 +46,7 @@
|
|
|
<el-tooltip content="详情" effect="dark" placement="top-end">
|
|
|
<i class="el-icon-document" @click="handleViewDetail(row)"></i>
|
|
|
</el-tooltip>
|
|
|
- <el-tooltip content="编辑" effect="dark" placement="top-end" v-if="!row.showEdit">
|
|
|
+ <el-tooltip content="编辑" effect="dark" placement="top-end" v-if="row.showEdit">
|
|
|
<i class="el-icon-edit" @click="handleApplyPermission(row.applyOrdNo)"></i>
|
|
|
</el-tooltip>
|
|
|
<el-tooltip content="撤回" effect="dark" placement="top-end" v-if="row.showRecall">
|
|
@@ -116,7 +116,7 @@ export default {
|
|
|
handleApplyPermission(applyOrdNo) {
|
|
|
const vm = this;
|
|
|
const layer = this.$dgLayer({
|
|
|
- title: applyOrdNo ? '编辑' : '权限自助申请',
|
|
|
+ title: applyOrdNo ? '编辑' : '权限变更申请',
|
|
|
props: {
|
|
|
applyOrdNo: applyOrdNo ? applyOrdNo : '',
|
|
|
type: applyOrdNo ? 'edit' : 'add'
|