attractionInfoIntroduce.vue 11 KB

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