chenrui  1 year ago
parent
commit
1a419110a6
1 changed files with 4 additions and 1 deletions
  1. 4 1
      components/mask-model/mask-model.vue

+ 4 - 1
components/mask-model/mask-model.vue

@@ -2,7 +2,7 @@
 	<view class="mask-model" v-show="showMask">
 		<view class="mask" @click="hide"></view>
 		<view class="model-count">
-			<view class="amen-tit">{{ !typeShow ? '下拉提示' : '提示信息'}}</view>
+			<view class="amen-tit">{{ headername }}</view>
 			<view class="count" :style="{'color':titleColoe}">{{maskTitle}}</view>
 			<button form-type="submit" class="switchBtn" v-if="typeShow">切换{{tabname}}</button>
 			<button form-type="submit" class="switchBtn" v-if="typeShow">强制装载</button>
@@ -47,6 +47,9 @@
 			},
 			typeShow: {
 				type: Boolean,
+			},
+			headername: {//标题
+				type: String,
 			}
 		},
 		data() {