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
| <!--/**-->
| <!--* Created By renyu on 2019/10/12-->
| <!--*/-->
| <!--<template>-->
| <!--<div>-->
| <!--<el-dialog-->
| <!--:title="tit"-->
| <!--:visible.sync="visible"-->
| <!--@close="$emit('update:show', false)"-->
| <!--:show="show" :show-close="false">-->
| <!--<span>{{con}}</span>-->
| <!--<div slot="footer" class="dialog-footer">-->
| <!--<el-button @click="$emit('update:show', false)" class="dialogbtn">取 消</el-button>-->
| <!--<el-button type="primary" @click="$emit('update:show', false)" class="dialogbtn rightbtn">确 定</el-button>-->
| <!--</div>-->
| <!--</el-dialog>-->
| <!--</div>-->
| <!--</template>-->
|
| <!--<script>-->
| <!--export default {-->
| <!--data() {-->
| <!--return {-->
| <!--visible: this.show,-->
| <!--con: this.content,-->
| <!--tit: this.title-->
| <!--};-->
| <!--},-->
| <!--props: {-->
| <!--show: {-->
| <!--type: Boolean,-->
| <!--default: false-->
| <!--},-->
| <!--content: {-->
| <!--type: String,-->
| <!--default: ''-->
| <!--},-->
| <!--title: {-->
| <!--type: String,-->
| <!--default: ''-->
| <!--}-->
| <!--},-->
| <!--watch: {-->
| <!--show() {-->
| <!--this.visible = this.show-->
| <!--this.con = this.content-->
| <!--this.tit = this.title-->
| <!--}-->
| <!--}-->
| <!--};-->
| <!--</script>-->
|
|