details.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <!--
  2. * @Description: 详情弹框
  3. * @Author: Sugar.
  4. * @Date: 2023-11-24 13:55:00
  5. * @LastEditors: Sugar.
  6. * @LastEditTime: 2023-11-24 13:55:00
  7. * @FilePath: \cattle_webui\src\views\ticket\ticketMr\dialog\details.vue
  8. * @Copyright: Copyright (c) 2016~2023 by Sugar., All Rights Reserved.
  9. -->
  10. <template>
  11. <el-dialog
  12. title="票务详情"
  13. :visible.sync="open"
  14. width="700px"
  15. append-to-body
  16. :close-on-click-modal="false"
  17. @close="cancel"
  18. >
  19. <div class="dialog" v-if="form">
  20. </div>
  21. <span slot="footer" class="dialog-footer">
  22. <el-button type="primary" @click="cancel">关闭</el-button>
  23. </span>
  24. </el-dialog>
  25. </template>
  26. <script>
  27. import { getSelectById } from "@/api/tourism/scenicAreaManagement/attractionInfo";
  28. export default {
  29. name: "detailsDia",
  30. data() {
  31. return {
  32. title: "编辑",
  33. model: "EDIT",
  34. open: false,
  35. loading: false,
  36. form: {
  37. id: undefined,
  38. },
  39. performerVisible: false,
  40. performerList: []
  41. };
  42. },
  43. methods: {
  44. /**
  45. * 打开弹框
  46. * @date 2023-11-22
  47. * @param {any} obj
  48. * @returns {any}
  49. */
  50. openDialog(title, obj) {
  51. this.open = true;
  52. if (obj){
  53. this.getSelectByIdApi(obj)
  54. }
  55. },
  56. /** 获取详情 */
  57. getSelectByIdApi(row) {
  58. const id = row.id
  59. getSelectById(id).then(response => {
  60. this.form = response.data;
  61. });
  62. },
  63. /**
  64. * 关闭弹框
  65. * @date 2023-11-22
  66. * @returns {any}
  67. */
  68. cancel() {
  69. this.open = false;
  70. },
  71. },
  72. };
  73. </script>
  74. <style lang="scss" scoped>
  75. .dialog {
  76. padding: 0 30px;
  77. max-height: 65vh;
  78. overflow-y: auto;
  79. }
  80. .dialog {
  81. padding: 0 30px;
  82. .upload-btn {
  83. width: 100px;
  84. height: 100px;
  85. background-color: #fbfdff;
  86. border: dashed 1px #c0ccda;
  87. border-radius: 5px;
  88. i {
  89. font-size: 30px;
  90. margin-top: 20px;
  91. }
  92. &-text {
  93. margin-top: -10px;
  94. }
  95. }
  96. .avatar {
  97. cursor: pointer;
  98. }
  99. .title-class{
  100. font-size: 16px;
  101. font-weight: bold;
  102. color: black;
  103. margin-bottom: 20px;
  104. margin-top: 20px;
  105. }
  106. .item-class{
  107. margin-bottom: 20px;
  108. }
  109. }
  110. </style>