城阳工作端uniH5前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

393 lines
12 KiB

<template>
<view>
<van-popup
:show="showClone"
:z-index="zIndex"
:overlay="overlay"
:transition="transition"
:custom-class="'van-dialog van-dialog--' + theme + className + ' custom-class'"
:custom-style="'width: ' + utils.addUnit(width) + ';' + customStyle"
:overlay-style="overlayStyle"
:close-on-click-overlay="closeOnClickOverlay"
@close="onClickOverlay"
>
<view v-if="title || useTitleSlot" :class="utils.bem('dialog__header', { isolated: !(message || useSlot) })">
<slot v-if="useTitleSlot" name="title" />
<block v-else-if="title">{{ title }}</block>
</view>
<slot v-if="useSlot" />
<view v-else-if="message" :class="utils.bem('dialog__message', [theme, messageAlign, { hasTitle: title }])">
<text class="van-dialog__message-text">{{ message }}</text>
</view>
<van-goods-action v-if="theme === 'round-button'" custom-class="van-dialog__footer--round-button">
<van-goods-action-button
v-if="showCancelButton"
size="large"
:loading="loading.cancel"
class="van-dialog__button van-hairline--right"
custom-class="van-dialog__cancel cancle-button-class"
:custom-style="'color: ' + cancelButtonColor"
@click="onCancel"
>
{{ cancelButtonText }}
</van-goods-action-button>
<van-goods-action-button
v-if="showConfirmButton"
size="large"
class="van-dialog__button"
:loading="loading.confirm"
custom-class="van-dialog__confirm confirm-button-class"
:custom-style="'color: ' + confirmButtonColor"
:button-id="confirmButtonId"
: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"
@agreeprivacyauthorization="onAgreePrivacyAuthorization"
@getRealTimePhoneNumber="onGetRealTimePhoneNumber"
@click="onConfirm"
@getuserinfo="onGetUserInfo"
@contact="onContact"
@getphonenumber="onGetPhoneNumber"
@error="onError"
@launchapp="onLaunchApp"
@opensetting="onOpenSetting"
>
{{ confirmButtonText }}
</van-goods-action-button>
</van-goods-action>
<view v-else-if="showCancelButton || showConfirmButton" class="van-hairline--top van-dialog__footer">
<block v-if="showCancelButton">
<slot v-if="useCancelButtonSlot" name="cancel-button" />
<van-button
wx:else
size="large"
:loading="loading.cancel"
class="van-dialog__button van-hairline--right"
custom-class="van-dialog__cancel cancle-button-class"
:custom-style="'color: ' + cancelButtonColor"
@click="onCancel"
>
{{ cancelButtonText }}
</van-button>
</block>
<block v-if="showConfirmButton">
<slot v-if="useConfirmButtonSlot" name="confirm-button" />
<van-button
wx:else
size="large"
class="van-dialog__button"
:loading="loading.confirm"
custom-class="van-dialog__confirm confirm-button-class"
:custom-style="'color: ' + confirmButtonColor"
:button-id="confirmButtonId"
: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"
@agreeprivacyauthorization="onAgreePrivacyAuthorization"
@getRealTimePhoneNumber="onGetRealTimePhoneNumber"
@click="onConfirm"
@getuserinfo="onGetUserInfo"
@contact="onContact"
@getphonenumber="onGetPhoneNumber"
@error="onError"
@launchapp="onLaunchApp"
@opensetting="onOpenSetting"
>
{{ confirmButtonText }}
</van-button>
</block>
</view>
</van-popup>
</view>
</template>
<script module="utils" lang="wxs" src="@/miniprogram_npm/@vant/weapp/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 color_1 = require('../common/color');
var utils_1 = require('../common/utils');
export default {
data() {
return {
loading: {
confirm: false,
cancel: false
},
callback: function () {},
lang: '',
businessId: '',
sessionFrom: '',
sendMessageTitle: '',
sendMessagePath: '',
sendMessageImg: '',
showMessageCard: '',
appParameter: '',
showClone: false
};
},
mixins: [button_1.button],
classes: ['cancle-button-class', 'confirm-button-class'],
props: {
show: {
type: Boolean
},
title: String,
message: String,
theme: {
type: String,
default: 'default'
},
confirmButtonId: String,
className: String,
customStyle: String,
asyncClose: Boolean,
messageAlign: String,
beforeClose: null,
overlayStyle: String,
useSlot: Boolean,
useTitleSlot: Boolean,
useConfirmButtonSlot: Boolean,
useCancelButtonSlot: Boolean,
showCancelButton: Boolean,
closeOnClickOverlay: Boolean,
confirmButtonOpenType: String,
width: null,
zIndex: {
type: Number,
default: 2000
},
confirmButtonText: {
type: String,
default: '确认'
},
cancelButtonText: {
type: String,
default: '取消'
},
confirmButtonColor: {
type: String,
default: color_1.RED
},
cancelButtonColor: {
type: String,
default: color_1.GRAY
},
showConfirmButton: {
type: Boolean,
default: true
},
overlay: {
type: Boolean,
default: true
},
transition: {
type: String,
default: 'scale'
}
},
methods: {
onConfirm: function () {
this.handleAction('confirm');
},
onCancel: function () {
this.handleAction('cancel');
},
onClickOverlay: function () {
this.close('overlay');
},
close: function (action) {
var that = this;
this.setData({
showClone: false
});
this.$nextTick(function () {
that.$emit('close', action);
var callback = that.callback;
if (callback) {
callback(action, that);
}
});
},
stopLoading: function () {
this.setData({
loading: {
confirm: false,
cancel: false
}
});
},
handleAction: function (action) {
var _a;
var that = this;
this.$emit(action, {
dialog: this
});
var _b = this;
var asyncClose = _b.asyncClose;
var beforeClose = _b.beforeClose;
if (!asyncClose && !beforeClose) {
this.close(action);
return;
}
this.setData({});
if (beforeClose) {
(0, utils_1.toPromise)(beforeClose(action)).then(function (value) {
if (value) {
that.close(action);
} else {
that.stopLoading();
}
});
}
},
onAgreePrivacyAuthorization() {
console.log('占位:函数 onAgreePrivacyAuthorization 未声明');
},
onGetRealTimePhoneNumber() {
console.log('占位:函数 onGetRealTimePhoneNumber 未声明');
},
onGetUserInfo() {
console.log('占位:函数 onGetUserInfo 未声明');
},
onContact() {
console.log('占位:函数 onContact 未声明');
},
onGetPhoneNumber() {
console.log('占位:函数 onGetPhoneNumber 未声明');
},
onError() {
console.log('占位:函数 onError 未声明');
},
onLaunchApp() {
console.log('占位:函数 onLaunchApp 未声明');
},
onOpenSetting() {
console.log('占位:函数 onOpenSetting 未声明');
}
},
watch: {
show: {
handler: function (show) {
this.showClone = this.clone(this.show);
if (!show) {
this.stopLoading();
}
},
immediate: true
}
}
};
</script>
<style>
@import '../common/index.css';
.van-dialog {
background-color: var(--dialog-background-color, #fff);
border-radius: var(--dialog-border-radius, 16px);
font-size: var(--dialog-font-size, 16px);
overflow: hidden;
top: 45% !important;
width: var(--dialog-width, 320px);
}
@media (max-width: 321px) {
.van-dialog {
width: var(--dialog-small-screen-width, 90%);
}
}
.van-dialog__header {
font-weight: var(--dialog-header-font-weight, 500);
line-height: var(--dialog-header-line-height, 24px);
padding-top: var(--dialog-header-padding-top, 24px);
text-align: center;
}
.van-dialog__header--isolated {
padding: var(--dialog-header-isolated-padding, 24px 0);
}
.van-dialog__message {
-webkit-overflow-scrolling: touch;
font-size: var(--dialog-message-font-size, 14px);
line-height: var(--dialog-message-line-height, 20px);
max-height: var(--dialog-message-max-height, 60vh);
overflow-y: auto;
padding: var(--dialog-message-padding, 24px);
text-align: center;
}
.van-dialog__message-text {
word-wrap: break-word;
}
.van-dialog__message--hasTitle {
color: var(--dialog-has-title-message-text-color, #646566);
padding-top: var(--dialog-has-title-message-padding-top, 8px);
}
.van-dialog__message--round-button {
color: #323233;
padding-bottom: 16px;
}
.van-dialog__message--left {
text-align: left;
}
.van-dialog__message--right {
text-align: right;
}
.van-dialog__message--justify {
text-align: justify;
}
.van-dialog__footer {
display: flex;
}
.van-dialog__footer--round-button {
padding: 8px 24px 16px !important;
position: relative !important;
}
.van-dialog__button {
flex: 1;
}
.van-dialog__cancel,
.van-dialog__confirm {
border: 0 !important;
}
.van-dialog-bounce-enter {
opacity: 0;
transform: translate3d(-50%, -50%, 0) scale(0.7);
}
.van-dialog-bounce-leave-active {
opacity: 0;
transform: translate3d(-50%, -50%, 0) scale(0.9);
}
</style>