physicalCardManagement.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  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="cardNo">
  8. <el-input
  9. v-model="queryParams.cardNo"
  10. placeholder="请输入卡号"
  11. clearable
  12. style="width: 240px"
  13. @keyup.enter.native="handleQuery"
  14. />
  15. </el-form-item>
  16. <el-form-item label="持卡人" prop="userName">
  17. <el-input
  18. v-model="queryParams.userName"
  19. placeholder="请输入持卡人"
  20. clearable
  21. style="width: 240px"
  22. @keyup.enter.native="handleQuery"
  23. />
  24. </el-form-item>
  25. <el-form-item label="手机号" prop="phone">
  26. <el-input
  27. v-model="queryParams.phone"
  28. placeholder="请输入手机号"
  29. clearable
  30. style="width: 240px"
  31. @keyup.enter.native="handleQuery"
  32. />
  33. </el-form-item>
  34. <el-form-item label="卡类型" prop="entityCardConfigId">
  35. <el-select v-model="queryParams.entityCardConfigId" clearable placeholder="请选择卡类型">
  36. <el-option
  37. v-for="dict in tableListCopy"
  38. :key="dict.id"
  39. :label="dict.cardName"
  40. :value="dict.id">
  41. </el-option>
  42. </el-select>
  43. </el-form-item>
  44. <el-form-item>
  45. <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
  46. <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
  47. </el-form-item>
  48. </el-form>
  49. <el-row :gutter="10" class="mb8">
  50. <el-col :span="1.5">
  51. <el-button
  52. type="primary"
  53. plain
  54. icon="el-icon-plus"
  55. size="mini"
  56. @click="handleAdd"
  57. v-hasPermi="configPermi.add"
  58. >添加新卡</el-button>
  59. </el-col>
  60. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
  61. </el-row>
  62. <el-table v-loading="loading" :data="tableList" @selection-change="handleSelectionChange">
  63. <el-table-column type="index" label="序号" align="center" />
  64. <el-table-column label="卡号" align="center" key="cardNo" prop="cardNo" v-if="columns[0].visible" :show-overflow-tooltip="true" />
  65. <el-table-column label="持卡人" align="center" key="userName" prop="userName" v-if="columns[1].visible" :show-overflow-tooltip="true" />
  66. <el-table-column label="手机号" align="center" key="phone" prop="phone" v-if="columns[2].visible" :show-overflow-tooltip="true" />
  67. <el-table-column label="卡类型" align="center" key="cardName" prop="cardName" v-if="columns[3].visible" :show-overflow-tooltip="true" />
  68. <el-table-column label="激活时间" align="center" key="effectiveDate" prop="effectiveDate" v-if="columns[4].visible" :show-overflow-tooltip="true" />
  69. <el-table-column label="使用期限" align="center" key="useType" prop="useType" v-if="columns[5].visible" :show-overflow-tooltip="true">
  70. <template slot-scope="scope">
  71. <span>{{ setUseType(scope.row) }}</span>
  72. </template>
  73. </el-table-column>
  74. <el-table-column label="卡余额" align="center" key="amount" prop="amount" v-if="columns[6].visible" :show-overflow-tooltip="true" />
  75. <el-table-column label="卡积分" align="center" key="credit" prop="credit" v-if="columns[7].visible" :show-overflow-tooltip="true" />
  76. <el-table-column label="充值余额" align="center" key="storageAmount" prop="storageAmount" v-if="columns[8].visible" :show-overflow-tooltip="true" />
  77. <el-table-column label="卡状态" align="center" key="cardStatus" prop="cardStatus" v-if="columns[9].visible" :show-overflow-tooltip="true">
  78. <template slot-scope="scope">
  79. <dict-tag :options="dict.type.tourism_physicalCardManagement_cardStatus" :value="scope.row.cardStatus"/>
  80. </template>
  81. </el-table-column>
  82. <el-table-column label="禁用/启用" align="center" key="status1" prop="status1" v-if="columns[10].visible" :show-overflow-tooltip="true">
  83. <template slot-scope="scope">
  84. <switchBox
  85. :defaultChecked="true"
  86. v-model="scope.row.status"
  87. @changeFun="openAttraction(scope.row)"
  88. :disabled="false"
  89. :active-value="1"
  90. :inactive-value="0"
  91. />
  92. </template>
  93. </el-table-column>
  94. <el-table-column label="最近消费时间" align="center" key="newOrderTime" prop="newOrderTime" v-if="columns[11].visible" :show-overflow-tooltip="true" />
  95. <el-table-column
  96. label="操作"
  97. align="center"
  98. width="160"
  99. class-name="small-padding fixed-width"
  100. >
  101. <template slot-scope="scope" >
  102. <el-button
  103. size="mini"
  104. type="text"
  105. icon="el-icon-document"
  106. @click="handleDetails(scope.row)"
  107. v-hasPermi="configPermi.details"
  108. >详情</el-button>
  109. <el-dropdown size="mini" @command="(command) => handleCommand(command, scope.row)" v-hasPermi="['system:user:resetPwd', 'system:user:edit']">
  110. <el-button size="mini" type="text" icon="el-icon-d-arrow-right">更多</el-button>
  111. <el-dropdown-menu slot="dropdown">
  112. <el-dropdown-item command="handleResetPwd" icon="el-icon-key"
  113. v-hasPermi="configPermi.resetPwd">设置积分</el-dropdown-item>
  114. <el-dropdown-item command="handleAuthRole" icon="el-icon-circle-check"
  115. v-hasPermi="configPermi.AuthRole">设置储值</el-dropdown-item>
  116. <el-dropdown-item command="handleEdit" icon="el-icon-circle-check"
  117. v-hasPermi="configPermi.edit">编辑</el-dropdown-item>
  118. <el-dropdown-item command="handleResetPassword" icon="el-icon-circle-check"
  119. v-hasPermi="configPermi.Password">重置密码</el-dropdown-item>
  120. </el-dropdown-menu>
  121. </el-dropdown>
  122. </template>
  123. </el-table-column>
  124. </el-table>
  125. <pagination
  126. v-show="total>0"
  127. :total="total"
  128. :page.sync="queryParams.pageNum"
  129. :limit.sync="queryParams.pageSize"
  130. @pagination="getList"
  131. />
  132. </el-col>
  133. </el-row>
  134. <!-- 新增或修改 -->
  135. <addAndEdit ref="addAndEdit" @refresh="getList" />
  136. <!-- 详情 -->
  137. <detailsBox ref="detailsBox" />
  138. <setIntegralForm ref="setIntegralForm" @refresh="getList" />
  139. <setStoredValue ref="setStoredValue" @refresh="getList" />
  140. </div>
  141. </template>
  142. <script>
  143. import {
  144. listTableApi,
  145. delTableParamsApi,
  146. updateTableApi
  147. } from "@/api/CURD";
  148. import addAndEdit from "./formBox/physicalCardManagementForm.vue"
  149. import detailsBox from "./detailsBox/physicalCardManagementDetails.vue"
  150. import setIntegralForm from "./formBox/setIntegralForm.vue"
  151. import setStoredValue from "./formBox/setStoredValue.vue"
  152. export default {
  153. name: "User",
  154. dicts: ['tourism_IntegralRecord_cardType','tourism_physicalCardManagement_cardStatus'],
  155. components: {addAndEdit,detailsBox,setIntegralForm,setStoredValue},
  156. data() {
  157. return {
  158. title: "实体卡管理",// 通用标题
  159. configPermi: {
  160. add: ['physicalCard:physicalCardManagement:add'], // 新增权限
  161. details: ['physicalCard:physicalCardManagement:details'], // 详情权限
  162. delect: ['physicalCard:physicalCardManagement:delect'], // 删除权限
  163. edit: ['physicalCard:physicalCardManagement:edit'], // 编辑权限
  164. upload: [''],// 导入权限
  165. export: [''],// 导出权限
  166. resetPwd: ['physicalCard:physicalCardManagement:resetPwd'],// 设置积分
  167. AuthRole: ['physicalCard:physicalCardManagement:AuthRole'],// 设置储值
  168. Password: ['physicalCard:physicalCardManagement:Password'], // 重置密码
  169. },
  170. configUrl: {
  171. list: '/merchant/merchantEntitycard/pageList', // 列表地址
  172. delect: '', // 删除地址
  173. upload: '',// 导入地址
  174. download:'', // 下载模板地址
  175. export: '',// 导出地址
  176. updateStatus: '/merchant/merchantEntitycard/updateStatus', // 编辑地址
  177. resetPassword: '/merchant/merchantEntitycard/resetPassword',
  178. listCopy: '/merchant/merchantEntitycardConfig/pageList'
  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: 1, label: `持卡人`, visible: true },
  204. { key: 2, label: `手机号`, visible: true },
  205. { key: 3, label: `卡类型`, visible: true },
  206. { key: 4, label: `身份证号`, visible: true },
  207. { key: 5, label: `激活时间`, visible: true },
  208. { key: 6, label: `卡余额`, visible: true },
  209. { key: 7, label: `卡积分`, visible: true },
  210. { key: 8, label: `充值余额`, visible: true },
  211. { key: 9, label: `状态`, visible: true },
  212. { key: 10, label: `禁用/启用`, visible: true },
  213. { key: 11, label: `最近消费时间`, visible: true },
  214. ],
  215. tableListCopy: []// 实体卡类型
  216. };
  217. },
  218. created() {
  219. this.getListCopy()
  220. this.getList();
  221. },
  222. methods: {
  223. /** 查询实体卡类型列表 */
  224. getListCopy() {
  225. listTableApi(
  226. this.configUrl.listCopy,
  227. this.addDateRange(
  228. this.queryParams,
  229. this.dateRange)).then(response => {
  230. this.tableListCopy = response.data.rows;
  231. }
  232. ).catch (error=>{
  233. console.error('获取列表失败!!!!',error)
  234. this.tableListCopy = [];
  235. })
  236. },
  237. /** 查询用户列表 */
  238. getList() {
  239. this.loading = true;
  240. listTableApi(
  241. this.configUrl.list,
  242. this.addDateRange(
  243. this.queryParams,
  244. this.dateRange)).then(response => {
  245. this.tableList = response.data.rows;
  246. this.total = response.data.total;
  247. this.loading = false;
  248. }
  249. ).catch (error=>{
  250. console.error('获取列表失败!!!!',error)
  251. this.tableList = [];
  252. this.total = 0;
  253. this.loading = false
  254. })
  255. },
  256. /** 搜索按钮操作 */
  257. handleQuery() {
  258. this.queryParams.pageNum = 1;
  259. this.getList();
  260. },
  261. /** 重置按钮操作 */
  262. resetQuery() {
  263. this.dateRange = [];
  264. this.queryParams = {
  265. pageNum: 1,
  266. pageSize: 10,
  267. }
  268. this.handleQuery();
  269. },
  270. // 多选框选中数据
  271. handleSelectionChange(selection) {
  272. this.ids = selection.map(item => item.id);
  273. this.single = selection.length != 1;
  274. this.multiple = !selection.length;
  275. },
  276. /** 新增按钮操作 */
  277. handleAdd() {
  278. if(this.$refs.addAndEdit) {
  279. this.$refs.addAndEdit.initData(this.title + '新增', "ADD",{})
  280. }
  281. },
  282. /** 修改按钮操作 */
  283. handleUpdate(row) {
  284. if(this.$refs.addAndEdit) {
  285. this.$refs.addAndEdit.initData(this.title + '编辑', "EDITInit",{...row})
  286. }
  287. },
  288. handleDetails(row){
  289. if(this.$refs.detailsBox) {
  290. this.$refs.detailsBox.initData(this.title + '详情', "EDITInit",{...row})
  291. }
  292. },
  293. /** 删除按钮操作 */
  294. handleDelete(row) {
  295. const ids = row.id || this.ids;
  296. this.$modal.confirm('是否确认删除数据项?').then( () => {
  297. return delTableParamsApi(this.configUrl.delect,{
  298. id: ids
  299. });
  300. }).then(() => {
  301. this.getList();
  302. this.$modal.msgSuccess("删除成功");
  303. }).catch((e) => {
  304. console.error("删除失败====",e)
  305. });
  306. },
  307. /** 导出按钮操作 */
  308. handleExport() {
  309. this.download(this.configUrl.export, {
  310. ...this.queryParams
  311. }, `${this.title }_${new Date().getTime()}.xlsx`)
  312. },
  313. /** 导入按钮操作 */
  314. handleImport() {
  315. if(this.$refs.upload) {
  316. this.$refs.upload.initData({
  317. width: '400px',
  318. // 弹出层标题(用户导入)
  319. title: this.title + "导入",
  320. // 下载模板地址
  321. importTemplate: this.configUrl.download,
  322. // 上传的地址
  323. url: this.configUrl.upload
  324. })
  325. }
  326. },
  327. /** 开/闭 园 */
  328. openAttraction(row) {
  329. this.$modal.confirm(`是否确认${row.status == 0 ? '启用' : '禁用'} ${row.cardNo||''}吗?`).then( () => {
  330. return updateTableApi(this.configUrl.updateStatus,{
  331. id: row.id,
  332. status: row.status == 1 ? 0 : 1
  333. });
  334. }).then(() => {
  335. this.getList();
  336. this.$modal.msgSuccess(`${row.status == 0 ? '启用' : '禁用'}成功`);
  337. }).catch((e) => {
  338. console.error("失败====",e)
  339. });
  340. },
  341. /** 重置密码 */
  342. handleResetPassword(row){
  343. this.$modal.confirm(`是否确认重置卡号 ${row.cardNo||''}的密码为000000吗?`).then( () => {
  344. return updateTableApi(this.configUrl.resetPassword,{
  345. id: row.id,
  346. });
  347. }).then(() => {
  348. this.getList();
  349. this.$modal.msgSuccess(`重置成功`);
  350. }).catch((e) => {
  351. console.error("失败====",e)
  352. });
  353. },
  354. handleResetPwd(row) {
  355. if(this.$refs.setIntegralForm) {
  356. this.$refs.setIntegralForm.initData('设置积分', "EDIT",{...row})
  357. }
  358. },
  359. handleAuthRole(row) {
  360. if(this.$refs.setStoredValue) {
  361. this.$refs.setStoredValue.initData('设置储值', "EDIT",{...row})
  362. }
  363. },
  364. // 更多操作触发
  365. handleCommand(command, row) {
  366. switch (command) {
  367. case "handleResetPwd":
  368. this.handleResetPwd(row);
  369. break;
  370. case "handleAuthRole":
  371. this.handleAuthRole(row);
  372. break;
  373. case "handleEdit":
  374. this.handleUpdate(row);
  375. break;
  376. case "handleResetPassword":
  377. this.handleResetPassword(row);
  378. break;
  379. default:
  380. break;
  381. }
  382. },
  383. /** 设置使用期限 */
  384. setUseType(row){
  385. if(row.useType == 1) {
  386. return '永久生效'
  387. }else if(row.useType == 2) {
  388. return '' + (row.useDay || '') + '天有效'
  389. }else if(row.useType == 3) {
  390. return '' + row.useEndDay + '内有效'
  391. }else{
  392. return '--'
  393. }
  394. },
  395. }
  396. };
  397. </script>