mask-model.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. <template>
  2. <view class="mask-model" v-show="showMask">
  3. <view class="mask" @click="hide"></view>
  4. <view class="model-count">
  5. <view class="amen-tit">{{ headername }}</view>
  6. <view class="count" :style="{'color':titleColoe}">{{maskTitle}}</view>
  7. <button form-type="submit" class="switchBtn" v-if="typeShow" @tap="next()">切换<span>{{tabname}}</span></button>
  8. <button form-type="submit" class="switchBtn" v-if="typeShow" @tap="load()">强制装载</button>
  9. <button form-type="submit" class="eleBtn" @click="hide" v-if="typeShow">取消</button>
  10. <view class="bot" v-if="!typeShow">
  11. <button form-type="submit" class="eleBtns" @click="hide">取消</button>
  12. <button form-type="submit" class="switchBtndel" @tap="confirm">确定</button>
  13. </view>
  14. <!-- <view class="btm-box">
  15. <view v-show="btnType==1" class="btn cancel" @click="hide" :style="{'color':cancelColor}">取消</view>
  16. <view class="btn confirm" @click="confirm" :style="{'color':confirmColor}">确定</view>
  17. </view> -->
  18. </view>
  19. </view>
  20. </template>
  21. <script>
  22. export default {
  23. props: {
  24. maskTitle: {//提示内容
  25. type: String,
  26. default:'提示消息'
  27. },
  28. titleColoe:{//提示信息字体颜色
  29. type: String,
  30. default:'#666666'
  31. },
  32. confirmColor:{//确定按钮字体颜色
  33. type: String,
  34. default:'#007AFF'
  35. },
  36. cancelColor:{//取消按钮字体颜色
  37. type: String,
  38. default:'#666666'
  39. },
  40. btnType:{//1显示取消按钮
  41. type: String,
  42. default:'1'
  43. },
  44. tabname:{//名称
  45. type: String,
  46. default:'1'
  47. },
  48. typeShow: {
  49. type: Boolean,
  50. },
  51. headername: {//标题
  52. type: String,
  53. }
  54. },
  55. data() {
  56. return {
  57. showMask:false,
  58. };
  59. },
  60. mounted() {
  61. },
  62. created() {
  63. },
  64. computed: {
  65. },
  66. methods: {
  67. show:function(){
  68. this.showMask = true;
  69. },
  70. hide:function(){
  71. this.$emit('cancel');
  72. this.showMask = false;
  73. },
  74. confirm:function(e){
  75. this.showMask = false;
  76. this.$emit('confirm');
  77. },
  78. next(){
  79. this.showMask = false;
  80. this.$emit('next',this.tabname);
  81. },
  82. load(){
  83. this.showMask = false;
  84. this.$emit('load');
  85. }
  86. }
  87. }
  88. </script>
  89. <style scoped>
  90. .mask-model{
  91. position: fixed;
  92. width: 100%;
  93. height: 100%;
  94. left: 0;
  95. top: 0;
  96. z-index: 999;
  97. }
  98. .bot{
  99. width: 100%;
  100. /* padding: 0 .55rem 0 .55rem; */
  101. display: flex;
  102. justify-content: space-between;
  103. align-items: center;
  104. margin-top: 1.25rem;
  105. }
  106. .mask-model .mask{
  107. width: 100%;
  108. height: 100%;
  109. background: rgba(0,0,0,0.65);
  110. }
  111. .switchBtn{
  112. width: 12rem;
  113. height: 2.125rem;
  114. background: linear-gradient(179.11deg, rgba(51,161,165,1.00) 1.866%,rgba(59,111,142,1.00) 137.144%,rgba(59,111,142,1.00) 137.144%,rgba(59,111,142,1.00) 137.144%);
  115. border-radius:
  116. 4px;
  117. display: flex;
  118. align-items: center;
  119. justify-content: center;
  120. color: rgb(255, 255, 255);
  121. font-family: Noto Sans SC;
  122. font-size: 15px;
  123. font-weight: 700;
  124. margin-bottom: 1rem;
  125. }
  126. .switchBtndel{
  127. width: 5rem;
  128. height: 2rem;
  129. background: linear-gradient(179.11deg, rgba(51,161,165,1.00) 1.866%,rgba(59,111,142,1.00) 137.144%,rgba(59,111,142,1.00) 137.144%,rgba(59,111,142,1.00) 137.144%);
  130. border-radius:
  131. 4px;
  132. display: flex;
  133. align-items: center;
  134. justify-content: center;
  135. color: rgb(255, 255, 255);
  136. font-family: Noto Sans SC;
  137. font-size: 15px;
  138. font-weight: 700;
  139. }
  140. .eleBtns{
  141. width: 5rem;
  142. height: 2rem;
  143. display: flex;
  144. align-items: center;
  145. justify-content: center;
  146. background: rgb(243, 253, 255);
  147. border: 1px solid rgb(172, 218, 230);
  148. border-radius:
  149. 4px;
  150. color: rgb(59, 150, 159);
  151. font-family: Noto Sans SC;
  152. font-size: 15px;
  153. font-weight: 500;
  154. }
  155. .eleBtn{
  156. width: 12rem;
  157. height: 2.125rem;
  158. display: flex;
  159. align-items: center;
  160. justify-content: center;
  161. background: rgb(243, 253, 255);
  162. border: 1px solid rgb(172, 218, 230);
  163. border-radius:
  164. 4px;
  165. color: rgb(59, 150, 159);
  166. font-family: Noto Sans SC;
  167. font-size: 15px;
  168. font-weight: 500;
  169. }
  170. .model-count{
  171. width: 14.5rem;
  172. border-radius: 20rpx;
  173. background: #FFFFFF;
  174. position: absolute;
  175. left: 50%;
  176. top: 50%;
  177. transform: translate(-50%,-50%);
  178. z-index: 9;
  179. min-height: 9.375rem;
  180. padding: 1.5rem 0 1.5rem 0;
  181. overflow: hidden;
  182. }
  183. .amen-tit{
  184. text-align: center;
  185. color: rgb(48, 51, 57);
  186. font-family: Noto Sans SC;
  187. font-size: 1rem;
  188. font-weight: 700;
  189. line-height: 80rpx;
  190. }
  191. .count{
  192. /* text-align: center; */
  193. /* padding:30rpx; */
  194. padding: .625rem .875rem 1.875rem .875rem;
  195. color: rgb(106, 113, 125);
  196. font-family: Noto Sans SC;
  197. font-size: 14px;
  198. font-weight: 500;
  199. max-height: 300rpx;
  200. overflow-y: scroll;
  201. }
  202. .btm-box{
  203. position: absolute;
  204. width: 100%;
  205. left: 0;
  206. bottom: 0;
  207. z-index: 9;
  208. display: flex;
  209. border-top: 1px solid #F5F5F5;
  210. }
  211. .btm-box .btn{
  212. flex: 1;
  213. box-sizing: border-box;
  214. height: 96rpx;
  215. line-height: 96rpx;
  216. text-align: center;
  217. font-size: 30rpx;
  218. }
  219. .btm-box .btn.confirm{
  220. color: #007AFF;
  221. }
  222. .btm-box .btn.cancel{
  223. color: #666666;
  224. border-right: 1px solid #F5F5F5;
  225. }
  226. </style>