index.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. <template>
  2. <view>
  3. <van-popup
  4. :show="show"
  5. :z-index="zIndex"
  6. :overlay="overlay"
  7. :transition="transition"
  8. :custom-class="'van-dialog ' + className"
  9. :custom-style="'width: ' + utils.addUnit(width) + ';' + customStyle"
  10. :overlay-style="overlayStyle"
  11. :close-on-click-overlay="closeOnClickOverlay"
  12. @close="onClickOverlay"
  13. >
  14. <view v-if="title || useTitleSlot" :class="'van-dialog__header ' + (message || useSlot ? '' : 'van-dialog--isolated')">
  15. <slot v-if="useTitleSlot" name="title" />
  16. <block v-else-if="title">{{ title }}</block>
  17. </view>
  18. <slot v-if="useSlot" />
  19. <view
  20. v-else-if="message"
  21. :class="'van-dialog__message ' + (title ? 'van-dialog__message--has-title' : '') + ' ' + (messageAlign ? 'van-dialog__message--' + messageAlign : '')"
  22. >
  23. <text class="van-dialog__message-text">{{ message }}</text>
  24. </view>
  25. <view class="van-hairline--top van-dialog__footer">
  26. <van-button
  27. v-if="showCancelButton"
  28. size="large"
  29. :loading="loading.cancel"
  30. class="van-dialog__button van-hairline--right"
  31. custom-class="van-dialog__cancel"
  32. :custom-style="'color: ' + cancelButtonColor"
  33. @click="onCancel"
  34. >
  35. {{ cancelButtonText }}
  36. </van-button>
  37. <van-button
  38. v-if="showConfirmButton"
  39. size="large"
  40. class="van-dialog__button"
  41. :loading="loading.confirm"
  42. custom-class="van-dialog__confirm"
  43. :custom-style="'color: ' + confirmButtonColor"
  44. :open-type="confirmButtonOpenType"
  45. :lang="lang"
  46. :business-id="businessId"
  47. :session-from="sessionFrom"
  48. :send-message-title="sendMessageTitle"
  49. :send-message-path="sendMessagePath"
  50. :send-message-img="sendMessageImg"
  51. :show-message-card="showMessageCard"
  52. :app-parameter="appParameter"
  53. @click="onConfirm"
  54. @getuserinfo="bindGetUserInfo"
  55. @contact="bindContact"
  56. @getphonenumber="bindGetPhoneNumber"
  57. @error="bindError"
  58. @launchapp="bindLaunchApp"
  59. @opensetting="bindOpenSetting"
  60. >
  61. {{ confirmButtonText }}
  62. </van-button>
  63. </view>
  64. </van-popup>
  65. </view>
  66. </template>
  67. <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
  68. <script>
  69. 'use strict';
  70. Object.defineProperty(exports, '__esModule', {
  71. value: true
  72. });
  73. var component_1 = require('../common/component');
  74. var button_1 = require('../mixins/button');
  75. var open_type_1 = require('../mixins/open-type');
  76. var color_1 = require('../common/color');
  77. component_1.VantComponent({
  78. mixins: [button_1.button, open_type_1.openType],
  79. props: {
  80. show: {
  81. type: Boolean,
  82. observer: function (show) {
  83. if (!show) {
  84. this.stopLoading();
  85. }
  86. }
  87. },
  88. title: String,
  89. message: String,
  90. useSlot: Boolean,
  91. className: String,
  92. customStyle: String,
  93. asyncClose: Boolean,
  94. messageAlign: String,
  95. overlayStyle: String,
  96. useTitleSlot: Boolean,
  97. showCancelButton: Boolean,
  98. closeOnClickOverlay: Boolean,
  99. confirmButtonOpenType: String,
  100. width: null,
  101. zIndex: {
  102. type: Number,
  103. value: 2000
  104. },
  105. confirmButtonText: {
  106. type: String,
  107. value: '确认'
  108. },
  109. cancelButtonText: {
  110. type: String,
  111. value: '取消'
  112. },
  113. confirmButtonColor: {
  114. type: String,
  115. value: color_1.BLUE
  116. },
  117. cancelButtonColor: {
  118. type: String,
  119. value: color_1.GRAY
  120. },
  121. showConfirmButton: {
  122. type: Boolean,
  123. value: true
  124. },
  125. overlay: {
  126. type: Boolean,
  127. value: true
  128. },
  129. transition: {
  130. type: String,
  131. value: 'scale'
  132. }
  133. },
  134. data: {
  135. loading: {
  136. confirm: false,
  137. cancel: false
  138. }
  139. },
  140. methods: {
  141. onConfirm: function () {
  142. this.handleAction('confirm');
  143. },
  144. onCancel: function () {
  145. this.handleAction('cancel');
  146. },
  147. onClickOverlay: function () {
  148. this.onClose('overlay');
  149. },
  150. handleAction: function (action) {
  151. var _a;
  152. if (this.asyncClose) {
  153. this.setData({});
  154. }
  155. this.onClose(action);
  156. },
  157. close: function () {
  158. this.setData({
  159. show: false
  160. });
  161. },
  162. stopLoading: function () {
  163. this.setData({
  164. loading: {
  165. confirm: false,
  166. cancel: false
  167. }
  168. });
  169. },
  170. onClose: function (action) {
  171. if (!this.asyncClose) {
  172. this.close();
  173. }
  174. this.$emit('close', action);
  175. // 把 dialog 实例传递出去,可以通过 stopLoading() 在外部关闭按钮的 loading
  176. this.$emit(action, {
  177. dialog: this
  178. });
  179. var callback = this[action === 'confirm' ? 'onConfirm' : 'onCancel'];
  180. if (callback) {
  181. callback(this);
  182. }
  183. }
  184. }
  185. });
  186. </script>
  187. <style>
  188. @import './index.css';
  189. </style>