attractionInfoIntroduce.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  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="title">
  8. <el-input
  9. v-model="queryParams.title"
  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">
  78. <template slot-scope="scope">
  79. <el-tooltip class="item" effect="dark" :content="scope.row.titleName" placement="top">
  80. <div style="width: 100%;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">
  81. <span style="width: 100%;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">{{ scope.row.titleName }}</span>
  82. </div>
  83. </el-tooltip>
  84. </template>
  85. </el-table-column>
  86. <el-table-column label="摘要" align="center" key="contentMain" prop="contentMain" v-if="columns[1].visible">
  87. <template slot-scope="scope">
  88. <el-tooltip class="item" effect="dark" :content="scope.row.contentMain" placement="top">
  89. <div style="width: 100%;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">
  90. <span style="width: 100%;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;">{{ scope.row.contentMain }}</span>
  91. </div>
  92. </el-tooltip>
  93. </template>
  94. </el-table-column>
  95. <el-table-column label="创建人" align="center" key="createBy" prop="createBy" v-if="columns[2].visible" />
  96. <el-table-column label="创建时间" align="center" key="createTime" prop="createTime" v-if="columns[3].visible" />
  97. <el-table-column label="状态" align="center" key="status" v-if="columns[4].visible">
  98. <template slot-scope="scope">
  99. <dict-tag :options="dict.type.tourism_attractionInfoIntroduce_status" :value="scope.row.status"/>
  100. </template>
  101. </el-table-column>
  102. <el-table-column
  103. label="操作"
  104. align="center"
  105. width="160"
  106. class-name="small-padding fixed-width"
  107. >
  108. <template slot-scope="scope" v-if="scope.row.id !== 1">
  109. <el-button
  110. size="mini"
  111. type="text"
  112. icon="el-icon-document"
  113. @click="handleRelease(scope.row)"
  114. v-hasPermi="configPermi.release"
  115. >{{ scope.row.status == 1 ? '启用' : '禁用' }}</el-button>
  116. <el-button
  117. size="mini"
  118. type="text"
  119. icon="el-icon-edit"
  120. @click="handleUpdate(scope.row)"
  121. v-hasPermi="configPermi.edit"
  122. >修改</el-button>
  123. <el-button
  124. v-if="scope.row.status == 1"
  125. size="mini"
  126. type="text"
  127. icon="el-icon-delete"
  128. @click="handleDelete(scope.row)"
  129. v-hasPermi="configPermi.delect"
  130. >删除</el-button>
  131. </template>
  132. </el-table-column>
  133. </el-table>
  134. <pagination
  135. v-show="total>0"
  136. :total="total"
  137. :page.sync="queryParams.pageNum"
  138. :limit.sync="queryParams.pageSize"
  139. @pagination="getList"
  140. />
  141. </el-col>
  142. </el-row>
  143. <!-- 导入 -->
  144. <!-- <uploadBox ref="upload" @refresh="handleQuery" /> -->
  145. <!-- 新增或修改 -->
  146. <addAndEdit ref="addAndEdit" @refresh="getList" />
  147. </div>
  148. </template>
  149. <script>
  150. import {
  151. listTableApi,
  152. delTableParamsApi,
  153. publicByPutApi as releaseApi
  154. } from "@/api/CURD";
  155. import addAndEdit from "../formBox/attractionInfoIntroduceForm.vue"
  156. export default {
  157. name: "User",
  158. dicts: ['tourism_attractionInfoIntroduce_status'],
  159. components: {addAndEdit},
  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. release: ['system:user:release']
  171. },
  172. configUrl: {
  173. list: '/merchant/merchantDetail/pageList', // 列表地址
  174. delect: '/merchant/merchantDetail/deleteById', // 删除地址
  175. upload: '',// 导入地址
  176. download:'', // 下载模板地址
  177. export: '',// 导出地址
  178. release: '/merchant/merchantDetail/updateStatus',// 发布接口
  179. },
  180. // 遮罩层
  181. loading: true,
  182. // 选中数组
  183. ids: [],
  184. // 非单个禁用
  185. single: true,
  186. // 非多个禁用
  187. multiple: true,
  188. // 显示搜索条件
  189. showSearch: true,
  190. // 总条数
  191. total: 0,
  192. // 用户表格数据
  193. tableList: null,
  194. // 查询参数
  195. queryParams: {
  196. pageNum: 1,
  197. pageSize: 10,
  198. },
  199. dateRange: [],
  200. // 控制列表是否显示
  201. columns: [
  202. { key: 0, label: `标题`, visible: true },
  203. { key: 2, label: `摘要`, visible: true },
  204. { key: 3, label: `创建人`, visible: true },
  205. { key: 4, label: `创建时间`, visible: true },
  206. { key: 5, label: `状态`, visible: true },
  207. ],
  208. };
  209. },
  210. methods: {
  211. initData() {
  212. this.getList();
  213. },
  214. /** 查询用户列表 */
  215. getList() {
  216. this.loading = true;
  217. let params = JSON.parse(JSON.stringify({
  218. ...this.queryParams,
  219. startTime: this.queryParams.time&&this.queryParams.time[0]?this.queryParams.time[0]:null,
  220. endTime: this.queryParams.time&&this.queryParams.time[1]?this.queryParams.time[1]:null,
  221. }))
  222. delete params.time;
  223. listTableApi(
  224. this.configUrl.list,
  225. this.addDateRange(
  226. {...params,type: 1},
  227. this.dateRange)).then(response => {
  228. this.tableList = response.data.rows;
  229. this.total = response.data.total;
  230. this.loading = false;
  231. }
  232. ).catch (error=>{
  233. console.error('获取列表失败!!!!',error)
  234. this.tableList = [];
  235. this.total = 0;
  236. this.loading = false
  237. })
  238. },
  239. /** 搜索按钮操作 */
  240. handleQuery() {
  241. this.queryParams.pageNum = 1;
  242. this.getList();
  243. },
  244. /** 重置按钮操作 */
  245. resetQuery() {
  246. this.dateRange = [];
  247. this.queryParams = {
  248. pageNum: 1,
  249. pageSize: 10,
  250. }
  251. this.handleQuery();
  252. },
  253. // 多选框选中数据
  254. handleSelectionChange(selection) {
  255. this.ids = selection.map(item => item.id);
  256. this.single = selection.length != 1;
  257. this.multiple = !selection.length;
  258. },
  259. /** 新增按钮操作 */
  260. handleAdd() {
  261. if(this.$refs.addAndEdit) {
  262. this.$refs.addAndEdit.initData(this.title + '新增', "ADD",{})
  263. }
  264. },
  265. /** 修改按钮操作 */
  266. handleUpdate(row) {
  267. if(this.$refs.addAndEdit) {
  268. this.$refs.addAndEdit.initData(this.title + '编辑', "EDITInit",{...row})
  269. }
  270. },
  271. handleDetails(row){
  272. if(this.$refs.detailsBox) {
  273. this.$refs.detailsBox.initData(this.title + '详情',"DEATILSInit", row)
  274. }
  275. },
  276. /** 删除按钮操作 */
  277. handleDelete(row) {
  278. const ids = row.id || this.ids;
  279. this.$modal.confirm('是否确认删除数据项?').then( () => {
  280. return delTableParamsApi(this.configUrl.delect,{
  281. id: ids,
  282. type: 1
  283. });
  284. }).then(() => {
  285. this.getList();
  286. this.$modal.msgSuccess("删除成功");
  287. }).catch((e) => {
  288. console.error("删除失败====",e)
  289. });
  290. },
  291. /** 导出按钮操作 */
  292. handleExport() {
  293. this.download(this.configUrl.export, {
  294. ...this.queryParams
  295. }, `${this.title }_${new Date().getTime()}.xlsx`)
  296. },
  297. /** 导入按钮操作 */
  298. handleImport() {
  299. if(this.$refs.upload) {
  300. this.$refs.upload.initData({
  301. width: '400px',
  302. // 弹出层标题(用户导入)
  303. title: this.title + "导入",
  304. // 下载模板地址
  305. importTemplate: this.configUrl.download,
  306. // 上传的地址
  307. url: this.configUrl.upload
  308. })
  309. }
  310. },
  311. /** 发布 */
  312. handleRelease(row) {
  313. const ids = row.id;
  314. this.$modal.confirm(`是否确认${row.status == 1 ? '启用' : '禁用'}编号为"${ids}"的数据项?`).then( () => {
  315. return releaseApi(this.configUrl.release,{
  316. id: ids,
  317. status: row.status == 1 ? 2 : 1
  318. });
  319. }).then(() => {
  320. this.getList();
  321. this.$modal.msgSuccess(`${row.status == 1 ? '启用' : '禁用'}成功`);
  322. }).catch((e) => {
  323. console.error("发布失败====",e)
  324. });
  325. }
  326. }
  327. };
  328. </script>