|
@@ -79,7 +79,7 @@ export const JeecgListMixin = {
|
|
key:index
|
|
key:index
|
|
}
|
|
}
|
|
})
|
|
})
|
|
- console.log(record.innerData)
|
|
|
|
|
|
+ // console.log(record.innerData)
|
|
record.innerData = transformTozTreeFormat( record.innerData)
|
|
record.innerData = transformTozTreeFormat( record.innerData)
|
|
}
|
|
}
|
|
if (res.code === 510) {
|
|
if (res.code === 510) {
|
|
@@ -163,7 +163,7 @@ export const JeecgListMixin = {
|
|
if (this.superQueryParams) {
|
|
if (this.superQueryParams) {
|
|
sqp['superQueryParams'] = encodeURI(this.superQueryParams)
|
|
sqp['superQueryParams'] = encodeURI(this.superQueryParams)
|
|
}
|
|
}
|
|
- console.log(this.queryParam)
|
|
|
|
|
|
+ // console.log(this.queryParam)
|
|
var param = {...this.queryParam,...this.isorter, ...this.filters}
|
|
var param = {...this.queryParam,...this.isorter, ...this.filters}
|
|
param.pageNo = this.ipagination.current;
|
|
param.pageNo = this.ipagination.current;
|
|
param.pageSize = this.ipagination.pageSize;
|
|
param.pageSize = this.ipagination.pageSize;
|
|
@@ -243,7 +243,7 @@ export const JeecgListMixin = {
|
|
});
|
|
});
|
|
},
|
|
},
|
|
handleEdit: function (record,sign) {
|
|
handleEdit: function (record,sign) {
|
|
- console.log(record,sign)
|
|
|
|
|
|
+ // console.log(record,sign)
|
|
this.$refs.modalForm.edit(record,sign);
|
|
this.$refs.modalForm.edit(record,sign);
|
|
this.$refs.modalForm.title = "编辑";
|
|
this.$refs.modalForm.title = "编辑";
|
|
this.$refs.modalForm.disableSubmit = false;
|
|
this.$refs.modalForm.disableSubmit = false;
|
|
@@ -302,7 +302,7 @@ export const JeecgListMixin = {
|
|
if (this.selectedRowKeys && this.selectedRowKeys.length > 0) {
|
|
if (this.selectedRowKeys && this.selectedRowKeys.length > 0) {
|
|
param['selections'] = this.selectedRowKeys.join(",")
|
|
param['selections'] = this.selectedRowKeys.join(",")
|
|
}
|
|
}
|
|
- console.log("导出参数", param)
|
|
|
|
|
|
+ // console.log("导出参数", param)
|
|
downFile(this.url.exportXlsUrl, param).then((data) => {
|
|
downFile(this.url.exportXlsUrl, param).then((data) => {
|
|
if (!data) {
|
|
if (!data) {
|
|
this.$message.warning("文件下载失败")
|
|
this.$message.warning("文件下载失败")
|
|
@@ -326,7 +326,7 @@ export const JeecgListMixin = {
|
|
/* 导入 */
|
|
/* 导入 */
|
|
handleImportExcel(info) {
|
|
handleImportExcel(info) {
|
|
if (info.file.status !== 'uploading') {
|
|
if (info.file.status !== 'uploading') {
|
|
- console.log(info.file, info.fileList);
|
|
|
|
|
|
+ // console.log(info.file, info.fileList);
|
|
}
|
|
}
|
|
if (info.file.status === 'done') {
|
|
if (info.file.status === 'done') {
|
|
if (info.file.response.success) {
|
|
if (info.file.response.success) {
|