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
| <template>
| <el-dialog
| title="学时报告"
| :visible.sync="dialogVisible"
| :modal-append-to-body="false"
| :close-on-click-modal="false"
| width="850px"
| :before-close="handleClose"
| append-to-body
| >
| <div class="columnFlex" style="margin-top: 10px">
| <img style="height: 130px;width: 150px;" src="../../../../assets/images/im.png">
| </div>
| </el-dialog>
| </template>
|
| <script >
| export default {
| name: 'addUser',
| components: {
| },
| data() {
| return {
| dialogVisible: false,
| dialogStatus: '',
| }
| },
| created() {
| },
| methods: {
| openDialog (type, data) {
| this.dialogVisible = true;
| this.dialogStatus = type;
| },
|
| handleClose() {
| this.dialogVisible = false;
| this.$emit("getList");
| },
| }
| }
|
| </script>
| <style scoped>
|
| </style>
|
|