neil-modal.vue 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. <template>
  2. <view class="neil-modal" @touchmove.stop.prevent="bindTouchmove" :class="{'neil-modal--show':isOpen}">
  3. <view class="neil-modal__mask" @click="clickMask"></view>
  4. <view class="neil-modal__container">
  5. <view class="neil-modal__header" v-if="title.length > 0">{{title}}</view>
  6. <view class="neil-modal__content" :class="content ? 'neil-modal--padding' : ''" :style="{textAlign:align}">
  7. <template v-if="content">
  8. <text class="modal-content">{{content}}</text>
  9. </template>
  10. <template v-else>
  11. <slot />
  12. </template>
  13. </view>
  14. <view class="neil-modal__footer">
  15. <view v-if="showCancel" class="neil-modal__footer-left" @click="clickLeft" :style="{color:cancelColor}"
  16. hover-class="neil-modal__footer-hover" :hover-start-time="20" :hover-stay-time="70">
  17. {{cancelText}}
  18. </view>
  19. <view class="neil-modal__footer-right" @click="clickRight" :style="{color:confirmColor}" hover-class="neil-modal__footer-hover"
  20. :hover-start-time="20" :hover-stay-time="70">
  21. {{confirmText}}
  22. </view>
  23. </view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. export default {
  29. name: 'neil-modal',
  30. props: {
  31. title: { //标题
  32. type: String,
  33. default: ''
  34. },
  35. content: String, //提示的内容
  36. align: { //content 的对齐方式left/center/right
  37. type: String,
  38. default: 'left'
  39. },
  40. cancelText: { //取消按钮的文字,默认为"取消"
  41. type: String,
  42. default: '取消'
  43. },
  44. cancelColor: { //取消按钮颜色
  45. type: String,
  46. default: '#333333'
  47. },
  48. confirmText: { //确定按钮的文字,默认为"确定"
  49. type: String,
  50. default: '确定'
  51. },
  52. confirmColor: { //确认按钮颜色
  53. type: String,
  54. default: '#007aff'
  55. },
  56. showCancel: { //是否显示取消按钮,默认为 true
  57. type: [Boolean, String],
  58. default: true
  59. },
  60. show: { //是否显示模态框
  61. type: [Boolean, String],
  62. default: false
  63. },
  64. autoClose: { //点击遮罩是否自动关闭弹窗
  65. type: [Boolean, String],
  66. default: true
  67. }
  68. },
  69. data() {
  70. return {
  71. isOpen: false
  72. }
  73. },
  74. watch: {
  75. show(val) {
  76. this.isOpen = val
  77. }
  78. },
  79. created() {
  80. this.isOpen = this.show
  81. },
  82. methods: {
  83. bindTouchmove() {},
  84. clickLeft() {
  85. setTimeout(() => {
  86. this.$emit('cancel')
  87. }, 200)
  88. this.closeModal()
  89. },
  90. clickRight() {
  91. setTimeout(() => {
  92. this.$emit('confirm')
  93. }, 200)
  94. this.closeModal()
  95. },
  96. clickMask(){
  97. if(this.autoClose){
  98. this.closeModal()
  99. }
  100. },
  101. closeModal() {
  102. this.showAnimation = false
  103. this.isOpen = false
  104. this.$emit('close')
  105. }
  106. }
  107. }
  108. </script>
  109. <style lang="scss">
  110. $bg-color-mask:rgba(0, 0, 0, 0.5); //遮罩颜色
  111. $bg-color-hover:#f1f1f1; //点击状态颜色
  112. .neil-modal {
  113. position: fixed;
  114. visibility: hidden;
  115. width: 100%;
  116. height: 100%;
  117. top: 0;
  118. left: 0;
  119. z-index: 1000;
  120. transition:visibility 200ms ease-in;
  121. &.neil-modal--show{
  122. visibility: visible;
  123. }
  124. &__header {
  125. position: relative;
  126. overflow: hidden;
  127. text-overflow: ellipsis;
  128. white-space: nowrap;
  129. padding: 18upx 24upx;
  130. line-height: 1.5;
  131. color: #333;
  132. font-size: 32upx;
  133. text-align: center;
  134. &::after {
  135. content: " ";
  136. position: absolute;
  137. left: 0;
  138. bottom: 0;
  139. right: 0;
  140. height: 1px;
  141. border-top: 1px solid #e5e5e5;
  142. transform-origin: 0 0;
  143. transform: scaleY(.5);
  144. }
  145. }
  146. &__container {
  147. position: absolute;
  148. z-index: 999;
  149. top: 50%;
  150. left: 50%;
  151. transform: translate(-50%, -50%) ;
  152. transition: transform 0.3s;
  153. width: 540upx;
  154. border-radius: 20upx;
  155. background-color: #fff;
  156. overflow: hidden;
  157. opacity: 0;
  158. transition: opacity 200ms ease-in;
  159. }
  160. &__content {
  161. position: relative;
  162. color: #333;
  163. font-size: 28upx;
  164. box-sizing: border-box;
  165. line-height: 1.5;
  166. &::after {
  167. content: " ";
  168. position: absolute;
  169. left: 0;
  170. bottom: -1px;
  171. right: 0;
  172. height: 1px;
  173. border-bottom: 1px solid #e5e5e5;
  174. transform-origin: 0 0;
  175. transform: scaleY(.5);
  176. }
  177. }
  178. &__footer {
  179. position: relative;
  180. overflow: hidden;
  181. text-overflow: ellipsis;
  182. white-space: nowrap;
  183. color: #333;
  184. font-size: 32upx;
  185. display: flex;
  186. flex-direction: row;
  187. &-left,
  188. &-right {
  189. position: relative;
  190. flex: 1;
  191. overflow: hidden;
  192. text-overflow: ellipsis;
  193. white-space: nowrap;
  194. height: 88upx;
  195. font-size: 28upx;
  196. line-height: 88upx;
  197. text-align: center;
  198. background-color: #fff;
  199. color: #333;
  200. }
  201. &-right {
  202. color: #007aff;
  203. }
  204. &-left::after {
  205. content: " ";
  206. position: absolute;
  207. right: -1px;
  208. top: 0;
  209. width: 1px;
  210. bottom: 0;
  211. border-right: 1px solid #e5e5e5;
  212. transform-origin: 0 0;
  213. transform: scaleX(.5);
  214. }
  215. &-hover {
  216. background-color: $bg-color-hover;
  217. }
  218. }
  219. &__mask {
  220. display: block;
  221. position: absolute;
  222. z-index: 998;
  223. top: 0;
  224. left: 0;
  225. width: 100%;
  226. height: 100%;
  227. background: $bg-color-mask;
  228. opacity: 0;
  229. transition: opacity 200ms ease-in;
  230. &.neil-modal--show{
  231. opacity: 1;
  232. }
  233. }
  234. &--padding {
  235. padding: 32upx 24upx;
  236. min-height: 90upx;
  237. }
  238. &--show {
  239. .neil-modal__container,.neil-modal__mask{
  240. opacity: 1;
  241. }
  242. }
  243. }
  244. </style>