|
@@ -5,6 +5,7 @@
|
|
|
<div class="inputDeep">
|
|
|
<el-input
|
|
|
v-model="filterTransferShopName"
|
|
|
+ :disabled="disabled"
|
|
|
class="input_search"
|
|
|
placeholder="请选择"
|
|
|
style="width: 100%"
|
|
@@ -14,7 +15,7 @@
|
|
|
@focus="clickInputSelectUserShop" />
|
|
|
</div>
|
|
|
<!-- <el-checkbox style="margin-left: 5px;margin-right: 5px;" :true-label="1" :false-label="0" v-model="is_all_level">包含子门店</el-checkbox> -->
|
|
|
- <el-button style="" type="success" size="mini" icon="el-icon-search" @click="handleSearchTransferShopList" />
|
|
|
+ <el-button v-if="!disabled" style="" type="success" size="mini" icon="el-icon-search" @click="handleSearchTransferShopList" />
|
|
|
</el-row>
|
|
|
|
|
|
<div :style="userTreeShopShow?'visibility:visible':'visibility:hidden'" :class="['tree-pannel', isGap && 'top38']">
|
|
@@ -53,6 +54,10 @@ export default {
|
|
|
type: String,
|
|
|
default: ''
|
|
|
},
|
|
|
+ disabled: {
|
|
|
+ type: Boolean,
|
|
|
+ default: false
|
|
|
+ },
|
|
|
isGap: {
|
|
|
type: Boolean,
|
|
|
default: true
|