journal.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <template>
  2. <div class="index">
  3. <el-row>
  4. <el-col :span="24" class="main" v-loading="loading">
  5. <el-col :span="24" class="one">
  6. <div class="one_left" @click="toAdd">发布行研产研</div>
  7. <div class="one_right">
  8. <el-input v-model="searchForm.name" style="width: 250px" size="large" placeholder="搜索" @change="search" :suffix-icon="Search" />
  9. </div>
  10. </el-col>
  11. <el-col :span="24" class="two">
  12. <el-table :data="list" style="width: 100%" size="large" :header-cell-style="{ backgroundColor: '#edf3ff' }">
  13. <template #empty>
  14. <el-empty description="暂无数据" />
  15. </template>
  16. <el-table-column prop="name" align="center" label="行研产研名称" />
  17. <el-table-column prop="status" align="center" label="状态" width="180">
  18. <template #default="scope">
  19. <div>{{ getDict(scope.row.status, 'status') }}</div>
  20. </template>
  21. </el-table-column>
  22. <el-table-column align="center" label="操作" width="180">
  23. <template #default="{ row }">
  24. <el-link v-if="row.status == '-2'" :underline="false" type="warning" size="mini" @click="toExam(row)" style="margin-right: 10px">提交审核</el-link>
  25. <el-link :underline="false" type="primary" size="mini" @click="toEdit(row)" style="margin-right: 10px">修改</el-link>
  26. <el-link :underline="false" type="danger" size="mini" @click="toDelete(row)"> 删除 </el-link>
  27. </template>
  28. </el-table-column>
  29. </el-table>
  30. </el-col>
  31. <el-col :span="24" class="thr">
  32. <el-pagination background layout="prev, pager, next" :total="total" :page-size="limit" v-model:current-page="currentPage" @current-change="changePage" @size-change="sizeChange" />
  33. </el-col>
  34. </el-col>
  35. </el-row>
  36. <el-dialog v-model="dialog.show" :title="dialog.title" :destroy-on-close="false" @close="toClose">
  37. <el-row>
  38. <el-col :span="24" v-if="dialog.type == '1'">
  39. <custom-form v-model="form" :fields="formFields" :rules="rules" @save="toSave" @draftSave="toDraftSave">
  40. <template #file>
  41. <custom-upload model="file" :list="form.file" :limit="1" listType="picture-card" url="/files/web/cxyy_journal/upload" @change="onUpload"></custom-upload>
  42. </template>
  43. <template #is_use>
  44. <el-radio v-for="i in isUseList" :key="i.id" :label="i.value">{{ i.label }}</el-radio>
  45. </template>
  46. </custom-form>
  47. </el-col>
  48. </el-row>
  49. </el-dialog>
  50. </div>
  51. </template>
  52. <script setup>
  53. import { Search } from '@element-plus/icons-vue'
  54. import { cloneDeep, get } from 'lodash-es'
  55. const $checkRes = inject('$checkRes')
  56. import { UserStore } from '@/store/user'
  57. const userStore = UserStore()
  58. const user = computed(() => userStore.user)
  59. // 接口
  60. import { JournalStore } from '@/store/api/platform/journal'
  61. import { DictDataStore } from '@/store/api/system/dictData'
  62. const store = JournalStore()
  63. const dictDataStore = DictDataStore()
  64. // 加载中
  65. const loading = ref(false)
  66. const searchForm = ref({})
  67. // 列表
  68. const list = ref([])
  69. let skip = 0
  70. let limit = inject('limit')
  71. const total = ref(0)
  72. const currentPage = ref(1)
  73. // 字典表
  74. const isUseList = ref([])
  75. const statusList = ref([])
  76. const form = ref({ file: [] })
  77. const dialog = ref({ type: '1', show: false, title: '发布行研产研' })
  78. const formFields = ref([
  79. { label: '封面', model: 'file', custom: true },
  80. { label: '名称', model: 'name' },
  81. { label: '是否公开', model: 'is_use', type: 'radio' },
  82. { label: '简介', model: 'brief', type: 'textarea' }
  83. ])
  84. const rules = reactive({ name: [{ required: true, message: '请输入行研产研名称', trigger: 'blur' }] })
  85. // 请求
  86. onMounted(async () => {
  87. loading.value = true
  88. await searchOther()
  89. await search()
  90. loading.value = false
  91. })
  92. const search = async (query = { skip, limit }) => {
  93. skip = query.skip
  94. limit = query.limit
  95. const info = {
  96. skip: query.skip,
  97. limit: query.limit,
  98. user: user.value.id,
  99. ...searchForm.value
  100. }
  101. const res = await store.query(info)
  102. if (res.errcode == '0') {
  103. list.value = res.data
  104. total.value = res.total
  105. }
  106. }
  107. const searchOther = async () => {
  108. let result
  109. // 是否使用
  110. result = await dictDataStore.query({ code: 'isUse', is_use: '0' })
  111. if ($checkRes(result)) isUseList.value = result.data
  112. // 状态
  113. result = await dictDataStore.query({ code: 'examStatus', is_use: '0' })
  114. if ($checkRes(result)) statusList.value = result.data
  115. }
  116. // 字典数据转换
  117. const getDict = (data, model) => {
  118. if (data) {
  119. let res
  120. if (model == 'status') res = statusList.value.find((f) => f.value == data)
  121. return get(res, 'label')
  122. }
  123. }
  124. // 添加
  125. const toAdd = () => {
  126. dialog.value = { type: '1', show: true, title: '发布行研产研' }
  127. }
  128. // 修改
  129. const toEdit = (data) => {
  130. data.time = [data.start_time, data.end_time]
  131. form.value = data
  132. dialog.value = { type: '1', show: true, title: '修改行研产研' }
  133. }
  134. // 删除
  135. const toDelete = (data) => {
  136. ElMessageBox.confirm(`您确认删除${data.name}该数据?`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' })
  137. .then(async () => {
  138. const res = await store.del(data.id)
  139. if ($checkRes(res, true)) {
  140. search({ skip, limit })
  141. }
  142. })
  143. .catch(() => {})
  144. }
  145. const toSave = async () => {
  146. const data = cloneDeep(form.value)
  147. const other = { status: '0', user: user.value.id }
  148. let res
  149. if (get(data, 'id')) res = await store.update({ ...data, ...other })
  150. else res = await store.create({ ...data, ...other })
  151. if ($checkRes(res, true)) {
  152. search({ skip, limit })
  153. toClose()
  154. }
  155. }
  156. const toDraftSave = async () => {
  157. const data = cloneDeep(form.value)
  158. const other = { status: '-2', user: user.value.id }
  159. let res
  160. if (get(data, 'id')) res = await store.update({ ...data, ...other })
  161. else res = await store.create({ ...data, ...other })
  162. if ($checkRes(res, true)) {
  163. search({ skip, limit })
  164. toClose()
  165. }
  166. }
  167. // 审核保存
  168. const toExam = async (row) => {
  169. ElMessageBox.confirm(`您确认保存并提交审核该数据?`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' })
  170. .then(async () => {
  171. const data = cloneDeep(row)
  172. let res = await store.update({ id: data.id, status: '0', user: user.value.id })
  173. if ($checkRes(res, true)) {
  174. search({ skip, limit })
  175. toClose()
  176. }
  177. })
  178. .catch(() => {})
  179. }
  180. const toClose = () => {
  181. form.value = { file: [] }
  182. dialog.value = { show: false }
  183. }
  184. // 上传图片
  185. const onUpload = (e) => {
  186. const { model, value } = e
  187. form.value[model] = value
  188. }
  189. // 分页
  190. const changePage = (page = currentPage.value) => {
  191. search({ skip: (page - 1) * limit, limit: limit })
  192. }
  193. const sizeChange = (limits) => {
  194. limit = limits
  195. currentPage.value = 1
  196. search({ skip: 0, limit: limit })
  197. }
  198. </script>
  199. <style scoped lang="scss">
  200. .main {
  201. .one {
  202. height: 50px;
  203. display: flex;
  204. justify-content: space-between;
  205. align-items: center;
  206. margin: 0 0 10px 0;
  207. .one_left {
  208. background: #1875df;
  209. padding: 0 10px;
  210. height: 30px;
  211. color: #fff;
  212. line-height: 30px;
  213. text-align: center;
  214. font-size: 16px;
  215. cursor: default;
  216. }
  217. }
  218. .thr {
  219. display: flex;
  220. justify-content: center;
  221. margin: 20px 0 0 0;
  222. }
  223. }
  224. </style>