attractionInfoDetails.vue 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <template>
  2. <el-dialog
  3. :title="title"
  4. :visible.sync="open"
  5. width="800px"
  6. append-to-body
  7. :close-on-click-modal="false"
  8. @close="cancel"
  9. >
  10. <div class="form-dialog-box"
  11. v-loading="loading"
  12. element-loading-text="拼命加载数据中"
  13. element-loading-spinner="el-icon-loading"
  14. element-loading-background="rgba(0, 0, 0, 0.8)">
  15. <el-form :model="form" ref="form" :rules="rules" label-width="120px">
  16. </el-form>
  17. </div>
  18. <span slot="footer" class="dialog-footer" v-if="formStatus==1">
  19. <el-button @click="cancel">关闭</el-button>
  20. </span>
  21. <!-- 添加或修改对话框 End -->
  22. </el-dialog>
  23. </template>
  24. <script>
  25. import {
  26. getTableDeatilsApi,
  27. updateTableApi,
  28. addTableApi
  29. } from '@/api/CURD'
  30. export default {
  31. name: "addAndEdit",
  32. dicts: [],
  33. data() {
  34. return {
  35. title: "我是谁",
  36. model: "", // DEATILS: 详情模式 DEATILSInit : 详情模式(需要请求详情)
  37. open: false,
  38. loading: false,
  39. formStatus: null, // 0/null : 加载中 1 : 获取详情成功 2 : 获取详情失败
  40. configUrl: {
  41. details: '/merchant/merchantSysuser/', // 详情地址
  42. },
  43. form: {
  44. id: undefined,
  45. },
  46. rules: {
  47. xxx: [{ required: true, message: "请输入xxx", trigger: ["change","blur"] }]
  48. }
  49. };
  50. },
  51. methods: {
  52. async initData(title , model,row){
  53. this.title = title
  54. this.open = true
  55. this.loading = true
  56. this.model = model
  57. this.formStatus = 0
  58. if(model=='DEATILS') { // 新增
  59. this.$set(this,'form',row)
  60. this.formStatus = 1
  61. }else if(model=='DEATILSInit') { // 新增
  62. await this.getTableDeatilsFun(row)
  63. }
  64. this.loading = false
  65. },
  66. /** 获取详情 */
  67. async getTableDeatilsFun(row) {
  68. const id = row.id
  69. this.loading = true
  70. try {
  71. let res = await getTableDeatilsApi(this.configUrl.details,id)
  72. if(res.code == 200) {
  73. this.$set(this,'form',JSON.parse(JSON.stringify(res.data)))
  74. this.formStatus = 1
  75. }else {
  76. this.$message.error('获取详情失败!!!');
  77. this.formStatus = 2
  78. this.loading = false
  79. this.open = false;
  80. }
  81. this.loading = false
  82. } catch (error) {
  83. console.error('获取详情失败!!!!',error)
  84. this.formStatus = 2
  85. this.loading = false
  86. this.open = false;
  87. }
  88. },
  89. /**
  90. * 关闭弹框
  91. * @date 2023-11-22
  92. * @returns {any}
  93. */
  94. cancel() {
  95. this.open = false;
  96. },
  97. },
  98. };
  99. </script>
  100. <style lang="scss" scoped>
  101. .form-dialog-box {
  102. padding: 0 30px;
  103. padding: 0 30px;
  104. min-height: 50vh;
  105. max-height: 65vh;
  106. overflow-y: auto;
  107. .upload-btn {
  108. width: 100px;
  109. height: 100px;
  110. background-color: #fbfdff;
  111. border: dashed 1px #c0ccda;
  112. border-radius: 5px;
  113. i {
  114. font-size: 30px;
  115. margin-top: 20px;
  116. }
  117. &-text {
  118. margin-top: -10px;
  119. }
  120. }
  121. .avatar {
  122. cursor: pointer;
  123. }
  124. }
  125. .el-table{
  126. .upload-btn {
  127. width: 100px;
  128. height: 100px;
  129. background-color: #fbfdff;
  130. border: dashed 1px #c0ccda;
  131. border-radius: 5px;
  132. i {
  133. font-size: 30px;
  134. margin-top: 20px;
  135. }
  136. &-text {
  137. margin-top: -10px;
  138. }
  139. }
  140. .avatar {
  141. cursor: pointer;
  142. }
  143. }
  144. .area-container {
  145. min-height: 400px;
  146. }
  147. ::v-deep .area-wrap-city.el-cascader {
  148. line-height: normal;
  149. .el-input {
  150. cursor: pointer;
  151. width: 100% !important;
  152. height: 28px !important;
  153. .el-input__inner {
  154. display: none !important;
  155. }
  156. span.el-input__suffix {
  157. position: inherit !important;
  158. i.el-input__icon {
  159. line-height: inherit;
  160. margin-left: 5px;
  161. }
  162. }
  163. .el-input__wrapper {
  164. box-shadow: none;
  165. input {
  166. display: none;
  167. }
  168. }
  169. }
  170. .el-cascader__tags {
  171. display: none;
  172. }
  173. }
  174. .area-city-popper {
  175. .el-cascader-panel {
  176. .el-scrollbar.el-cascader-menu {
  177. .el-cascader-menu__wrap.el-scrollbar__wrap {
  178. height: 315px;
  179. }
  180. }
  181. }
  182. }
  183. </style>
  184. <style>
  185. .custom-class-box {
  186. z-index: 999999 !important;
  187. }
  188. </style>