You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

194 lines
6.4 KiB

1 year ago
  1. <template>
  2. <a-card :bordered="false">
  3. <!-- 查询区域 -->
  4. <div class="table-page-search-wrapper">
  5. <a-form layout="inline" @keyup.enter.native="searchQuery">
  6. <a-row :gutter="24">
  7. </a-row>
  8. </a-form>
  9. </div>
  10. <!-- 查询区域-END -->
  11. <!-- 操作按钮区域 -->
  12. <div class="table-operator">
  13. <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
  14. <!-- <a-button type="primary" icon="download" @click="handleExportXls('hotel_member_account')">导出</a-button>-->
  15. <!-- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">-->
  16. <!-- <a-button type="primary" icon="import">导入</a-button>-->
  17. <!-- </a-upload>-->
  18. <!-- 高级查询区域 -->
  19. <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>
  20. <a-dropdown v-if="selectedRowKeys.length > 0">
  21. <a-menu slot="overlay">
  22. <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
  23. </a-menu>
  24. <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
  25. </a-dropdown>
  26. </div>
  27. <!-- table区域-begin -->
  28. <div>
  29. <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
  30. <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>
  31. <a style="margin-left: 24px" @click="onClearSelected">清空</a>
  32. </div>
  33. <a-table
  34. ref="table"
  35. size="middle"
  36. :scroll="{x:true}"
  37. bordered
  38. rowKey="id"
  39. :columns="columns"
  40. :dataSource="dataSource"
  41. :pagination="ipagination"
  42. :loading="loading"
  43. :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
  44. class="j-table-force-nowrap"
  45. @change="handleTableChange">
  46. <template slot="htmlSlot" slot-scope="text">
  47. <div v-html="text"></div>
  48. </template>
  49. <template slot="imgSlot" slot-scope="text,record">
  50. <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
  51. <img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
  52. </template>
  53. <template slot="fileSlot" slot-scope="text">
  54. <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
  55. <a-button
  56. v-else
  57. :ghost="true"
  58. type="primary"
  59. icon="download"
  60. size="small"
  61. @click="downloadFile(text)">
  62. 下载
  63. </a-button>
  64. </template>
  65. <span slot="action" slot-scope="text, record">
  66. <a @click="handleEdit(record)">编辑</a>
  67. <a-divider type="vertical" />
  68. <a-dropdown>
  69. <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
  70. <a-menu slot="overlay">
  71. <a-menu-item>
  72. <a @click="handleDetail(record)">详情</a>
  73. </a-menu-item>
  74. <a-menu-item>
  75. <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
  76. <a>删除</a>
  77. </a-popconfirm>
  78. </a-menu-item>
  79. </a-menu>
  80. </a-dropdown>
  81. </span>
  82. </a-table>
  83. </div>
  84. <hotel-member-account-modal ref="modalForm" @ok="modalFormOk"></hotel-member-account-modal>
  85. </a-card>
  86. </template>
  87. <script>
  88. import '@/assets/less/TableExpand.less'
  89. import { mixinDevice } from '@/utils/mixin'
  90. import { JeecgListMixin } from '@/mixins/JeecgListMixin'
  91. import HotelMemberAccountModal from './modules/HotelMemberAccountModal'
  92. export default {
  93. name: 'HotelMemberAccountList',
  94. mixins:[JeecgListMixin, mixinDevice],
  95. components: {
  96. HotelMemberAccountModal
  97. },
  98. data () {
  99. return {
  100. description: '用户钱包管理页面',
  101. // 表头
  102. columns: [
  103. {
  104. title: '#',
  105. dataIndex: '',
  106. key:'rowIndex',
  107. width:60,
  108. align:"center",
  109. customRender:function (t,r,index) {
  110. return parseInt(index)+1;
  111. }
  112. },
  113. {
  114. title:'用户编号',
  115. align:"center",
  116. dataIndex: 'userId'
  117. },
  118. {
  119. title:'余额',
  120. align:"center",
  121. dataIndex: 'balance'
  122. },
  123. {
  124. title:'押金',
  125. align:"center",
  126. dataIndex: 'deposit'
  127. },
  128. {
  129. title:'店铺佣金',
  130. align:"center",
  131. dataIndex: 'shopBalance'
  132. },
  133. {
  134. title:'是否删除',
  135. align:"center",
  136. dataIndex: 'delFlag_dictText'
  137. },
  138. {
  139. title: '操作',
  140. dataIndex: 'action',
  141. align:"center",
  142. fixed:"right",
  143. width:147,
  144. scopedSlots: { customRender: 'action' }
  145. }
  146. ],
  147. url: {
  148. list: "/hotelmemberaccount/hotelMemberAccount/list",
  149. delete: "/hotelmemberaccount/hotelMemberAccount/delete",
  150. deleteBatch: "/hotelmemberaccount/hotelMemberAccount/deleteBatch",
  151. exportXlsUrl: "/hotelmemberaccount/hotelMemberAccount/exportXls",
  152. importExcelUrl: "hotelmemberaccount/hotelMemberAccount/importExcel",
  153. },
  154. dictOptions:{},
  155. superFieldList:[],
  156. }
  157. },
  158. created() {
  159. this.getSuperFieldList();
  160. },
  161. computed: {
  162. importExcelUrl: function(){
  163. return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
  164. },
  165. },
  166. methods: {
  167. initDictConfig(){
  168. },
  169. getSuperFieldList(){
  170. let fieldList=[];
  171. fieldList.push({type:'string',value:'userId',text:'用户编号',dictCode:''})
  172. // fieldList.push({type:'BigDecimal',value:'balance',text:'余额',dictCode:''})
  173. // fieldList.push({type:'BigDecimal',value:'deposit',text:'押金',dictCode:''})
  174. // fieldList.push({type:'BigDecimal',value:'shopBalance',text:'店铺佣金',dictCode:''})
  175. // fieldList.push({type:'int',value:'delFlag',text:'是否删除 0否 1是',dictCode:''})
  176. this.superFieldList = fieldList
  177. }
  178. }
  179. }
  180. </script>
  181. <style scoped>
  182. @import '~@assets/less/common.less';
  183. </style>