physicalCardManagement.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  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="['system:user:resetPwd']">设置积分</el-dropdown-item>
  114. <el-dropdown-item command="handleAuthRole" icon="el-icon-circle-check"
  115. v-hasPermi="['system:user:edit']">设置储值</el-dropdown-item>
  116. <el-dropdown-item command="handleEdit" icon="el-icon-circle-check"
  117. v-hasPermi="['system:user:edit']">编辑</el-dropdown-item>
  118. <el-dropdown-item command="handleResetPassword" icon="el-icon-circle-check"
  119. v-hasPermi="['system:user:edit']">重置密码</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: ['system:user:edit'], // 新增权限
  161. details: ['system:user:details'], // 详情权限
  162. delect: ['system:user:remove'], // 删除权限
  163. edit: ['system:user:edit'], // 编辑权限
  164. upload: ['system:user:upload'],// 导入权限
  165. export: ['system:user:export'],// 导出权限
  166. },
  167. configUrl: {
  168. list: '/merchant/merchantEntitycard/pageList', // 列表地址
  169. delect: '', // 删除地址
  170. upload: '',// 导入地址
  171. download:'', // 下载模板地址
  172. export: '',// 导出地址
  173. updateStatus: '/merchant/merchantEntitycard/updateStatus', // 编辑地址
  174. resetPassword: '/merchant/merchantEntitycard/resetPassword',
  175. listCopy: '/merchant/merchantEntitycardConfig/pageList'
  176. },
  177. // 遮罩层
  178. loading: true,
  179. // 选中数组
  180. ids: [],
  181. // 非单个禁用
  182. single: true,
  183. // 非多个禁用
  184. multiple: true,
  185. // 显示搜索条件
  186. showSearch: true,
  187. // 总条数
  188. total: 0,
  189. // 用户表格数据
  190. tableList: null,
  191. // 查询参数
  192. queryParams: {
  193. pageNum: 1,
  194. pageSize: 10,
  195. },
  196. dateRange: [],
  197. // 控制列表是否显示
  198. columns: [
  199. { key: 0, label: `卡号`, visible: true },
  200. { key: 1, label: `持卡人`, visible: true },
  201. { key: 2, label: `手机号`, visible: true },
  202. { key: 3, label: `卡类型`, visible: true },
  203. { key: 4, label: `身份证号`, visible: true },
  204. { key: 5, label: `激活时间`, visible: true },
  205. { key: 6, label: `卡余额`, visible: true },
  206. { key: 7, label: `卡积分`, visible: true },
  207. { key: 8, label: `充值余额`, visible: true },
  208. { key: 9, label: `状态`, visible: true },
  209. { key: 10, label: `禁用/启用`, visible: true },
  210. { key: 11, label: `最近消费时间`, visible: true },
  211. ],
  212. tableListCopy: []// 实体卡类型
  213. };
  214. },
  215. created() {
  216. this.getListCopy()
  217. this.getList();
  218. },
  219. methods: {
  220. /** 查询实体卡类型列表 */
  221. getListCopy() {
  222. listTableApi(
  223. this.configUrl.listCopy,
  224. this.addDateRange(
  225. this.queryParams,
  226. this.dateRange)).then(response => {
  227. this.tableListCopy = response.data.rows;
  228. }
  229. ).catch (error=>{
  230. console.error('获取列表失败!!!!',error)
  231. this.tableListCopy = [];
  232. })
  233. },
  234. /** 查询用户列表 */
  235. getList() {
  236. this.loading = true;
  237. listTableApi(
  238. this.configUrl.list,
  239. this.addDateRange(
  240. this.queryParams,
  241. this.dateRange)).then(response => {
  242. this.tableList = response.data.rows;
  243. this.total = response.data.total;
  244. this.loading = false;
  245. }
  246. ).catch (error=>{
  247. console.error('获取列表失败!!!!',error)
  248. this.tableList = [];
  249. this.total = 0;
  250. this.loading = false
  251. })
  252. },
  253. /** 搜索按钮操作 */
  254. handleQuery() {
  255. this.queryParams.pageNum = 1;
  256. this.getList();
  257. },
  258. /** 重置按钮操作 */
  259. resetQuery() {
  260. this.dateRange = [];
  261. this.queryParams = {
  262. pageNum: 1,
  263. pageSize: 10,
  264. }
  265. this.handleQuery();
  266. },
  267. // 多选框选中数据
  268. handleSelectionChange(selection) {
  269. this.ids = selection.map(item => item.id);
  270. this.single = selection.length != 1;
  271. this.multiple = !selection.length;
  272. },
  273. /** 新增按钮操作 */
  274. handleAdd() {
  275. if(this.$refs.addAndEdit) {
  276. this.$refs.addAndEdit.initData(this.title + '新增', "ADD",{})
  277. }
  278. },
  279. /** 修改按钮操作 */
  280. handleUpdate(row) {
  281. if(this.$refs.addAndEdit) {
  282. this.$refs.addAndEdit.initData(this.title + '编辑', "EDITInit",{...row})
  283. }
  284. },
  285. handleDetails(row){
  286. if(this.$refs.detailsBox) {
  287. this.$refs.detailsBox.initData(this.title + '详情', "EDITInit",{...row})
  288. }
  289. },
  290. /** 删除按钮操作 */
  291. handleDelete(row) {
  292. const ids = row.id || this.ids;
  293. this.$modal.confirm('是否确认删除数据项?').then( () => {
  294. return delTableParamsApi(this.configUrl.delect,{
  295. id: ids
  296. });
  297. }).then(() => {
  298. this.getList();
  299. this.$modal.msgSuccess("删除成功");
  300. }).catch((e) => {
  301. console.error("删除失败====",e)
  302. });
  303. },
  304. /** 导出按钮操作 */
  305. handleExport() {
  306. this.download(this.configUrl.export, {
  307. ...this.queryParams
  308. }, `${this.title }_${new Date().getTime()}.xlsx`)
  309. },
  310. /** 导入按钮操作 */
  311. handleImport() {
  312. if(this.$refs.upload) {
  313. this.$refs.upload.initData({
  314. width: '400px',
  315. // 弹出层标题(用户导入)
  316. title: this.title + "导入",
  317. // 下载模板地址
  318. importTemplate: this.configUrl.download,
  319. // 上传的地址
  320. url: this.configUrl.upload
  321. })
  322. }
  323. },
  324. /** 开/闭 园 */
  325. openAttraction(row) {
  326. this.$modal.confirm(`是否确认${row.status == 0 ? '启用' : '禁用'} ${row.cardNo||''}吗?`).then( () => {
  327. return updateTableApi(this.configUrl.updateStatus,{
  328. id: row.id,
  329. status: row.status == 1 ? 0 : 1
  330. });
  331. }).then(() => {
  332. this.getList();
  333. this.$modal.msgSuccess(`${row.status == 0 ? '启用' : '禁用'}成功`);
  334. }).catch((e) => {
  335. console.error("失败====",e)
  336. });
  337. },
  338. /** 重置密码 */
  339. handleResetPassword(row){
  340. this.$modal.confirm(`是否确认重置卡号 ${row.cardNo||''}的密码为000000吗?`).then( () => {
  341. return updateTableApi(this.configUrl.resetPassword,{
  342. id: row.id,
  343. });
  344. }).then(() => {
  345. this.getList();
  346. this.$modal.msgSuccess(`重置成功`);
  347. }).catch((e) => {
  348. console.error("失败====",e)
  349. });
  350. },
  351. handleResetPwd(row) {
  352. if(this.$refs.setIntegralForm) {
  353. this.$refs.setIntegralForm.initData('设置积分', "EDIT",{...row})
  354. }
  355. },
  356. handleAuthRole(row) {
  357. if(this.$refs.setStoredValue) {
  358. this.$refs.setStoredValue.initData('设置储值', "EDIT",{...row})
  359. }
  360. },
  361. // 更多操作触发
  362. handleCommand(command, row) {
  363. switch (command) {
  364. case "handleResetPwd":
  365. this.handleResetPwd(row);
  366. break;
  367. case "handleAuthRole":
  368. this.handleAuthRole(row);
  369. break;
  370. case "handleEdit":
  371. this.handleUpdate(row);
  372. break;
  373. case "handleResetPassword":
  374. this.handleResetPassword(row);
  375. break;
  376. default:
  377. break;
  378. }
  379. },
  380. /** 设置使用期限 */
  381. setUseType(row){
  382. if(row.useType == 1) {
  383. return '永久生效'
  384. }else if(row.useType == 2) {
  385. return '' + (row.useDay || '') + '天有效'
  386. }else if(row.useType == 3) {
  387. return '' + row.useEndDay + '内有效'
  388. }else{
  389. return '--'
  390. }
  391. },
  392. }
  393. };
  394. </script>