addAndEdit.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  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. <el-button
  21. type="primary"
  22. @click="submitForm"
  23. v-loading="loading"
  24. element-loading-text="提交中..."
  25. element-loading-spinner="el-icon-loading"
  26. element-loading-background="rgba(0, 0, 0, 0.8)"
  27. >
  28. {{ loading ? '提交中...' : '保存' }}
  29. </el-button>
  30. </span>
  31. <!-- 添加或修改对话框 End -->
  32. </el-dialog>
  33. </template>
  34. <script>
  35. import {
  36. getTableDeatilsApi,
  37. updateTableApi,
  38. addTableApi
  39. } from '@/api/CURD'
  40. export default {
  41. name: "addAndEdit",
  42. dicts: [],
  43. data() {
  44. return {
  45. title: "",
  46. model: "", // EDIT: 编辑模式 ADD : 新增模式 EDITInit : 编辑模式(需要请求详情)
  47. open: false,
  48. loading: false,
  49. formStatus: null, // 0/null : 加载中 1 : 获取详情成功 2 : 获取详情失败
  50. configUrl: {
  51. add: '/merchant/merchantSysuser', // 新增地址
  52. details: '/merchant/merchantSysuser/', // 详情地址
  53. edit: '/merchant/merchantSysuser', // 编辑地址
  54. },
  55. form: {
  56. id: undefined,
  57. },
  58. rules: {
  59. xxx: [{ required: true, message: "请输入xxx", trigger: ["change","blur"] }]
  60. }
  61. };
  62. },
  63. methods: {
  64. async initData(title , model,row){
  65. this.title = title
  66. this.open = true
  67. this.loading = true
  68. this.model = model
  69. this.formStatus = 0
  70. if(model=='ADD') { // 新增
  71. this.$set(this,'form',row)
  72. this.formStatus = 1
  73. }else if(model=='EDIT') { // 新增
  74. this.$set(this,'form',row)
  75. this.formStatus = 1
  76. }else if(model=='EDITInit') { // 新增
  77. await this.getTableDeatilsFun(row)
  78. }
  79. this.loading = false
  80. this.$nextTick(()=>{
  81. if(this.$refs["form"]) {
  82. this.$refs["form"].clearValidate();
  83. }
  84. })
  85. },
  86. /** 获取详情 */
  87. async getTableDeatilsFun(row) {
  88. const id = row.id
  89. this.loading = true
  90. try {
  91. let res = await getTableDeatilsApi(this.configUrl.details,id)
  92. if(res.code == 200) {
  93. this.$set(this,'form',JSON.parse(JSON.stringify(res.data)))
  94. this.formStatus = 1
  95. }else {
  96. this.$message.error('获取详情失败!!!');
  97. this.formStatus = 2
  98. this.loading = false
  99. this.open = false;
  100. }
  101. this.loading = false
  102. } catch (error) {
  103. console.error('获取详情失败!!!!',error)
  104. this.formStatus = 2
  105. this.loading = false
  106. this.open = false;
  107. }
  108. },
  109. /**
  110. * 保存
  111. * @date 2023-11-22
  112. * @returns {any}
  113. */
  114. submitForm() {
  115. this.$refs["form"].validate(valid => {
  116. if (valid) {
  117. this.loading = true
  118. if (this.model != 'ADD') {
  119. updateTableApi(
  120. this.configUrl.edit,this.form).then(response => {
  121. this.$modal.msgSuccess("修改成功");
  122. this.loading = false
  123. this.open = false;
  124. this.$emit('refresh')
  125. }).catch(()=>{
  126. this.$message.error("修改失败!!!");
  127. this.loading = false
  128. })
  129. } else {
  130. addTableApi(this.configUrl.edit,this.form).then(response => {
  131. this.$modal.msgSuccess("新增成功");
  132. this.loading = false
  133. this.open = false;
  134. this.$emit('refresh')
  135. }).catch(()=>{
  136. this.$message.error("新增失败!!!");
  137. this.loading = false
  138. })
  139. }
  140. }
  141. });
  142. },
  143. /**
  144. * 重置
  145. * @date 2023-11-22
  146. * @returns {any}
  147. */
  148. reset() {
  149. if(this.$refs["form"]) {
  150. this.$refs["form"].clearValidate();
  151. }
  152. },
  153. /**
  154. * 关闭弹框
  155. * @date 2023-11-22
  156. * @returns {any}
  157. */
  158. cancel() {
  159. this.reset();
  160. this.open = false;
  161. },
  162. },
  163. };
  164. </script>
  165. <style lang="scss" scoped>
  166. .form-dialog-box {
  167. padding: 0 30px;
  168. padding: 0 30px;
  169. min-height: 50vh;
  170. max-height: 65vh;
  171. overflow-y: auto;
  172. .upload-btn {
  173. width: 100px;
  174. height: 100px;
  175. background-color: #fbfdff;
  176. border: dashed 1px #c0ccda;
  177. border-radius: 5px;
  178. i {
  179. font-size: 30px;
  180. margin-top: 20px;
  181. }
  182. &-text {
  183. margin-top: -10px;
  184. }
  185. }
  186. .avatar {
  187. cursor: pointer;
  188. }
  189. }
  190. .el-table{
  191. .upload-btn {
  192. width: 100px;
  193. height: 100px;
  194. background-color: #fbfdff;
  195. border: dashed 1px #c0ccda;
  196. border-radius: 5px;
  197. i {
  198. font-size: 30px;
  199. margin-top: 20px;
  200. }
  201. &-text {
  202. margin-top: -10px;
  203. }
  204. }
  205. .avatar {
  206. cursor: pointer;
  207. }
  208. }
  209. .area-container {
  210. min-height: 400px;
  211. }
  212. ::v-deep .area-wrap-city.el-cascader {
  213. line-height: normal;
  214. .el-input {
  215. cursor: pointer;
  216. width: 100% !important;
  217. height: 28px !important;
  218. .el-input__inner {
  219. display: none !important;
  220. }
  221. span.el-input__suffix {
  222. position: inherit !important;
  223. i.el-input__icon {
  224. line-height: inherit;
  225. margin-left: 5px;
  226. }
  227. }
  228. .el-input__wrapper {
  229. box-shadow: none;
  230. input {
  231. display: none;
  232. }
  233. }
  234. }
  235. .el-cascader__tags {
  236. display: none;
  237. }
  238. }
  239. .area-city-popper {
  240. .el-cascader-panel {
  241. .el-scrollbar.el-cascader-menu {
  242. .el-cascader-menu__wrap.el-scrollbar__wrap {
  243. height: 315px;
  244. }
  245. }
  246. }
  247. }
  248. </style>
  249. <style>
  250. .custom-class-box {
  251. z-index: 999999 !important;
  252. }
  253. </style>