|
@@ -55,7 +55,7 @@
|
|
|
placeholder="请输入您要搜索的内容"
|
|
|
clearable
|
|
|
/> -->
|
|
|
- <Search @clear="clear" @search="search" />
|
|
|
+ <Search v-permission="[searchPermission]" @clear="clear" @search="search" />
|
|
|
<!-- <el-button type="danger" size="default" class="br L12">搜索</el-button> -->
|
|
|
</template>
|
|
|
<template v-if="isSlot">
|
|
@@ -98,6 +98,7 @@
|
|
|
</template>
|
|
|
<template v-if="isShow">
|
|
|
<img
|
|
|
+ v-permission="[columnSetPermission]"
|
|
|
class="btn-img"
|
|
|
src="@/assets/baggage/ic_setting.png"
|
|
|
title="列设置"
|
|
@@ -172,6 +173,14 @@ const props = defineProps({
|
|
|
type: String,
|
|
|
default: "",
|
|
|
},
|
|
|
+ searchPermission: {
|
|
|
+ type: String,
|
|
|
+ default: ''
|
|
|
+ },
|
|
|
+ columnSetPermission: {
|
|
|
+ type: String,
|
|
|
+ default: ''
|
|
|
+ }
|
|
|
});
|
|
|
// console.log(props.power);
|
|
|
//搜索内容
|