balanceChangeDetails.vue 12 KB

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