AaCommodityFlList.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390
  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-col :xl="6" :lg="7" :md="8" :sm="24">
  8. <a-form-item label="分类名称">
  9. <a-input placeholder="请输入分类名称" v-model="queryParam.name"></a-input>
  10. </a-form-item>
  11. </a-col>
  12. <a-col :xl="6" :lg="7" :md="8" :sm="24">
  13. <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
  14. <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
  15. <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
  16. <!-- <a @click="handleToggleSearch" style="margin-left: 8px">-->
  17. <!-- {{ toggleSearchStatus ? '收起' : '展开' }}-->
  18. <!-- <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>-->
  19. <!-- </a>-->
  20. </span>
  21. </a-col>
  22. </a-row>
  23. </a-form>
  24. </div>
  25. <!-- 查询区域-END -->
  26. <!-- 操作按钮区域 -->
  27. <div class="table-operator">
  28. <a-button @click="handleAdd" type="primary" icon="plus">新增一级</a-button>
  29. <!-- <a-button type="primary" icon="download" @click="handleExportXls('商品分类')">导出</a-button>-->
  30. <!-- <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">-->
  31. <!-- <a-button type="primary" icon="import">导入</a-button>-->
  32. <!-- </a-upload>-->
  33. <!-- &lt;!&ndash; 高级查询区域 &ndash;&gt;-->
  34. <!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->
  35. <!-- <a-dropdown v-if="selectedRowKeys.length > 0">-->
  36. <!-- <a-menu slot="overlay">-->
  37. <!-- <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>-->
  38. <!-- </a-menu>-->
  39. <!-- <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>-->
  40. <!-- </a-dropdown>-->
  41. </div>
  42. <!-- table区域-begin -->
  43. <div>
  44. <div class="ant-alert ant-alert-info" style="margin-bottom: 16px;">
  45. <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
  46. <a style="margin-left: 24px" @click="onClearSelected">清空</a>
  47. </div>
  48. <a-table
  49. ref="table"
  50. size="middle"
  51. rowKey="id"
  52. class="j-table-force-nowrap"
  53. :scroll="{x:true}"
  54. :columns="columns"
  55. :dataSource="dataSource"
  56. :pagination="ipagination"
  57. :loading="loading"
  58. :expandedRowKeys="expandedRowKeys"
  59. @change="handleTableChange"
  60. @expand="handleExpand"
  61. v-bind="tableProps">
  62. <template slot="imgSlot" slot-scope="text">
  63. <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
  64. <img v-else :src="getImgView(text)" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
  65. </template>
  66. <template slot="fileSlot" slot-scope="text">
  67. <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
  68. <a-button
  69. v-else
  70. :ghost="true"
  71. type="primary"
  72. icon="download"
  73. size="small"
  74. @click="downloadFile(text)">
  75. 下载
  76. </a-button>
  77. </template>
  78. <span slot="action" slot-scope="text, record">
  79. <a @click="handleEdit(record)">编辑</a>
  80. <a-divider type="vertical" />
  81. <a-dropdown>
  82. <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
  83. <a-menu slot="overlay">
  84. <a-menu-item v-if='record.pid ==0'>
  85. <a @click="handleAddChild(record)">添加下级</a>
  86. </a-menu-item>
  87. <a-menu-item>
  88. <a-popconfirm title="确定删除吗?" @confirm="() => handleDeleteNode(record.id)" placement="topLeft">
  89. <a>删除</a>
  90. </a-popconfirm>
  91. </a-menu-item>
  92. </a-menu>
  93. </a-dropdown>
  94. </span>
  95. </a-table>
  96. </div>
  97. <aaCommodityFl-modal ref="modalForm" @ok="modalFormOk"></aaCommodityFl-modal>
  98. </a-card>
  99. </template>
  100. <script>
  101. import { getAction, deleteAction } from '@/api/manage'
  102. import { JeecgListMixin } from '@/mixins/JeecgListMixin'
  103. import AaCommodityFlModal from './modules/AaCommodityFlModal'
  104. import {filterMultiDictText} from '@/components/dict/JDictSelectUtil'
  105. import { filterObj } from '@/utils/util';
  106. export default {
  107. name: "AaCommodityFlList",
  108. mixins:[JeecgListMixin],
  109. components: {
  110. AaCommodityFlModal
  111. },
  112. data () {
  113. return {
  114. description: '商品分类管理页面',
  115. // 表头
  116. columns: [
  117. {
  118. title:'分类名称',
  119. align:"left",
  120. dataIndex: 'name'
  121. },
  122. {
  123. title:'分类名称英语',
  124. align:"left",
  125. dataIndex: 'nameEnglish'
  126. },
  127. /* {
  128. title:'分类名称德语',
  129. align:"left",
  130. dataIndex: 'nameGerman'
  131. }, */
  132. {
  133. title:'分类图片',
  134. align:"left",
  135. dataIndex: 'pic',
  136. scopedSlots: {customRender: 'imgSlot'}
  137. },
  138. {
  139. title:'顶部背景资源',
  140. align:"left",
  141. dataIndex: 'assets',
  142. scopedSlots: {customRender: 'fileSlot'}
  143. },
  144. {
  145. title:'创建时间',
  146. align:"left",
  147. dataIndex: 'createTime'
  148. },
  149. {
  150. title: '操作',
  151. dataIndex: 'action',
  152. align:"center",
  153. fixed:"right",
  154. width:147,
  155. scopedSlots: { customRender: 'action' },
  156. }
  157. ],
  158. url: {
  159. list: "/aa/aaCommodityFl/rootList",
  160. childList: "/aa/aaCommodityFl/childList",
  161. getChildListBatch: "/aa/aaCommodityFl/getChildListBatch",
  162. delete: "/aa/aaCommodityFl/delete",
  163. deleteBatch: "/aa/aaCommodityFl/deleteBatch",
  164. exportXlsUrl: "/aa/aaCommodityFl/exportXls",
  165. importExcelUrl: "aa/aaCommodityFl/importExcel",
  166. },
  167. expandedRowKeys:[],
  168. hasChildrenField:"hasChild",
  169. pidField:"pid",
  170. dictOptions: {},
  171. loadParent: false,
  172. superFieldList:[],
  173. }
  174. },
  175. created() {
  176. this.getSuperFieldList();
  177. },
  178. computed: {
  179. importExcelUrl(){
  180. return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
  181. },
  182. tableProps() {
  183. let _this = this
  184. return {
  185. // 列表项是否可选择
  186. rowSelection: {
  187. selectedRowKeys: _this.selectedRowKeys,
  188. onChange: (selectedRowKeys) => _this.selectedRowKeys = selectedRowKeys
  189. }
  190. }
  191. }
  192. },
  193. methods: {
  194. loadData(arg){
  195. if(arg==1){
  196. this.ipagination.current=1
  197. }
  198. this.loading = true
  199. let params = this.getQueryParams()
  200. params.hasQuery = 'true'
  201. getAction(this.url.list,params).then(res=>{
  202. if(res.success){
  203. let result = res.result
  204. if(Number(result.total)>0){
  205. this.ipagination.total = Number(result.total)
  206. this.dataSource = this.getDataByResult(res.result.records)
  207. return this.loadDataByExpandedRows(this.dataSource)
  208. }else{
  209. this.ipagination.total=0
  210. this.dataSource=[]
  211. }
  212. }else{
  213. this.$message.warning(res.message)
  214. }
  215. }).finally(()=>{
  216. this.loading = false
  217. })
  218. },
  219. // 根据已展开的行查询数据(用于保存后刷新时异步加载子级的数据)
  220. loadDataByExpandedRows(dataList) {
  221. if (this.expandedRowKeys.length > 0) {
  222. return getAction(this.url.getChildListBatch,{ parentIds: this.expandedRowKeys.join(',') }).then(res=>{
  223. if (res.success && res.result.records.length>0) {
  224. //已展开的数据批量子节点
  225. let records = res.result.records
  226. const listMap = new Map();
  227. for (let item of records) {
  228. let pid = item[this.pidField];
  229. if (this.expandedRowKeys.join(',').includes(pid)) {
  230. let mapList = listMap.get(pid);
  231. if (mapList == null) {
  232. mapList = [];
  233. }
  234. mapList.push(item);
  235. listMap.set(pid, mapList);
  236. }
  237. }
  238. let childrenMap = listMap;
  239. let fn = (list) => {
  240. if(list) {
  241. list.forEach(data => {
  242. if (this.expandedRowKeys.includes(data.id)) {
  243. data.children = this.getDataByResult(childrenMap.get(data.id))
  244. fn(data.children)
  245. }
  246. })
  247. }
  248. }
  249. fn(dataList)
  250. }
  251. })
  252. } else {
  253. return Promise.resolve()
  254. }
  255. },
  256. getQueryParams(arg) {
  257. //获取查询条件
  258. let sqp = {}
  259. let param = {}
  260. if(this.superQueryParams){
  261. sqp['superQueryParams']=encodeURI(this.superQueryParams)
  262. sqp['superQueryMatchType'] = this.superQueryMatchType
  263. }
  264. if(arg){
  265. param = Object.assign(sqp, this.isorter ,this.filters);
  266. }else{
  267. param = Object.assign(sqp, this.queryParam, this.isorter ,this.filters);
  268. }
  269. if(JSON.stringify(this.queryParam) === "{}" || arg){
  270. param.hasQuery = 'false'
  271. }else{
  272. param.hasQuery = 'true'
  273. }
  274. param.field = this.getQueryField();
  275. param.pageNo = this.ipagination.current;
  276. param.pageSize = this.ipagination.pageSize;
  277. return filterObj(param);
  278. },
  279. searchReset() {
  280. //重置
  281. this.expandedRowKeys = []
  282. this.queryParam = {}
  283. this.loadData(1);
  284. },
  285. getDataByResult(result){
  286. if(result){
  287. return result.map(item=>{
  288. //判断是否标记了带有子节点
  289. if(item[this.hasChildrenField]=='1'){
  290. let loadChild = { id: item.id+'_loadChild', name: 'loading...', isLoading: true }
  291. item.children = [loadChild]
  292. }
  293. return item
  294. })
  295. }
  296. },
  297. handleExpand(expanded, record){
  298. // 判断是否是展开状态
  299. if (expanded) {
  300. this.expandedRowKeys.push(record.id)
  301. if (record.children.length>0 && record.children[0].isLoading === true) {
  302. let params = this.getQueryParams(1);//查询条件
  303. params[this.pidField] = record.id
  304. params.hasQuery = 'false'
  305. params.superQueryParams=""
  306. getAction(this.url.childList,params).then((res)=>{
  307. if(res.success){
  308. if(res.result.records){
  309. record.children = this.getDataByResult(res.result.records)
  310. this.dataSource = [...this.dataSource]
  311. }else{
  312. record.children=''
  313. record.hasChildrenField='0'
  314. }
  315. }else{
  316. this.$message.warning(res.message)
  317. }
  318. })
  319. }
  320. }else{
  321. let keyIndex = this.expandedRowKeys.indexOf(record.id)
  322. if(keyIndex>=0){
  323. this.expandedRowKeys.splice(keyIndex, 1);
  324. }
  325. }
  326. },
  327. handleAddChild(record){
  328. this.loadParent = true
  329. let obj = {}
  330. obj[this.pidField] = record['id']
  331. this.$refs.modalForm.add(obj);
  332. },
  333. handleDeleteNode(id) {
  334. if(!this.url.delete){
  335. this.$message.error("请设置url.delete属性!")
  336. return
  337. }
  338. var that = this;
  339. deleteAction(that.url.delete, {id: id}).then((res) => {
  340. if (res.success) {
  341. that.loadData(1)
  342. } else {
  343. that.$message.warning(res.message);
  344. }
  345. });
  346. },
  347. batchDel(){
  348. if(this.selectedRowKeys.length<=0){
  349. this.$message.warning('请选择一条记录!');
  350. return false;
  351. }else{
  352. let ids = "";
  353. let that = this;
  354. that.selectedRowKeys.forEach(function(val) {
  355. ids+=val+",";
  356. });
  357. that.$confirm({
  358. title:"确认删除",
  359. content:"是否删除选中数据?",
  360. onOk: function(){
  361. that.handleDeleteNode(ids)
  362. that.onClearSelected();
  363. }
  364. });
  365. }
  366. },
  367. getSuperFieldList(){
  368. let fieldList=[];
  369. fieldList.push({type:'string',value:'pic',text:'分类图片',dictCode:''})
  370. fieldList.push({type:'string',value:'name',text:'分类名称',dictCode:"aa_commodity_fl,id,pid,name,has_child,0"})
  371. fieldList.push({type:'datetime',value:'createTime',text:'创建时间'})
  372. this.superFieldList = fieldList
  373. }
  374. }
  375. }
  376. </script>
  377. <style scoped>
  378. @import '~@assets/less/common.less';
  379. </style>