123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <!--
- * @Description: 详情弹框
- * @Author: Sugar.
- * @Date: 2023-11-24 13:55:00
- * @LastEditors: Sugar.
- * @LastEditTime: 2023-11-24 13:55:00
- * @FilePath: \cattle_webui\src\views\ticket\ticketMr\dialog\details.vue
- * @Copyright: Copyright (c) 2016~2023 by Sugar., All Rights Reserved.
- -->
- <template>
- <el-dialog
- title="票务详情"
- :visible.sync="open"
- width="700px"
- append-to-body
- :close-on-click-modal="false"
- @close="cancel"
- >
- <div class="dialog" v-if="form">
-
- </div>
- <span slot="footer" class="dialog-footer">
- <el-button type="primary" @click="cancel">关闭</el-button>
- </span>
- </el-dialog>
- </template>
- <script>
- import { getSelectById } from "@/api/tourism/scenicAreaManagement/attractionInfo";
- export default {
- name: "detailsDia",
- data() {
- return {
- title: "编辑",
- model: "EDIT",
- open: false,
- loading: false,
- form: {
- id: undefined,
- },
- performerVisible: false,
- performerList: []
- };
- },
- methods: {
- /**
- * 打开弹框
- * @date 2023-11-22
- * @param {any} obj
- * @returns {any}
- */
- openDialog(title, obj) {
- this.open = true;
- if (obj){
- this.getSelectByIdApi(obj)
- }
- },
- /** 获取详情 */
- getSelectByIdApi(row) {
- const id = row.id
- getSelectById(id).then(response => {
- this.form = response.data;
- });
- },
- /**
- * 关闭弹框
- * @date 2023-11-22
- * @returns {any}
- */
- cancel() {
- this.open = false;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .dialog {
- padding: 0 30px;
- max-height: 65vh;
- overflow-y: auto;
- }
- .dialog {
- padding: 0 30px;
- .upload-btn {
- width: 100px;
- height: 100px;
- background-color: #fbfdff;
- border: dashed 1px #c0ccda;
- border-radius: 5px;
- i {
- font-size: 30px;
- margin-top: 20px;
- }
- &-text {
- margin-top: -10px;
- }
- }
- .avatar {
- cursor: pointer;
- }
- .title-class{
- font-size: 16px;
- font-weight: bold;
- color: black;
- margin-bottom: 20px;
- margin-top: 20px;
- }
- .item-class{
- margin-bottom: 20px;
- }
- }
- </style>
|