|
|
@@ -1,12 +1,9 @@
|
|
|
<template>
|
|
|
<view class="select-bg_bx">
|
|
|
|
|
|
- <view
|
|
|
- v-if="isShowTit"
|
|
|
- @click="switchCut"
|
|
|
- :class="['select-title',dropdownShow?'select_corlor':'']">
|
|
|
+ <view v-if="isShowTit" @click="switchCut" :class="['select-title',dropdownShow?'select_corlor':'']">
|
|
|
{{menuObjActive?menuObjActive:menuObj.title}}
|
|
|
- <i class="iconfont iconsanjiao_xia"></i>
|
|
|
+ <i v-if="isShowMore" class="iconfont iconsanjiao_xia"></i>
|
|
|
</view>
|
|
|
<view
|
|
|
class="select-mark-view" v-show="dropdownShow" @click="switchCut"></view>
|
|
|
@@ -82,6 +79,10 @@
|
|
|
isShowTit:{
|
|
|
type: Boolean,
|
|
|
default: true
|
|
|
+ },
|
|
|
+ isShowMore:{
|
|
|
+ type: Boolean,
|
|
|
+ default: true
|
|
|
}
|
|
|
},
|
|
|
data(){
|