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.

182 lines
5.9 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_notice')">导出</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-notice-modal ref="modalForm" @ok="modalFormOk"></hotel-notice-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 HotelNoticeModal from './modules/HotelNoticeModal'
  92. export default {
  93. name: 'HotelNoticeList',
  94. mixins:[JeecgListMixin, mixinDevice],
  95. components: {
  96. HotelNoticeModal
  97. },
  98. data () {
  99. return {
  100. description: 'hotel_notice管理页面',
  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: 'title'
  117. },
  118. {
  119. title:'内容',
  120. align:"center",
  121. dataIndex: 'content'
  122. },
  123. {
  124. title:'是否删除',
  125. align:"center",
  126. dataIndex: 'delFlag_dictText'
  127. },
  128. {
  129. title: '操作',
  130. dataIndex: 'action',
  131. align:"center",
  132. fixed:"right",
  133. width:147,
  134. scopedSlots: { customRender: 'action' }
  135. }
  136. ],
  137. url: {
  138. list: "/hotelnotice/hotelNotice/list",
  139. delete: "/hotelnotice/hotelNotice/delete",
  140. deleteBatch: "/hotelnotice/hotelNotice/deleteBatch",
  141. exportXlsUrl: "/hotelnotice/hotelNotice/exportXls",
  142. importExcelUrl: "hotelnotice/hotelNotice/importExcel",
  143. },
  144. dictOptions:{},
  145. superFieldList:[],
  146. }
  147. },
  148. created() {
  149. this.getSuperFieldList();
  150. },
  151. computed: {
  152. importExcelUrl: function(){
  153. return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
  154. },
  155. },
  156. methods: {
  157. initDictConfig(){
  158. },
  159. getSuperFieldList(){
  160. let fieldList=[];
  161. fieldList.push({type:'string',value:'title',text:'标题',dictCode:''})
  162. // fieldList.push({type:'string',value:'content',text:'内容',dictCode:''})
  163. // fieldList.push({type:'int',value:'delFlag',text:'delFlag',dictCode:''})
  164. this.superFieldList = fieldList
  165. }
  166. }
  167. }
  168. </script>
  169. <style scoped>
  170. @import '~@assets/less/common.less';
  171. </style>