导航配置
This commit is contained in:
@@ -139,7 +139,7 @@
|
||||
isCanAdd (item) {
|
||||
const isHas = this.picked.map(v => v.id).indexOf(item.id) > -1
|
||||
|
||||
return this.isEdit && item.type !== '0' && item.picked !== '1' && !isHas
|
||||
return this.isEdit && item.picked !== '1' && !isHas
|
||||
},
|
||||
|
||||
addApp (e) {
|
||||
|
||||
14
packages/3.0.0/AppNotice/components/List.vue
vendored
14
packages/3.0.0/AppNotice/components/List.vue
vendored
@@ -38,13 +38,11 @@
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column slot="options" width="180px" fixed="right" label="操作" align="center">
|
||||
<template slot-scope="{ row }">
|
||||
<div class="table-options">
|
||||
<el-button type="text" @click="toDetail(row.id)">详情</el-button>
|
||||
<el-button type="text" @click="toAdd(row.id)">编辑</el-button>
|
||||
<el-button type="text" @click="remove(row.id)">删除</el-button>
|
||||
</div>
|
||||
</template>
|
||||
<div class="table-options" slot-scope="{ row }">
|
||||
<el-button type="text" @click="toDetail(row.id)">详情</el-button>
|
||||
<el-button type="text" @click="toAdd(row.id)">编辑</el-button>
|
||||
<el-button type="text" @click="remove(row.id)">删除</el-button>
|
||||
</div>
|
||||
</el-table-column>
|
||||
</ai-table>
|
||||
</template>
|
||||
@@ -138,6 +136,4 @@
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.notice {
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user