index.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch">
  4. <el-form-item label="标题" prop="title">
  5. <el-input v-model="queryParams.title" placeholder="请输入标题"></el-input>
  6. </el-form-item>
  7. <el-form-item label="新闻状态" prop="status">
  8. <el-select v-model="queryParams.status" placeholder="请选择新闻状态" clearable filterable>
  9. <el-option v-for="status in statusOptionList" :key="status.value" :label="status.label" :value="status.value" />
  10. </el-select>
  11. </el-form-item>
  12. <el-form-item>
  13. <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
  14. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  15. </el-form-item>
  16. </el-form>
  17. <el-row :gutter="10" class="mb8">
  18. <el-col :span="1.5">
  19. <el-button type="primary" icon="el-icon-plus" @click="handleAdd" v-hasPermi="['business:COUNSELINGMESSAGE:add']">新增</el-button>
  20. </el-col>
  21. <!-- <el-col :span="1.5">-->
  22. <!-- <el-button type="warning" icon="el-icon-download" @click="handleExport" v-hasPermi="['business:COUNSELINGMESSAGE:export']">导出</el-button>-->
  23. <!-- </el-col>-->
  24. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
  25. </el-row>
  26. <!--列表-->
  27. <el-table :data="COUNSELINGMESSAGEList" @selection-change="handleSelectionChange" height="calc(100vh - 300px)">
  28. <el-table-column type="selection" width="55" align="center" />
  29. <el-table-column label="标题信息" align="center" prop="title" width="220px"/>
  30. <el-table-column label="创建时间" align="center" prop="createTime" >
  31. <template slot-scope="scope">
  32. <span>{{ parseTime(scope.row.createTime, '{y}-{m}-{d}') }}</span>
  33. </template>
  34. </el-table-column>
  35. <el-table-column label="更新时间" align="center" prop="updateTime" >
  36. <template slot-scope="scope">
  37. <span>{{ parseTime(scope.row.updateTime, '{y}-{m}-{d}') }}</span>
  38. </template>
  39. </el-table-column>
  40. <el-table-column label="审核日期" align="center" prop="auditTime" >
  41. <template slot-scope="scope">
  42. <span>{{ parseTime(scope.row.auditTime, '{y}-{m}-{d}') }}</span>
  43. </template>
  44. </el-table-column>
  45. <el-table-column label="信息状态" align="center" prop="status">
  46. <template slot-scope="scope">
  47. <span v-if="scope.row.status == 0"><el-tag type="info">草稿</el-tag></span>
  48. <span v-if="scope.row.status == 1"><el-tag type="warning">审核中</el-tag></span>
  49. <span v-if="scope.row.status == 2"><el-tag type="danger">审核驳回</el-tag></span>
  50. <span v-if="scope.row.status == 3"><el-tag type="success">已审核</el-tag></span>
  51. <span v-if="scope.row.status == 4"><el-tag type="success">已上报</el-tag></span>
  52. <span v-if="scope.row.status == 5"><el-tag>已发布</el-tag></span>
  53. <span v-if="scope.row.status == 6"><el-tag type="info">已下架</el-tag></span>
  54. </template>
  55. </el-table-column>
  56. <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
  57. <template slot-scope="scope">
  58. <el-button v-if="scope.row.status == 5" size="mini" type="text" @click="handleDownOrUp(scope.row)">下架</el-button>
  59. <el-button v-if="scope.row.status == 0 || scope.row.status == 2" size="mini" type="text" @click="handleCommit(scope.row)">提交审核</el-button>
  60. <el-button v-if="scope.row.status == 3" size="mini" type="text" @click="handleDownOrUp(scope.row)">上报</el-button>
  61. <el-button v-if="scope.row.status == 6 || scope.row.status == 4" size="mini" type="text" @click="handleDownOrUp(scope.row)">发布</el-button>
  62. <el-button v-if="scope.row.status == 0 || scope.row.status == 2 || scope.row.status == 3 || scope.row.status == 4 || scope.row.status == 5 || scope.row.status == 6" size="mini" type="text" @click="handleUpdate(scope.row)">修改</el-button>
  63. </template>
  64. </el-table-column>
  65. </el-table>
  66. <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
  67. <!-- 添加或修改咨询信息对话框 -->
  68. <!-- <el-dialog :title="title" :visible.sync="open" width="800px" append-to-body >-->
  69. <!-- -->
  70. <!-- </el-dialog>-->
  71. </div>
  72. </template>
  73. <script>
  74. import { listCOUNSELINGMESSAGE, getCOUNSELINGMESSAGE, delCOUNSELINGMESSAGE, addCOUNSELINGMESSAGE, updateCOUNSELINGMESSAGE, upload, newCommit } from '@/api/portal/COUNSELINGMESSAGE/COUNSELINGMESSAGE';
  75. import edit from './edit.vue'
  76. export default {
  77. name: 'COUNSELINGMESSAGE',
  78. data() {
  79. return {
  80. //预览
  81. dialogVisible: false,
  82. statusOptionList: [
  83. { label: '草稿', value: 0 },
  84. { label: '审核中', value: 1 },
  85. { label: '审核驳回', value: 2 },
  86. { label: '已审核', value: 3 },
  87. { label: '已上报', value: 4 },
  88. { label: '已发布', value: 5 },
  89. { label: '已下架', value: 6 },
  90. ],
  91. // 根路径
  92. baseURL: process.env.VUE_APP_BASE_API,
  93. // 遮罩层
  94. loading: true,
  95. // 选中数组
  96. ids: [],
  97. // 非单个禁用
  98. single: true,
  99. // 非多个禁用
  100. multiple: true,
  101. // 显示搜索条件
  102. showSearch: true,
  103. // 总条数
  104. total: 0,
  105. // 咨询信息表格数据
  106. COUNSELINGMESSAGEList: [],
  107. // 弹出层标题
  108. title: '',
  109. // 是否显示弹出层
  110. open: false,
  111. // 查询参数
  112. queryParams: {
  113. pageNum: 1,
  114. pageSize: 10,
  115. id: null,
  116. createTime: null,
  117. createBy: null,
  118. updateTime: null,
  119. updateBy: null,
  120. delFlag: null,
  121. deptId: null,
  122. title: null,
  123. content: null,
  124. fileUrl: null,
  125. picture: null,
  126. status: null,
  127. auditTime: null,
  128. reportDate: null,
  129. releaseDate: null
  130. },
  131. };
  132. },
  133. created() {
  134. this.getList();
  135. },
  136. methods: {
  137. /** 查询咨询信息列表 */
  138. getList() {
  139. this.loading = true;
  140. listCOUNSELINGMESSAGE(this.queryParams).then(response => {
  141. this.COUNSELINGMESSAGEList = response.rows;
  142. this.total = response.total;
  143. this.loading = false;
  144. });
  145. },
  146. /** 发布 */
  147. handleDownOrUp(row) {
  148. //修改发布、下架状态
  149. if (row.status == '5') {
  150. //已发布 已审核
  151. row.status = '6';
  152. updateCOUNSELINGMESSAGE(row).then(response => {
  153. this.$modal.msgSuccess('下架成功');
  154. this.open = false;
  155. this.getList();
  156. });
  157. } else if (row.status == '4'|| row.status == '6') {
  158. //已下架
  159. row.status = '5';
  160. updateCOUNSELINGMESSAGE(row).then(response => {
  161. this.$modal.msgSuccess('发布成功');
  162. this.open = false;
  163. this.getList();
  164. });
  165. } else if (row.status == '3') {
  166. //已上报
  167. row.status = '4';
  168. updateCOUNSELINGMESSAGE(row).then(response => {
  169. this.$modal.msgSuccess('上报成功');
  170. this.open = false;
  171. this.getList();
  172. });
  173. }
  174. },
  175. /** 提交审核 */
  176. handleCommit(row) {
  177. let CbNewsVo = row;
  178. newCommit(CbNewsVo).then(response => {
  179. this.$modal.msgSuccess('提交审核成功!');
  180. this.getList();
  181. });
  182. },
  183. /** 搜索按钮操作 */
  184. handleQuery() {
  185. this.queryParams.pageNum = 1;
  186. this.getList();
  187. },
  188. /** 重置按钮操作 */
  189. resetQuery() {
  190. this.resetForm('queryForm');
  191. this.handleQuery();
  192. },
  193. // 多选框选中数据
  194. handleSelectionChange(selection) {
  195. this.ids = selection.map(item => item.id);
  196. this.single = selection.length !== 1;
  197. this.multiple = !selection.length;
  198. },
  199. /** 新增按钮操作 */
  200. handleAdd() {
  201. this.iframe({ obj: edit, param: {}, title: '添加资讯', width: '1050px', height: '750px' });
  202. // this.open = true;
  203. // this.title = '添加咨询信息';
  204. },
  205. /** 修改按钮操作 */
  206. handleUpdate(row) {
  207. const id = row.id || this.ids;
  208. this.iframe({ obj: edit, param: { id: id }, title: '修改资讯', width: '1050px', height: '750px' });
  209. },
  210. // /** 修改按钮操作 */
  211. // handleUpdate(row) {
  212. // const id = row.id || this.ids;
  213. // getCOUNSELINGMESSAGE(id).then(response => {
  214. // this.form = response.data;
  215. // this.open = true;
  216. // this.title = '修改咨询信息';
  217. // if (this.form.fileUrl != null){
  218. // this.fileList.push({ name: 'xxx', url: this.form.fileUrl });
  219. // }
  220. // });
  221. // },
  222. /** 删除按钮操作 */
  223. handleDelete(row) {
  224. const ids = row.id || this.ids;
  225. this.$modal
  226. .confirm('是否确认删除咨询信息编号为"' + ids + '"的数据项?')
  227. .then(function () {
  228. return delCOUNSELINGMESSAGE(ids);
  229. })
  230. .then(() => {
  231. this.getList();
  232. this.$modal.msgSuccess('删除成功');
  233. })
  234. .catch(() => {});
  235. },
  236. /** 导出按钮操作 */
  237. handleExport() {
  238. this.download(
  239. 'business/COUNSELINGMESSAGE/export',
  240. {
  241. ...this.queryParams
  242. },
  243. `COUNSELINGMESSAGE_${new Date().getTime()}.xlsx`
  244. );
  245. }
  246. }
  247. };
  248. </script>