tourismStrategy.vue 9.7 KB

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