43 lines
844 B
Vue
43 lines
844 B
Vue
<template>
|
|
<view>
|
|
|
|
<u-icon v-if="showLeftLabel" name="arrow-down" label="天津市" labelPos="left"></u-icon>
|
|
<u-line v-if="showLeftLabel" direction="col" margin="20rpx -5rpx 20rpx 20rpx" color="#666" length="30rpx"></u-line>
|
|
<u-search bgColor="#f2f2f2" :showAction="isShowAction" :disabled="true" :placeholder="placeholderValue"
|
|
v-model="keyword"></u-search>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name:"localSearch",
|
|
props:{
|
|
showLeftLabel:{
|
|
type:Boolean,
|
|
default:false
|
|
},
|
|
placeholderValue:{
|
|
type:String,
|
|
default:"请输入商品名称"
|
|
},
|
|
isShowAction:{
|
|
type:Boolean,
|
|
default:false
|
|
},
|
|
keyword:{
|
|
type:String,
|
|
default:"请输入商品名称"
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
|
|
</style>
|