|
@@ -17,8 +17,8 @@
|
|
|
@refresh-change="refreshChange"
|
|
|
@on-load="onLoad">
|
|
|
<template slot-scope="{type,size,row}" slot="menu">
|
|
|
- <el-button icon="el-icon-setting" :size="size" :type="type">配置划分</el-button>
|
|
|
- <el-button icon="el-icon-close" :size="size" :type="type">取消关联</el-button>
|
|
|
+ <el-button icon="el-icon-setting" :size="size" :type="type" @click="configurationClick">配置划分</el-button>
|
|
|
+ <el-button icon="el-icon-close" :size="size" :type="type" @click="associatedClick">关联清表</el-button>
|
|
|
</template>
|
|
|
</avue-crud>
|
|
|
</basic-container>
|
|
@@ -176,6 +176,18 @@ export default {
|
|
|
this.selectionClear();
|
|
|
});
|
|
|
},
|
|
|
+ configurationClick(){
|
|
|
+ this.$message({
|
|
|
+ type: "warning",
|
|
|
+ message: "暂无相关接口"
|
|
|
+ });
|
|
|
+ },
|
|
|
+ associatedClick() {
|
|
|
+ this.$message({
|
|
|
+ type: "warning",
|
|
|
+ message: "暂无相关接口"
|
|
|
+ });
|
|
|
+ }
|
|
|
}
|
|
|
};
|
|
|
</script>
|