mask-model.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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">提示信息</view>
  6. <view class="count" :style="{'color':titleColoe}">{{maskTitle}}</view>
  7. <button form-type="submit" class="switchBtn" >切换航班</button>
  8. <button form-type="submit" class="switchBtn" >强制装载</button>
  9. <button form-type="submit" class="eleBtn" @click="hide">取消</button>
  10. <!-- <view class="btm-box">
  11. <view v-show="btnType==1" class="btn cancel" @click="hide" :style="{'color':cancelColor}">取消</view>
  12. <view class="btn confirm" @click="confirm" :style="{'color':confirmColor}">确定</view>
  13. </view> -->
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. props: {
  20. maskTitle: {//提示内容
  21. type: String,
  22. default:'提示消息'
  23. },
  24. titleColoe:{//提示信息字体颜色
  25. type: String,
  26. default:'#666666'
  27. },
  28. confirmColor:{//确定按钮字体颜色
  29. type: String,
  30. default:'#007AFF'
  31. },
  32. cancelColor:{//取消按钮字体颜色
  33. type: String,
  34. default:'#666666'
  35. },
  36. btnType:{//1显示取消按钮
  37. type: String,
  38. default:'1'
  39. }
  40. },
  41. data() {
  42. return {
  43. showMask:false,
  44. };
  45. },
  46. mounted() {
  47. },
  48. created() {
  49. },
  50. computed: {
  51. },
  52. methods: {
  53. show:function(){
  54. this.showMask = true;
  55. },
  56. hide:function(){
  57. this.$emit('cancel');
  58. this.showMask = false;
  59. },
  60. confirm:function(e){
  61. this.showMask = false;
  62. this.$emit('confirm');
  63. },
  64. }
  65. }
  66. </script>
  67. <style scoped>
  68. .mask-model{
  69. position: fixed;
  70. width: 100%;
  71. height: 100%;
  72. left: 0;
  73. top: 0;
  74. z-index: 999;
  75. }
  76. .mask-model .mask{
  77. width: 100%;
  78. height: 100%;
  79. background: rgba(0,0,0,0.65);
  80. }
  81. .switchBtn{
  82. width: 11.5rem;
  83. height: 2.125rem;
  84. 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%);
  85. border-radius:
  86. 4px;
  87. display: flex;
  88. align-items: center;
  89. justify-content: center;
  90. color: rgb(255, 255, 255);
  91. font-family: Noto Sans SC;
  92. font-size: 15px;
  93. font-weight: 700;
  94. margin-bottom: 1rem;
  95. }
  96. .eleBtn{
  97. width: 11.5rem;
  98. height: 2.125rem;
  99. display: flex;
  100. align-items: center;
  101. justify-content: center;
  102. background: rgb(243, 253, 255);
  103. border: 1px solid rgb(172, 218, 230);
  104. border-radius:
  105. 4px;
  106. color: rgb(59, 150, 159);
  107. font-family: Noto Sans SC;
  108. font-size: 15px;
  109. font-weight: 500;
  110. }
  111. .model-count{
  112. width: 14.5rem;
  113. border-radius: 20rpx;
  114. background: #FFFFFF;
  115. position: absolute;
  116. left: 50%;
  117. top: 50%;
  118. transform: translate(-50%,-50%);
  119. z-index: 9;
  120. min-height: 360rpx;
  121. padding: 1.5rem 0 1.5rem 0;
  122. overflow: hidden;
  123. }
  124. .amen-tit{
  125. text-align: center;
  126. color: rgb(48, 51, 57);
  127. font-family: Noto Sans SC;
  128. font-size: 1rem;
  129. font-weight: 700;
  130. line-height: 80rpx;
  131. }
  132. .count{
  133. /* text-align: center; */
  134. /* padding:30rpx; */
  135. padding: .625rem 1.5625rem 1.875rem 1.5625rem;
  136. color: rgb(106, 113, 125);
  137. font-family: Noto Sans SC;
  138. font-size: 14px;
  139. font-weight: 500;
  140. max-height: 300rpx;
  141. overflow-y: scroll;
  142. }
  143. .btm-box{
  144. position: absolute;
  145. width: 100%;
  146. left: 0;
  147. bottom: 0;
  148. z-index: 9;
  149. display: flex;
  150. border-top: 1px solid #F5F5F5;
  151. }
  152. .btm-box .btn{
  153. flex: 1;
  154. box-sizing: border-box;
  155. height: 96rpx;
  156. line-height: 96rpx;
  157. text-align: center;
  158. font-size: 30rpx;
  159. }
  160. .btm-box .btn.confirm{
  161. color: #007AFF;
  162. }
  163. .btm-box .btn.cancel{
  164. color: #666666;
  165. border-right: 1px solid #F5F5F5;
  166. }
  167. </style>