eventNotifications.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. <template>
  2. <div class="app-container">
  3. <el-row :gutter="20">
  4. <!--用户数据-->
  5. <el-col :span="24" :xs="24">
  6. <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
  7. <el-form-item label="公告标题" prop="noticeTitle">
  8. <el-input
  9. v-model="queryParams.noticeTitle"
  10. placeholder="请输入公告标题"
  11. clearable
  12. style="width: 240px"
  13. @keyup.enter.native="handleQuery"
  14. />
  15. </el-form-item>
  16. <el-form-item label="操作人员" prop="createBy">
  17. <el-input
  18. v-model="queryParams.createBy"
  19. placeholder="请输入操作人员"
  20. clearable
  21. style="width: 240px"
  22. @keyup.enter.native="handleQuery"
  23. />
  24. </el-form-item>
  25. <el-form-item label="公告类型" prop="noticeType">
  26. <el-select v-model="queryParams.noticeType" placeholder="请选择公告类型">
  27. <el-option
  28. v-for="dict in dict.type.tourism_notice_type"
  29. :key="dict.value"
  30. :label="dict.label"
  31. :value="dict.value">
  32. </el-option>
  33. </el-select>
  34. </el-form-item>
  35. <el-form-item>
  36. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  37. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  38. </el-form-item>
  39. </el-form>
  40. <el-row :gutter="10" class="mb8">
  41. <el-col :span="1.5">
  42. <el-button
  43. type="primary"
  44. plain
  45. icon="el-icon-plus"
  46. size="mini"
  47. @click="handleAdd"
  48. v-hasPermi="configPermi.add"
  49. >新增</el-button>
  50. </el-col>
  51. <el-col :span="1.5">
  52. <el-button
  53. type="danger"
  54. plain
  55. icon="el-icon-delete"
  56. size="mini"
  57. :disabled="multiple"
  58. @click="handleDelete"
  59. v-hasPermi="configPermi.delect"
  60. >删除</el-button>
  61. </el-col>
  62. <el-col :span="1.5" v-if="false">
  63. <el-button
  64. type="info"
  65. plain
  66. icon="el-icon-upload2"
  67. size="mini"
  68. @click="handleImport"
  69. v-hasPermi="configPermi.upload"
  70. >导入</el-button>
  71. </el-col>
  72. <el-col :span="1.5" v-if="false">
  73. <el-button
  74. type="warning"
  75. plain
  76. icon="el-icon-download"
  77. size="mini"
  78. @click="handleExport"
  79. v-hasPermi="configPermi.export"
  80. >导出</el-button>
  81. </el-col>
  82. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
  83. </el-row>
  84. <el-table v-loading="loading" :data="tableList" @selection-change="handleSelectionChange">
  85. <el-table-column type="selection" width="50" align="center" />
  86. <el-table-column type="index" label="序号" align="center" />
  87. <el-table-column label="公告标题" align="center" key="noticeTitle" prop="noticeTitle" v-if="columns[0].visible" />
  88. <el-table-column label="公告类型" align="center" key="noticeType" prop="noticeType" v-if="columns[1].visible" :show-overflow-tooltip="true">
  89. <template slot-scope="scope">
  90. <dict-tag :options="dict.type.tourism_notice_type" :value="scope.row.noticeType"/>
  91. </template>
  92. </el-table-column>
  93. <el-table-column label="状态" align="center" key="status" v-if="columns[2].visible">
  94. <template slot-scope="scope">
  95. <dict-tag :options="dict.type.tourism_notice_status" :value="scope.row.status"/>
  96. </template>
  97. </el-table-column>
  98. <el-table-column label="创建者" align="center" key="createBy" prop="createBy" v-if="columns[3].visible" width="120" />
  99. <el-table-column label="创建时间" align="center" key="createTime" prop="createTime" v-if="columns[4].visible" width="120" />
  100. <el-table-column
  101. label="操作"
  102. align="center"
  103. width="160"
  104. class-name="small-padding fixed-width"
  105. >
  106. <template slot-scope="scope" v-if="scope.row.id !== 1">
  107. <el-button
  108. v-if="false"
  109. size="mini"
  110. type="text"
  111. icon="el-icon-document"
  112. @click="handleDetails(scope.row)"
  113. v-hasPermi="configPermi.details"
  114. >详情</el-button>
  115. <el-button
  116. size="mini"
  117. type="text"
  118. icon="el-icon-edit"
  119. @click="handleUpdate(scope.row)"
  120. v-hasPermi="configPermi.edit"
  121. >修改</el-button>
  122. <el-button
  123. size="mini"
  124. type="text"
  125. icon="el-icon-delete"
  126. @click="handleDelete(scope.row)"
  127. v-hasPermi="configPermi.delect"
  128. >删除</el-button>
  129. </template>
  130. </el-table-column>
  131. </el-table>
  132. <pagination
  133. v-show="total>0"
  134. :total="total"
  135. :page.sync="queryParams.pageNum"
  136. :limit.sync="queryParams.pageSize"
  137. @pagination="getList"
  138. />
  139. </el-col>
  140. </el-row>
  141. <!-- 导入 -->
  142. <!-- <uploadBox ref="upload" @refresh="handleQuery" /> -->
  143. <!-- 新增或修改 -->
  144. <addAndEdit ref="addAndEdit" @refresh="getList" />
  145. <!-- 详情 -->
  146. <detailsBox ref="detailsBox" @refresh="getList" />
  147. </div>
  148. </template>
  149. <script>
  150. import {
  151. listTableApi,
  152. delTableApi,
  153. } from "@/api/CURD";
  154. import addAndEdit from "./formBox/eventNotificationsForm.vue"
  155. import detailsBox from "./detailsBox/navigationManagementDetails.vue"
  156. export default {
  157. name: "User",
  158. dicts: ['tourism_notice_type','tourism_notice_status'],
  159. components: {addAndEdit,detailsBox},
  160. data() {
  161. return {
  162. title: "活动通知",// 通用标题
  163. configPermi: {
  164. add: ['system:user:edit'], // 新增权限
  165. details: ['system:user:details'], // 详情权限
  166. delect: ['system:user:remove'], // 删除权限
  167. edit: ['system:user:edit'], // 编辑权限
  168. upload: ['system:user:upload'],// 导入权限
  169. export: ['system:user:export'],// 导出权限
  170. },
  171. configUrl: {
  172. list: '/merchant/notice/pageList', // 列表地址
  173. delect: '/merchant/notice/', // 删除地址
  174. upload: '',// 导入地址
  175. download:'', // 下载模板地址
  176. export: '',// 导出地址
  177. },
  178. // 遮罩层
  179. loading: true,
  180. // 选中数组
  181. ids: [],
  182. // 非单个禁用
  183. single: true,
  184. // 非多个禁用
  185. multiple: true,
  186. // 显示搜索条件
  187. showSearch: true,
  188. // 总条数
  189. total: 0,
  190. // 用户表格数据
  191. tableList: null,
  192. // 查询参数
  193. queryParams: {
  194. pageNum: 1,
  195. pageSize: 10,
  196. },
  197. dateRange: [],
  198. // 控制列表是否显示
  199. columns: [
  200. { key: 0, label: `公告标题`, visible: true },
  201. // { key: 1, label: `归属景区`, visible: true },
  202. { key: 2, label: `公告类型`, visible: true },
  203. { key: 3, label: `状态`, visible: true },
  204. { key: 4, label: `创建者`, visible: true },
  205. { key: 5, label: `创建时间`, visible: true },
  206. ],
  207. };
  208. },
  209. created() {
  210. this.getList();
  211. },
  212. methods: {
  213. /** 查询用户列表 */
  214. getList() {
  215. this.loading = true;
  216. listTableApi(
  217. this.configUrl.list,
  218. this.addDateRange(
  219. this.queryParams,
  220. this.dateRange)).then(response => {
  221. this.tableList = response.data.rows;
  222. this.total = response.data.total;
  223. this.loading = false;
  224. }
  225. ).catch (error=>{
  226. console.error('获取列表失败!!!!',error)
  227. this.tableList = [];
  228. this.total = 0;
  229. this.loading = false
  230. })
  231. },
  232. /** 搜索按钮操作 */
  233. handleQuery() {
  234. this.queryParams.pageNum = 1;
  235. this.getList();
  236. },
  237. /** 重置按钮操作 */
  238. resetQuery() {
  239. this.dateRange = [];
  240. this.queryParams = {
  241. pageNum: 1,
  242. pageSize: 10,
  243. }
  244. this.handleQuery();
  245. },
  246. // 多选框选中数据
  247. handleSelectionChange(selection) {
  248. this.ids = selection.map(item => item.id);
  249. this.single = selection.length != 1;
  250. this.multiple = !selection.length;
  251. },
  252. /** 新增按钮操作 */
  253. handleAdd() {
  254. if(this.$refs.addAndEdit) {
  255. this.$refs.addAndEdit.initData(this.title + '新增', "ADD",{})
  256. }
  257. },
  258. /** 修改按钮操作 */
  259. handleUpdate(row) {
  260. if(this.$refs.addAndEdit) {
  261. this.$refs.addAndEdit.initData(this.title + '编辑', "EDITInit",{...row})
  262. }
  263. },
  264. handleDetails(row){
  265. if(this.$refs.detailsBox) {
  266. this.$refs.detailsBox.initData(this.title + '详情',"DEATILSInit", row)
  267. }
  268. },
  269. /** 删除按钮操作 */
  270. handleDelete(row) {
  271. const ids = row.id || this.ids;
  272. this.$modal.confirm('是否确认删除用户编号为"' + ids + '"的数据项?').then( () => {
  273. return delTableApi(this.configUrl.delect,ids);
  274. }).then(() => {
  275. this.getList();
  276. this.$modal.msgSuccess("删除成功");
  277. }).catch((e) => {
  278. console.error("删除失败====",e)
  279. });
  280. },
  281. /** 导出按钮操作 */
  282. handleExport() {
  283. this.download(this.configUrl.export, {
  284. ...this.queryParams
  285. }, `${this.title }_${new Date().getTime()}.xlsx`)
  286. },
  287. /** 导入按钮操作 */
  288. handleImport() {
  289. if(this.$refs.upload) {
  290. this.$refs.upload.initData({
  291. width: '400px',
  292. // 弹出层标题(用户导入)
  293. title: this.title + "导入",
  294. // 下载模板地址
  295. importTemplate: this.configUrl.download,
  296. // 上传的地址
  297. url: this.configUrl.upload
  298. })
  299. }
  300. },
  301. }
  302. };
  303. </script>