index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326
  1. <template>
  2. <div class="__normal-page">
  3. <div class="__normal-content">
  4. <CusContent
  5. v-model:tableHead="tableHead"
  6. @handleReset="handleReset"
  7. @handleSearch="onSearch"
  8. >
  9. <template #fieldOut>
  10. <CusForm labelWidth="100px" @handleEnter="onSearch">
  11. <CusFormColumn
  12. label="标题:"
  13. v-model:param="queryForm.title"/>
  14. <CusFormColumn
  15. label="发布单位:"
  16. link="select"
  17. v-model:param="queryForm.deptId"
  18. :options="$store.state.dictionary.deptList"/>
  19. <CusFormColumn
  20. label="发布人:"
  21. v-model:param="queryForm.publisher"/>
  22. <CusFormColumn
  23. label="发布时间:"
  24. link="datetime"
  25. type="datetimerange"
  26. v-model:param="queryForm.publishDate"/>
  27. <CusFormColumn
  28. label="类型:"
  29. link="select"
  30. v-model:param="queryForm.type"
  31. :options="$store.state.dictionary.noticeTypeList"/>
  32. <CusFormColumn
  33. label="状态:"
  34. link="select"
  35. v-model:param="queryForm.status"
  36. :options="$store.state.dictionary.noticeStatusList"/>
  37. <CusSearchButtons
  38. @handleReset="handleReset"
  39. @handleSearch="onSearch"
  40. />
  41. </CusForm>
  42. </template>
  43. <template #buttons>
  44. <div class="__cus-button_submit __hover" @click="onAdd">
  45. <SvgIcon name="add" size="16"/>新增
  46. </div>
  47. </template>
  48. <template #table>
  49. <CusTable
  50. v-loading="loading"
  51. ref="ref_cusTable"
  52. :tableData="queryResult.tableData"
  53. :tableHead="tableHead"
  54. :total="queryResult.total"
  55. :page="queryPage.pageNum"
  56. :pageSize="queryPage.pageSize"
  57. @handlePage="handlePage"
  58. >
  59. <template #title-column-value="{ scope }">
  60. <template v-if="scope.row.status === '1'">
  61. <el-link class="__cus-table_column-view" @click="onView(scope.row)">{{scope.row.title}}</el-link>
  62. </template>
  63. <template v-else>{{scope.row.title}}</template>
  64. </template>
  65. <template #publishTime-column-value="{ scope }">
  66. {{scope.row.publishTime ? $util.YMDHms(scope.row.publishTime) : scope.row.publishTime}}
  67. </template>
  68. <template #type-column-value="{ scope }">
  69. {{$store.state.dictionary.noticeTypeMap.get(scope.row.type) || scope.row.type}}
  70. </template>
  71. <template #status-column-value="{ scope }">
  72. {{$store.state.dictionary.noticeStatusMap.get(scope.row.status) || scope.row.status}}
  73. </template>
  74. <template #do-column-value="{ scope }">
  75. <div class="__cus-table_do">
  76. <div class="__cus-table_do-green __hover" @click="onView(scope.row)" v-if="scope.row.status === '1'">
  77. <SvgIcon name="view" size="16"/>查看
  78. </div>
  79. <div class="__cus-table_do-blue __hover" @click="onEdit(scope.row)" v-if="scope.row.status === '2'">
  80. <SvgIcon name="edit" size="16"/>编辑
  81. </div>
  82. <div class="__cus-table_do-green __hover" @click="onPublish(scope.row)" v-if="scope.row.status === '2'">
  83. <SvgIcon name="publish" size="16"/>发布
  84. </div>
  85. <div class="__cus-table_do-blue __hover" @click="onRevoke(scope.row)" v-if="scope.row.status === '1'">
  86. <SvgIcon name="back" size="16"/>撤回
  87. </div>
  88. <div class="__cus-table_do-red __hover" @click="onDel(scope.row)" v-if="scope.row.status === '2'">
  89. <SvgIcon name="del" size="16"/>删除
  90. </div>
  91. </div>
  92. </template>
  93. </CusTable>
  94. </template>
  95. </CusContent>
  96. </div>
  97. <DetailCom v-model:show="showDetail" :transfer="transfer" @refresh="refreshSearch"/>
  98. </div>
  99. </template>
  100. <script lang="ts">
  101. import {
  102. defineComponent,
  103. computed,
  104. onMounted,
  105. ref,
  106. reactive,
  107. watch,
  108. getCurrentInstance,
  109. ComponentInternalInstance,
  110. toRefs,
  111. nextTick
  112. } from 'vue'
  113. import {useStore} from 'vuex'
  114. import {useRouter, useRoute} from 'vue-router'
  115. import DetailCom from './detail.vue'
  116. import {ElMessage, ElMessageBox} from 'element-plus';
  117. export default defineComponent({
  118. name: '',
  119. components: {
  120. DetailCom
  121. },
  122. setup(props, {emit}) {
  123. const store = useStore();
  124. const router = useRouter();
  125. const route = useRoute();
  126. const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
  127. const state = reactive({
  128. // 加载中
  129. loading: false,
  130. // 查询分页参数
  131. queryPage: {
  132. pageNum: 1,
  133. pageSize: 10
  134. },
  135. // 查询结果
  136. queryResult: {
  137. total: 0,
  138. tableData: []
  139. },
  140. // 查询表单参数
  141. queryForm: <any>{},
  142. // 查询表单参数备份
  143. back_queryForm: {},
  144. // 表格表头
  145. tableHead: [
  146. {value: "title", label: "标题", show: true},
  147. {value: "deptName", label: "发布单位", show: true},
  148. {value: "publisher", label: "发布人", show: true},
  149. {value: "publishTime", label: "发布时间", show: true, width: 180},
  150. {value: "type", label: "类型", show: true},
  151. {value: "status", label: "状态", show: true},
  152. {value: "do", label: "操作", show: true, popover: true, width: 260},
  153. ],
  154. showDetail: false,
  155. transfer: {}
  156. });
  157. const ref_cusTable = ref()
  158. // 获取字典
  159. const initDictionary = () => {
  160. store.dispatch('dictionary/LOAD_DEPT')
  161. store.dispatch('dictionary/LOAD_DICT_LIST', 'notice_type')
  162. store.dispatch('dictionary/LOAD_DICT_LIST', 'notice_status')
  163. }
  164. // 查询分页参数改变处理方法
  165. const handlePage = ({page, pageSize}: any) => {
  166. state.queryPage.pageNum = page
  167. state.queryPage.pageSize = pageSize
  168. handleSearch(page, pageSize)
  169. }
  170. // 列表刷新方法
  171. const refreshSearch = () => {
  172. state.queryPage.pageNum = 1
  173. handleSearch(state.queryPage.pageNum, state.queryPage.pageSize)
  174. }
  175. // 重置查询表单方法
  176. const handleReset = () => {
  177. state.queryForm = {}
  178. state.back_queryForm = JSON.parse(JSON.stringify(state.queryForm))
  179. refreshSearch()
  180. }
  181. // 查询方法
  182. const handleSearch = (page = 1, pageSize = 10) => {
  183. // 添加分页参数
  184. const queryParams: any = {
  185. pageNum: page,
  186. pageSize: pageSize,
  187. }
  188. // 添加表单参数
  189. for (const [k, v] of Object.entries(state.back_queryForm)) {
  190. if (that.$util.isValue(v)) {
  191. if (k === 'publishDate') {
  192. queryParams['beginTime'] = v[0]
  193. queryParams['endTime'] = v[1]
  194. } else {
  195. queryParams[k] = v
  196. }
  197. }
  198. }
  199. state.loading = true
  200. that.$api.getNoticeList(queryParams).then((res: any) => {
  201. if (res.code === 200) {
  202. state.queryResult.tableData = res.rows
  203. state.queryResult.total = res.total
  204. } else {
  205. ElMessage.error(res.message)
  206. }
  207. state.loading = false
  208. }).catch(() => {
  209. state.loading = false
  210. })
  211. }
  212. // 点击查询按钮后
  213. const onSearch = () => {
  214. ref_cusTable.value.resetFilter()
  215. state.back_queryForm = JSON.parse(JSON.stringify(state.queryForm))
  216. refreshSearch()
  217. }
  218. const onAdd = () => {
  219. state.transfer = {
  220. method: 'add',
  221. }
  222. state.showDetail = true
  223. }
  224. const onEdit = (val) => {
  225. state.transfer = {
  226. method: 'edit',
  227. detail: val
  228. }
  229. state.showDetail = true
  230. }
  231. const onView = (val) => {
  232. state.transfer = {
  233. method: 'view',
  234. detail: val
  235. }
  236. state.showDetail = true
  237. }
  238. const onDel = (val) => {
  239. ElMessageBox.confirm(`是否删除${val.title}?`, "提示", {
  240. confirmButtonText: "确定",
  241. cancelButtonText: "取消",
  242. type: "warning",
  243. }).then(() => {
  244. state.loading = true
  245. that.$api.delNoticeDelete({id: val.id}).then(res => {
  246. if (res.code === 200) {
  247. ElMessage.success(res.message)
  248. refreshSearch()
  249. } else {
  250. ElMessage.error(res.message)
  251. state.loading = false
  252. }
  253. }).catch(() => {
  254. state.loading = false
  255. })
  256. }).catch(() => {})
  257. }
  258. const onPublish = (val) => {
  259. ElMessageBox.confirm(`是否发布${val.title}?`, "提示", {
  260. confirmButtonText: "确定",
  261. cancelButtonText: "取消",
  262. type: "warning",
  263. }).then(() => {
  264. state.loading = true
  265. that.$api.getNoticePublish({id: val.id}).then(res => {
  266. if (res.code === 200) {
  267. ElMessage.success('发布成功!')
  268. refreshSearch()
  269. } else {
  270. ElMessage.error(res.message)
  271. state.loading = false
  272. }
  273. }).catch(() => {
  274. state.loading = false
  275. })
  276. }).catch(() => {})
  277. }
  278. const onRevoke = (val) => {
  279. ElMessageBox.confirm(`是否撤回${val.title}?`, "提示", {
  280. confirmButtonText: "确定",
  281. cancelButtonText: "取消",
  282. type: "warning",
  283. }).then(() => {
  284. state.loading = true
  285. that.$api.getNoticeRevoke({id: val.id}).then(res => {
  286. if (res.code === 200) {
  287. ElMessage.success('撤回成功!')
  288. refreshSearch()
  289. } else {
  290. ElMessage.error(res.message)
  291. state.loading = false
  292. }
  293. }).catch(() => {
  294. state.loading = false
  295. })
  296. }).catch(() => {})
  297. }
  298. onMounted(() => {
  299. state.back_queryForm = JSON.parse(JSON.stringify(state.queryForm))
  300. initDictionary()
  301. refreshSearch()
  302. })
  303. return {
  304. ref_cusTable,
  305. ...toRefs(state),
  306. handleSearch,
  307. handlePage,
  308. handleReset,
  309. onSearch,
  310. onAdd,
  311. onEdit,
  312. onView,
  313. onDel,
  314. onRevoke,
  315. onPublish,
  316. refreshSearch
  317. }
  318. },
  319. })
  320. </script>
  321. <style scoped lang="scss">
  322. </style>