123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- <template>
- <view>
- <van-popup
- :show="show"
- :z-index="zIndex"
- :overlay="overlay"
- :transition="transition"
- :custom-class="'van-dialog ' + className"
- :custom-style="'width: ' + utils.addUnit(width) + ';' + customStyle"
- :overlay-style="overlayStyle"
- :close-on-click-overlay="closeOnClickOverlay"
- @close="onClickOverlay"
- >
- <view v-if="title || useTitleSlot" :class="'van-dialog__header ' + (message || useSlot ? '' : 'van-dialog--isolated')">
- <slot v-if="useTitleSlot" name="title" />
- <block v-else-if="title">{{ title }}</block>
- </view>
- <slot v-if="useSlot" />
- <view
- v-else-if="message"
- :class="'van-dialog__message ' + (title ? 'van-dialog__message--has-title' : '') + ' ' + (messageAlign ? 'van-dialog__message--' + messageAlign : '')"
- >
- <text class="van-dialog__message-text">{{ message }}</text>
- </view>
- <view class="van-hairline--top van-dialog__footer">
- <van-button
- v-if="showCancelButton"
- size="large"
- :loading="loading.cancel"
- class="van-dialog__button van-hairline--right"
- custom-class="van-dialog__cancel"
- :custom-style="'color: ' + cancelButtonColor"
- @click="onCancel"
- >
- {{ cancelButtonText }}
- </van-button>
- <van-button
- v-if="showConfirmButton"
- size="large"
- class="van-dialog__button"
- :loading="loading.confirm"
- custom-class="van-dialog__confirm"
- :custom-style="'color: ' + confirmButtonColor"
- :open-type="confirmButtonOpenType"
- :lang="lang"
- :business-id="businessId"
- :session-from="sessionFrom"
- :send-message-title="sendMessageTitle"
- :send-message-path="sendMessagePath"
- :send-message-img="sendMessageImg"
- :show-message-card="showMessageCard"
- :app-parameter="appParameter"
- @click="onConfirm"
- @getuserinfo="bindGetUserInfo"
- @contact="bindContact"
- @getphonenumber="bindGetPhoneNumber"
- @error="bindError"
- @launchapp="bindLaunchApp"
- @opensetting="bindOpenSetting"
- >
- {{ confirmButtonText }}
- </van-button>
- </view>
- </van-popup>
- </view>
- </template>
- <script module="utils" lang="wxs" src="@/node_modules/@vant/weapp/lib/wxs/utils.wxs"></script>
- <script>
- 'use strict';
- Object.defineProperty(exports, '__esModule', {
- value: true
- });
- var component_1 = require('../common/component');
- var button_1 = require('../mixins/button');
- var open_type_1 = require('../mixins/open-type');
- var color_1 = require('../common/color');
- component_1.VantComponent({
- mixins: [button_1.button, open_type_1.openType],
- props: {
- show: {
- type: Boolean,
- observer: function (show) {
- if (!show) {
- this.stopLoading();
- }
- }
- },
- title: String,
- message: String,
- useSlot: Boolean,
- className: String,
- customStyle: String,
- asyncClose: Boolean,
- messageAlign: String,
- overlayStyle: String,
- useTitleSlot: Boolean,
- showCancelButton: Boolean,
- closeOnClickOverlay: Boolean,
- confirmButtonOpenType: String,
- width: null,
- zIndex: {
- type: Number,
- value: 2000
- },
- confirmButtonText: {
- type: String,
- value: '确认'
- },
- cancelButtonText: {
- type: String,
- value: '取消'
- },
- confirmButtonColor: {
- type: String,
- value: color_1.BLUE
- },
- cancelButtonColor: {
- type: String,
- value: color_1.GRAY
- },
- showConfirmButton: {
- type: Boolean,
- value: true
- },
- overlay: {
- type: Boolean,
- value: true
- },
- transition: {
- type: String,
- value: 'scale'
- }
- },
- data: {
- loading: {
- confirm: false,
- cancel: false
- }
- },
- methods: {
- onConfirm: function () {
- this.handleAction('confirm');
- },
- onCancel: function () {
- this.handleAction('cancel');
- },
- onClickOverlay: function () {
- this.onClose('overlay');
- },
- handleAction: function (action) {
- var _a;
- if (this.asyncClose) {
- this.setData({});
- }
- this.onClose(action);
- },
- close: function () {
- this.setData({
- show: false
- });
- },
- stopLoading: function () {
- this.setData({
- loading: {
- confirm: false,
- cancel: false
- }
- });
- },
- onClose: function (action) {
- if (!this.asyncClose) {
- this.close();
- }
- this.$emit('close', action);
- // 把 dialog 实例传递出去,可以通过 stopLoading() 在外部关闭按钮的 loading
- this.$emit(action, {
- dialog: this
- });
- var callback = this[action === 'confirm' ? 'onConfirm' : 'onCancel'];
- if (callback) {
- callback(this);
- }
- }
- }
- });
- </script>
- <style>
- @import './index.css';
- </style>
|