shuishen
2023-04-09 85fb13abbeadc1765d2c0056ba99c6c19aa35dfd
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
<!--
 * @Author: shuishen 1109946754@qq.com
 * @Date: 2023-04-04 18:30:49
 * @LastEditors: shuishen 1109946754@qq.com
 * @LastEditTime: 2023-04-04 18:35:29
 * @FilePath: \srs-police-affairs\src\views\activity\components\customImageBox.vue
 * @Description: 
 * 
 * Copyright (c) 2023 by ${git_name_email}, All Rights Reserved. 
-->
<template>
    <div>
        <el-dialog :title="curDialogTitle" :modal="true" :close-on-click-modal="false" :visible.sync="curDialogShow"
            :modal-append-to-body="false" class="activity-custom-img-box" :before-close="closeCurDialog">
            <div class="describe">
                <div class="label">
                    描述
                </div>
                <div class="val"></div>
            </div>
            <div class="select-image">
                <div class="label">
                    选择图片
                </div>
                <div class="image-button">
                    <el-button type="primary">选择图片</el-button>
                </div>
            </div>
            <div class="edit-line-btn-box">
                <el-button @click="editCustomImage">编辑</el-button>
                <el-button @click="saveCustomImage">保存</el-button>
                <el-button @click="deleteCustomImage">删除</el-button>
                <el-button @click="addCustomImage">添加</el-button>
                <el-button @click="closeCurDialog">取消</el-button>
            </div>
        </el-dialog>
    </div>
</template>
 
<script>
export default {
    data () {
        return {
            curDialogTitle: '',
            curDialogShow: false,
 
        }
    },
 
    methods: {
        addCustomImage () {
 
        },
 
        editCustomImage () {
 
        },
 
        saveCustomImage () {
 
        },
 
        deleteCustomImage () {
 
        },
 
        closeCurDialog () {
            this.curDialogShow = false
        },
    },
 
}
</script>
 
<style lang="scss" scoped></style>