physicalCardAllocation.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  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="100px">
  7. <el-form-item label="实体卡名称" prop="cardName">
  8. <el-input
  9. v-model="queryParams.cardName"
  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. <right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
  33. </el-row>
  34. <el-table v-loading="loading" :data="tableList" @selection-change="handleSelectionChange">
  35. <el-table-column type="index" label="序号" align="center" />
  36. <el-table-column label="实体卡名称" align="center" key="cardName" prop="cardName" v-if="columns[0].visible" :show-overflow-tooltip="true" />
  37. <el-table-column label="实体卡价格" align="center" key="price" prop="price" v-if="columns[1].visible" :show-overflow-tooltip="true" />
  38. <el-table-column label="使用期限" align="center" key="useType" prop="useType" v-if="columns[2].visible" :show-overflow-tooltip="true">
  39. <template slot-scope="scope">
  40. <span>{{ setUseType(scope.row) }}</span>
  41. </template>
  42. </el-table-column>
  43. <el-table-column label="生效日期" align="center" key="name3" prop="name3" v-if="columns[3].visible" :show-overflow-tooltip="true">
  44. <template slot-scope="scope">
  45. <span>{{ setEffectiveDateType(scope.row) }}</span>
  46. </template>
  47. </el-table-column>
  48. <el-table-column label="支持储值" align="center" key="name4" prop="name4" v-if="columns[4].visible" :show-overflow-tooltip="true">
  49. <template slot-scope="scope">
  50. <span>{{ setIsStorageValue(scope.row) }}</span>
  51. </template>
  52. </el-table-column>
  53. <el-table-column label="支持积分" align="center" key="name5" prop="name5" v-if="columns[5].visible" :show-overflow-tooltip="true">
  54. <template slot-scope="scope">
  55. <span>{{ setIsCredit(scope.row) }}</span>
  56. </template>
  57. </el-table-column>
  58. <el-table-column label="创捷时间" align="center" key="createTime" prop="createTime" v-if="columns[6].visible" :show-overflow-tooltip="true" />
  59. <el-table-column
  60. label="操作"
  61. align="center"
  62. class-name="small-padding fixed-width"
  63. >
  64. <template slot-scope="scope" >
  65. <el-button
  66. size="mini"
  67. type="text"
  68. icon="el-icon-edit"
  69. @click="handleDetails(scope.row)"
  70. v-hasPermi="configPermi.edit"
  71. >详情</el-button>
  72. <el-button
  73. size="mini"
  74. type="text"
  75. icon="el-icon-edit"
  76. @click="handleUpdate(scope.row)"
  77. v-hasPermi="configPermi.edit"
  78. >编辑</el-button>
  79. <el-button
  80. size="mini"
  81. type="text"
  82. icon="el-icon-delete"
  83. @click="handleDelete(scope.row)"
  84. v-hasPermi="configPermi.delect"
  85. >删除</el-button>
  86. </template>
  87. </el-table-column>
  88. </el-table>
  89. <pagination
  90. v-show="total>0"
  91. :total="total"
  92. :page.sync="queryParams.pageNum"
  93. :limit.sync="queryParams.pageSize"
  94. @pagination="getList"
  95. />
  96. </el-col>
  97. </el-row>
  98. <!-- 新增或修改 -->
  99. <addAndEdit ref="addAndEdit" @refresh="getList" />
  100. <detailsBox ref="detailsBox"></detailsBox>
  101. </div>
  102. </template>
  103. <script>
  104. import {
  105. listTableApi,
  106. delTableParamsApi
  107. } from "@/api/CURD";
  108. import addAndEdit from "./formBox/physicalCardAllocationForm.vue"
  109. import detailsBox from "./detailsBox/physicalCardAllocationDetails.vue"
  110. export default {
  111. name: "User",
  112. dicts: [],
  113. components: {addAndEdit,detailsBox},
  114. data() {
  115. return {
  116. title: "实体卡配置",// 通用标题
  117. configPermi: {
  118. add: ['system:user:edit'], // 新增权限
  119. details: ['system:user:details'], // 详情权限
  120. delect: ['system:user:remove'], // 删除权限
  121. edit: ['system:user:edit'], // 编辑权限
  122. upload: ['system:user:upload'],// 导入权限
  123. export: ['system:user:export'],// 导出权限
  124. release: ['system:user:release']
  125. },
  126. configUrl: {
  127. list: '/merchant/merchantEntitycardConfig/pageList', // 列表地址
  128. delect: '/merchant/merchantEntitycardConfig/deleteById', // 删除地址
  129. upload: '',// 导入地址
  130. download:'', // 下载模板地址
  131. export: '',// 导出地址
  132. updateStatusById: '',
  133. },
  134. // 遮罩层
  135. loading: true,
  136. // 选中数组
  137. ids: [],
  138. // 非单个禁用
  139. single: true,
  140. // 非多个禁用
  141. multiple: true,
  142. // 显示搜索条件
  143. showSearch: true,
  144. // 总条数
  145. total: 0,
  146. // 用户表格数据
  147. tableList: null,
  148. // 查询参数
  149. queryParams: {
  150. pageNum: 1,
  151. pageSize: 10,
  152. },
  153. dateRange: [],
  154. // 控制列表是否显示
  155. columns: [
  156. { key: 0, label: `实体卡名称`, visible: true },
  157. { key: 2, label: `实体卡价格`, visible: true },
  158. { key: 3, label: `使用期限`, visible: true },
  159. { key: 4, label: `生效日期`, visible: true },
  160. { key: 5, label: `支持储值`, visible: true },
  161. { key: 6, label: `支持积分`, visible: true },
  162. { key: 7, label: `创捷时间`, visible: true },
  163. ],
  164. };
  165. },
  166. created() {
  167. this.getList();
  168. },
  169. methods: {
  170. /** 查询用户列表 */
  171. getList() {
  172. this.loading = true;
  173. listTableApi(
  174. this.configUrl.list,
  175. this.addDateRange(
  176. this.queryParams,
  177. this.dateRange)).then(response => {
  178. this.tableList = response.data.rows;
  179. this.total = response.data.total;
  180. this.loading = false;
  181. }
  182. ).catch (error=>{
  183. console.error('获取列表失败!!!!',error)
  184. this.tableList = [];
  185. this.total = 0;
  186. this.loading = false
  187. })
  188. },
  189. /** 搜索按钮操作 */
  190. handleQuery() {
  191. this.queryParams.pageNum = 1;
  192. this.getList();
  193. },
  194. /** 重置按钮操作 */
  195. resetQuery() {
  196. this.dateRange = [];
  197. this.queryParams = {
  198. pageNum: 1,
  199. pageSize: 10,
  200. }
  201. this.handleQuery();
  202. },
  203. // 多选框选中数据
  204. handleSelectionChange(selection) {
  205. this.ids = selection.map(item => item.id);
  206. this.single = selection.length != 1;
  207. this.multiple = !selection.length;
  208. },
  209. /** 新增按钮操作 */
  210. handleAdd() {
  211. if(this.$refs.addAndEdit) {
  212. this.$refs.addAndEdit.initData(this.title + '新增', "ADD",{})
  213. }
  214. },
  215. /** 修改按钮操作 */
  216. handleUpdate(row) {
  217. if(this.$refs.addAndEdit) {
  218. this.$refs.addAndEdit.initData(this.title + '基本信息编辑', "EDITInit",{...row})
  219. }
  220. },
  221. handleUpdate(row) {
  222. if(this.$refs.addAndEdit) {
  223. this.$refs.addAndEdit.initData(this.title + '规格信息编辑', "EDITInit",{...row})
  224. }
  225. },
  226. handleDetails(row){
  227. if(this.$refs.detailsBox) {
  228. this.$refs.detailsBox.initData(this.title + '详情',"DEATILSInit", row)
  229. }
  230. },
  231. /** 删除按钮操作 */
  232. handleDelete(row) {
  233. const ids = row.id || this.ids;
  234. this.$modal.confirm('是否确认删除数据项?').then( () => {
  235. return delTableParamsApi(this.configUrl.delect,{
  236. id: ids
  237. });
  238. }).then(() => {
  239. this.getList();
  240. this.$modal.msgSuccess("删除成功");
  241. }).catch((e) => {
  242. console.error("删除失败====",e)
  243. });
  244. },
  245. /** 导出按钮操作 */
  246. handleExport() {
  247. this.download(this.configUrl.export, {
  248. ...this.queryParams
  249. }, `${this.title }_${new Date().getTime()}.xlsx`)
  250. },
  251. /** 导入按钮操作 */
  252. handleImport() {
  253. if(this.$refs.upload) {
  254. this.$refs.upload.initData({
  255. width: '400px',
  256. // 弹出层标题(用户导入)
  257. title: this.title + "导入",
  258. // 下载模板地址
  259. importTemplate: this.configUrl.download,
  260. // 上传的地址
  261. url: this.configUrl.upload
  262. })
  263. }
  264. },
  265. /**
  266. * 修改状态
  267. * @date 2023-11-22
  268. * @returns {any}
  269. */
  270. openAttraction(row) {
  271. this.$modal.confirm(`是否确认${row.status == 1 ? '上架' : '下架'} ${row.name}点位吗?`).then( () => {
  272. return listTableApi(this.configUrl.updateStatusById,{
  273. id: row.performId,
  274. status: row.status == 1 ? 0 : 1
  275. });
  276. }).then(() => {
  277. this.getList()
  278. this.$modal.msgSuccess(`${row.status == 1 ? '上架' : '下架'}成功`);
  279. }).catch((e) => {
  280. console.error("失败====",e)
  281. });
  282. },
  283. /** 设置使用期限 */
  284. setUseType(row){
  285. if(row.useType == 1) {
  286. return '永久生效'
  287. }else if(row.useType == 2) {
  288. return '' + row.useDay + '天有效'
  289. }else if(row.useType == 3) {
  290. return '' + row.useEndDay + '内有效'
  291. }else{
  292. return '--'
  293. }
  294. },
  295. // 生效日期
  296. setEffectiveDateType(row){
  297. if(row.useType == 1) {
  298. return '制卡之日生效'
  299. }else if(row.useType == 2) {
  300. return '激活之日生效'
  301. }else{
  302. return '--'
  303. }
  304. },
  305. // 支持储值
  306. setIsStorageValue(row){
  307. if(row.isStorageValue == 0) {
  308. return '不可储值'
  309. }else if(row.isStorageValue == 1) {
  310. return row.storageMaxAmount ? ('最大储值'+row.storageMaxAmount):'可储值'
  311. }else{
  312. return '--'
  313. }
  314. },
  315. // 支持积分
  316. setIsCredit(row){
  317. if(row.isCredit == 0) {
  318. return '不可积分'
  319. }else if(row.isCredit == 1) {
  320. return '可积分'
  321. }else{
  322. return '--'
  323. }
  324. },
  325. }
  326. };
  327. </script>