showModal.vue
3.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<template>
<div class="show-modal" v-if="isShow && options">
defaultOptions.classType:{{defaultOptions.classType}}
<div class="layer-box" :class="defaultOptions.classType || ''" @click="hideLayer" @touchmove.stop.prevent>
<div class="box" @click.stop.prevent>
<div class="title" v-if="defaultOptions.title">{{defaultOptions.title}}</div>
<slot name="htmlMessage"></slot>
<div class="message" v-if="defaultOptions.message">
<div class="message-content" v-html="defaultOptions.message"></div>
</div>
<div class="buttons-box">
<div class="btn btn-cancel" v-if="defaultOptions.showCancelButton" @click="cancel(defaultOptions.params || defaultOptions)">{{defaultOptions.cancelButtonText}}</div>
<div class="btn btn-confirm" v-if="defaultOptions.showConfirmButton" @click="confirm(defaultOptions.params || defaultOptions)">{{defaultOptions.confirmButtonText}}</div>
</div>
</div>
<div class="bottomClose" v-if="defaultOptions.bottomClose" @click="hideLayer">
<img src="static/img/icon_layer_bottom_close.png" class="close-img" />
</div>
</div>
</div>
</template>
<script>
export default {
data: function () {
return {
isShow: false,
defaultOptions: null // 默认参数
}
},
props: ["options"],
methods: {
/**
* 显示提示用户升级层
*/
showLayer() {
// 设置浮层显示
this.$set(this, "isShow", true);
},
/**
* 隐藏提示用户升级层
*/
hideLayer() {
// 设置浮层隐藏
this.$set(this, "isShow", false);
},
/**
* 初始化showModal默认参数
*/
initDefaultOptions() {
// 初始化默认参数
this.$set(this, "defaultOptions", {
title: "",
message: "",
classType: "",
showConfirmButton: true,
confirmButtonText: "确定",
confirmButtonClass: "",
confirmButtonCallback: null,
showCancelButton: false,
cancelButtonText: "",
cancelButtonClass: "",
cancelButtonCallback: null,
bottomClose: false,
closeOnClickModal: true
});
},
/**
* 点击"确定"回调
* @param {object} options [回调参数]
*/
confirm(options) {
// 隐藏层
this.hideLayer();
if (typeof this.options === "object" && typeof this.options.confirmButtonCallback === "function") {
this.options.confirmButtonCallback(options);
}
},
/**
* 点击"取消"回调
* @param {object} options [回调参数]
*/
cancel(options) {
// 隐藏层
this.hideLayer();
if (typeof this.options === "object" && typeof this.options.cancelButtonCallback === "function") {
this.options.cancelButtonCallback(options);
}
}
},
watch: {
/**
* 监听选项变化
*/
options(newVal, oldVal) {
// this.$nextTick(function() {
if (newVal !== null && typeof newVal === "object") {
// 初始化showModal默认参数
this.initDefaultOptions();
// 合并提示框配置选项
Object.assign(this.defaultOptions, newVal);
}
// });
}
},
mounted() {
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style rel="stylesheet/less" lang="less">
@import './show_modal';
</style>