footplate.vue 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. <template>
  2. <div class="index">
  3. <el-row>
  4. <el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
  5. <custom-form v-model="form" :fields="formFields" :rules="rules" @save="toSave" @draftSave="toDraftSave">
  6. <template #file>
  7. <custom-upload model="file" :list="form.file" :limit="3" listType="picture-card" url="/files/web/cxyy_footplate/upload" @change="onUpload"></custom-upload>
  8. </template>
  9. <template #is_use>
  10. <el-radio v-for="i in isUseList" :key="i.id" :label="i.value">{{ i.label }}</el-radio>
  11. </template>
  12. <template #industry>
  13. <el-option v-for="i in sectorList" :key="i.id" :label="i.title" :value="i.title"></el-option>
  14. </template>
  15. <template #area>
  16. <el-cascader v-model="form.area" :props="{ value: 'name', label: 'name' }" :options="cityList" style="width: 100%" />
  17. </template>
  18. <template #tags>
  19. <el-select v-model="form.tags" multiple filterable allow-create default-first-option :reserve-keyword="false" placeholder="请选择标签" style="width: 100%">
  20. <el-option v-for="item in tagsList" :key="item.id" :label="item.title" :value="item.title" />
  21. </el-select>
  22. </template>
  23. </custom-form>
  24. </el-col>
  25. </el-row>
  26. </div>
  27. </template>
  28. <script setup>
  29. import { cloneDeep, get } from 'lodash-es'
  30. const $checkRes = inject('$checkRes')
  31. import { UserStore } from '@/store/user'
  32. const userStore = UserStore()
  33. const user = computed(() => userStore.user)
  34. // 接口
  35. import { FootplateStore } from '@/store/api/platform/footplate'
  36. import { DictDataStore } from '@/store/api/system/dictData'
  37. import { TagsStore } from '@/store/api/system/tags'
  38. import { SectorStore } from '@/store/api/platform/sector'
  39. import { RegionStore } from '@/store/api/system/region'
  40. const regionStore = RegionStore()
  41. const store = FootplateStore()
  42. const dictDataStore = DictDataStore()
  43. const tagsStore = TagsStore()
  44. const sectorStore = SectorStore()
  45. // 加载中
  46. const loading = ref(false)
  47. // 字典表
  48. const isUseList = ref([])
  49. const statusList = ref([])
  50. const cityList = ref([])
  51. const tagsList = ref([])
  52. const sectorList = ref([])
  53. const form = ref({ file: [] })
  54. const formFields = ref([
  55. { label: '封面', model: 'file', custom: true },
  56. { label: '名称', model: 'name' },
  57. { label: '标签', model: 'tags', custom: true },
  58. { label: '所属产业', model: 'industry', type: 'select' },
  59. { label: '建设主体', model: 'build' },
  60. { label: '运营主体', model: 'operate' },
  61. { label: '服务产业领域', model: 'field' },
  62. { label: '所在地区', model: 'area', custom: true },
  63. { label: '地址', model: 'address', type: 'textarea' },
  64. { label: '联系人', model: 'contacts' },
  65. { label: '联系电话', model: 'phone' },
  66. { label: '是否启用', model: 'is_use', type: 'radio' },
  67. { label: '简介', model: 'brief', type: 'textarea' }
  68. ])
  69. const rules = reactive({ name: [{ required: true, message: '请输入平台名称', trigger: 'blur' }] })
  70. // 请求
  71. onMounted(async () => {
  72. loading.value = true
  73. await searchOther()
  74. loading.value = false
  75. })
  76. const searchOther = async () => {
  77. let result
  78. // 是否使用
  79. result = await dictDataStore.query({ code: 'isUse', is_use: '0' })
  80. if ($checkRes(result)) isUseList.value = result.data
  81. // 状态
  82. result = await dictDataStore.query({ code: 'examStatus', is_use: '0' })
  83. if ($checkRes(result)) statusList.value = result.data
  84. // 标签
  85. result = await tagsStore.query({ is_use: '0' })
  86. if ($checkRes(result)) tagsList.value = result.data
  87. // 行业
  88. result = await sectorStore.query({ is_use: '0' })
  89. if ($checkRes(result)) sectorList.value = result.data
  90. // 城市
  91. result = await regionStore.area({ level: 'province', code: 22 })
  92. if ($checkRes(result)) cityList.value = result.data
  93. }
  94. const toSave = async () => {
  95. const data = cloneDeep(form.value)
  96. const other = { status: '0', user: user.value.id }
  97. let res
  98. if (get(data, 'id')) res = await store.update({ ...data, ...other })
  99. else res = await store.create({ ...data, ...other })
  100. if ($checkRes(res, true)) {
  101. ElMessage({ message: `发布成功可以上历史发布查看`, type: 'success' })
  102. form.value = {}
  103. }
  104. }
  105. const toDraftSave = async () => {
  106. const data = cloneDeep(form.value)
  107. const other = { status: '-2', user: user.value.id }
  108. let res
  109. if (get(data, 'id')) res = await store.update({ ...data, ...other })
  110. else res = await store.create({ ...data, ...other })
  111. if ($checkRes(res, true)) {
  112. ElMessage({ message: `发布成功可以上历史发布查看`, type: 'success' })
  113. form.value = {}
  114. }
  115. }
  116. // 上传图片
  117. const onUpload = (e) => {
  118. const { model, value } = e
  119. form.value[model] = value
  120. }
  121. </script>
  122. <style scoped lang="scss">
  123. .main {
  124. .one {
  125. height: 50px;
  126. display: flex;
  127. justify-content: space-between;
  128. align-items: center;
  129. margin: 0 0 10px 0;
  130. .one_left {
  131. background: #1875df;
  132. padding: 0 10px;
  133. height: 30px;
  134. color: #fff;
  135. line-height: 30px;
  136. text-align: center;
  137. font-size: 16px;
  138. cursor: default;
  139. }
  140. }
  141. .thr {
  142. display: flex;
  143. justify-content: center;
  144. margin: 20px 0 0 0;
  145. }
  146. }
  147. </style>