modalDialog.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <template>
  2. <view>
  3. <view class="global-mask" v-show="isShowDialog"></view>
  4. <view class="global-dialog" v-show="isShowDialog">
  5. <view class="title">{{showTitle}}</view>
  6. <view class="content">
  7. <view class="text">{{showText}}</view>
  8. </view>
  9. <view class="btn">
  10. <view class="left" @tap="cancel" v-if="isShowCancel">{{cancelText}}</view>
  11. <view class="right" @tap="confirm" v-if="isShowConfirm">{{confirmText}}</view>
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. name: 'modalDialog',
  19. props: {
  20. showTitle: {
  21. type: String,
  22. default: '温馨提示'
  23. },
  24. showText: {
  25. type: String,
  26. default: '提示内容'
  27. },
  28. isShowDialog: {
  29. type: Boolean,
  30. default: false
  31. },
  32. isShowCancel: {
  33. type: Boolean,
  34. default: true
  35. },
  36. cancelText: {
  37. type: String,
  38. default: '取消'
  39. },
  40. isShowConfirm: {
  41. type: Boolean,
  42. default: true
  43. },
  44. confirmText: {
  45. type: String,
  46. default: '确定'
  47. }
  48. },
  49. data() {
  50. return {
  51. };
  52. },
  53. methods: {
  54. cancel() {
  55. this.$emit('cancel');
  56. },
  57. confirm() {
  58. this.$emit('confirm');
  59. }
  60. }
  61. }
  62. </script>
  63. <style lang="scss">
  64. </style>