index.vue
2.74 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
<template>
<transition name="fade" mode="out-in" v-if="isShow">
<div class="ls-mask" v-loading="loading">
<div class="ls-mask-window" :style="{'width':width,'minHeight':height}">
<div :style="{'text-align':titleStyle}"><b>{{title}}</b></div>
<i class="el-icon-close" @click="onCancel"></i>
<div class="ls-mask-content">
<component :is="editItem" ref='childRef' @loading='loadingFn' :formData='formData' />
</div>
<div class="ls-mask-footer">
<el-button type="primary" @click="onConfirm">{{confirmText}}</el-button>
<el-button @click="onCancel">{{cancelText}}</el-button>
</div>
</div>
</div>
</transition>
</template>
<script>
export default {
name: 'index',
data () {
return {
title: '提示',
cancelText: '取消',
confirmText: '确认',
isSync: false,
isShow: false,
cancel: function () { },
confirm: function () { },
editItem: "",
titleStyle: 'center',
width: "75%",
height: "230px",
formData: "",//父组件传递的参数 负责传给子组件
}
},
props: {
loading: { type: Boolean, default: false },
},
watch: {
isShow (a, b) {
this.editItem = this.loadViewFn(this.editItem)
},
},
methods: {
onCancel () {
this.isShow = false
this.cancel()
},
onConfirm () {
this.loading = true
let isOk = this.$refs.childRef.childFn() //子组件方法 必须命名一致
if (isOk || isOk == undefined) { //如果子组件没有 return false 就代表子组件方法一切正常
this.isShow = false
this.confirm()
} else { //否则
console.log('弹窗不关闭')
}
},
loadingFn (e) { //加载状态
this.loading = e
},
loadViewFn (view) {
return (r) =>
require.ensure([], () =>
r(require(`@/views/${view}.vue`))
);
},
}
}
</script>
<style scoped>
#app {
overflow: hidden;
}
.ls-mask {
width: 100%;
height: 100%;
z-index: 2001;
position: fixed;
left: 0;
top: 0;
background: rgba(0, 0, 0, 0.3);
border-radius: 5px;
}
.ls-mask-window {
padding-top: 20px;
background: white;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.ls-mask-window b {
padding-left: 12px;
}
.ls-mask-content {
padding: 20px;
text-align: center;
}
.ls-mask-footer {
border-top: 1px solid #f0f0f0;
display: flex;
justify-content: flex-end;
padding: 2px;
position: absolute;
width: 98%;
bottom: 10px;
right: 12px;
padding-top: 10px;
}
/deep/.el-icon-close {
position: absolute;
top: 20px;
right: 12px;
font-size: 20px;
cursor: pointer;
}
/deep/.el-loading-mask {
background: none;
}
</style>