<!--
|
* @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>
|