scenicAreaTickets.vue 9.9 KB

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