Compare commits

..

No commits in common. '0d8f6e3cc74105c14ce35954984e35c18841aa8c' and '47e99596869cd650ad30c9a653dca60325457b16' have entirely different histories.

  1. 73
      ant-design-vue-jeecg/src/views/tablex/TablexList.vue

@ -121,8 +121,6 @@
import {filterMultiDictText} from '@/components/dict/JDictSelectUtil' import {filterMultiDictText} from '@/components/dict/JDictSelectUtil'
import JEllipsis from '@/components/jeecg/JEllipsis' import JEllipsis from '@/components/jeecg/JEllipsis'
import FieldxList from "@/views/fieldx/FieldxList"; import FieldxList from "@/views/fieldx/FieldxList";
import {getAction} from "@api/manage";
import {filterObj} from "@/utils/util";
export default { export default {
name: 'TablexList', name: 'TablexList',
@ -241,9 +239,9 @@
} }
}, },
created() { created() {
// this.loadParameter(); this.loadParameter();
this.getSuperFieldList(); this.getSuperFieldList();
// this.loadData(); this.loadData();
}, },
computed: { computed: {
importExcelUrl: function(){ importExcelUrl: function(){
@ -256,12 +254,12 @@
this.$refs.FieldxList.edit(record); this.$refs.FieldxList.edit(record);
this.$refs.FieldxList.disableSubmit = false; this.$refs.FieldxList.disableSubmit = false;
}, },
// loadParameter() { loadParameter() {
// this.queryParam.moduleId = this.$route.query.moduleid; this.queryParam.moduleId = this.$route.query.moduleid;
// // console.log("***********") // console.log("***********")
// this.loadRouteType = true; this.loadRouteType = true;
// this.loadData(); this.loadData();
// }, },
initDictConfig(){ initDictConfig(){
}, },
getSuperFieldList(){ getSuperFieldList(){
@ -275,62 +273,7 @@
fieldList.push({type:'int',value:'verisonStatus',text:'版本状态',dictCode:''}) fieldList.push({type:'int',value:'verisonStatus',text:'版本状态',dictCode:''})
fieldList.push({type:'int',value:'verison',text:'版本号',dictCode:''}) fieldList.push({type:'int',value:'verison',text:'版本号',dictCode:''})
this.superFieldList = fieldList this.superFieldList = fieldList
},
loadParameter() {
if (this.loadRouteType === false) {
this.id = this.$route.query.moduleid;
// console.log("***********")
this.loadRouteType = true;
} }
},
loadData(arg) {
if (!this.url.list) {
this.$message.error("请设置url.list属性!");
return
}
// 1
if (arg === 1) {
this.ipagination.current = 1;
}
this.loadParameter();
var params = this.getQueryParams();//
this.loading = true;
getAction(this.url.list, params).then((res) => {
if (res.success) {
//update-begin---author:zhangyafei Date:20201118 for------------
this.dataSource = res.result.records || res.result;
if (res.result.total) {
this.ipagination.total = res.result.total;
} else {
this.ipagination.total = 0;
}
//update-end---author:zhangyafei Date:20201118 for------------
} else {
this.$message.warning(res.message)
}
}).finally(() => {
this.loading = false
})
},
getQueryParams() {
//
let sqp = {}
if (this.superQueryParams) {
sqp['superQueryParams'] = encodeURI(this.superQueryParams)
sqp['superQueryMatchType'] = this.superQueryMatchType
}
var param = Object.assign(sqp, this.queryParam, this.isorter, this.filters);
param.field = this.getQueryField();
param.pageNo = this.ipagination.current;
param.pageSize = this.ipagination.pageSize;
//param.id=this.id;
param.moduleId = this.$route.query.moduleid;
return filterObj(param);
},
searchReset() {
this.queryParam=''
this.loadData();
},
} }
} }
</script> </script>

Loading…
Cancel
Save