|
|
@@ -81,7 +81,7 @@ |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="操作" width="140" fixed="right" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button type="text" @click="editFun(scope.row)">编辑</el-button> |
|
|
|
<el-button v-if="permissions.bianJiMoBan" type="text" @click="editFun(scope.row)">编辑</el-button> |
|
|
|
<el-button type="text" @click="deleteFun(scope.row)">删除</el-button> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
@@ -161,12 +161,13 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
import { mapGetters } from "vuex"; |
|
|
|
import matchingRules from "@/components/matchingRules/matchingRules.vue"; |
|
|
|
export default { |
|
|
|
components: { matchingRules }, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
timer: 0, |
|
|
|
timer: 0, |
|
|
|
dynamiclist: [], |
|
|
|
taglist: [ |
|
|
|
{ |
|
|
@@ -222,6 +223,10 @@ export default { |
|
|
|
this.orgType = localStorage.getItem("orgType"); |
|
|
|
this.orgType == 0 ? this.zkhousePage() : this.getorgCode(); |
|
|
|
}, |
|
|
|
|
|
|
|
computed: { |
|
|
|
...mapGetters(["permissions"]), |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
// 获取项目列表 |
|
|
|
zkhousePage() { |
|
|
|