diff --git a/src/mixins/JeecgListMixin.js b/src/mixins/JeecgListMixin.js index b0ef730..0df14a9 100644 --- a/src/mixins/JeecgListMixin.js +++ b/src/mixins/JeecgListMixin.js @@ -101,7 +101,7 @@ export const JeecgListMixin = { } var params = this.getQueryParams();//查询条件 this.loading = true; - // console.log(params) + console.log("params>>>>>>",params) getAction(this.url.list, params).then((res) => { if (res.success) { //update-begin---author:zhangyafei Date:20201118 for:适配不分页的数据列表------------ @@ -140,7 +140,6 @@ export const JeecgListMixin = { sqp['superQueryParams']=encodeURI(this.superQueryParams) sqp['superQueryMatchType'] = this.superQueryMatchType } - console.log("sqp>>>>>>>>",sqp) var param = Object.assign(sqp, this.queryParam, this.isorter ,this.filters); param.field = this.getQueryField(); param.pageNo = this.ipagination.current; @@ -270,10 +269,25 @@ export const JeecgListMixin = { fileName = "导出文件" } let param = this.getQueryParams(); + if (fileName ==="电缆"){ + param.materialName = "电缆" + } + if (fileName ==="废旧物资库表"){ + param.materialName = "废旧物资库表" + } + // if (fileName ==="电缆模板"){ + // param.materialName = "电缆模板" + // } + // if (fileName ==="废旧物资库表导入模板"){ + // param.materialName = "废旧物资库表导入模板" + // } + if (fileName ==="用户信息导入模板"){ + param.realname = "用户信息导入模板" + } if(this.selectedRowKeys && this.selectedRowKeys.length>0){ param['selections'] = this.selectedRowKeys.join(",") } - console.log("导出参数",param) + console.log("导出参数>>>>>>>>>>",param) downFile(this.url.exportXlsUrl,param).then((data)=>{ if (!data) { this.$message.warning("文件下载失败") diff --git a/src/views/modules/oss/OSSFileList.vue b/src/views/modules/oss/OSSFileList.vue index 511d2ea..0266717 100644 --- a/src/views/modules/oss/OSSFileList.vue +++ b/src/views/modules/oss/OSSFileList.vue @@ -6,12 +6,19 @@ - + - - + + + + + + + + {{item.label}} + @@ -25,36 +32,36 @@ -
- - - - - OSS文件上传 - - + + + + + + + + + + + + + + + - - - - MINIO文件上传 - - -
+ + + + + + + + + + + + + +
@@ -74,13 +81,14 @@ :dataSource="dataSource" :pagination="ipagination" :loading="loading" - :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" @change="handleTableChange"> 预览 - - 删除 + + 下载 + + @@ -91,13 +99,23 @@ diff --git a/src/views/system/DepartList.vue b/src/views/system/DepartList.vue index 2db8443..4dce41e 100644 --- a/src/views/system/DepartList.vue +++ b/src/views/system/DepartList.vue @@ -8,10 +8,10 @@ 添加部门 添加下级 - 导出 - - 导入 - + + + + 批量删除 diff --git a/src/views/system/RoleUserList.vue b/src/views/system/RoleUserList.vue index 8862ae3..e35a64c 100644 --- a/src/views/system/RoleUserList.vue +++ b/src/views/system/RoleUserList.vue @@ -33,10 +33,10 @@
新建角色 - - 导入 - - 导出 + + + +
diff --git a/src/views/system/SysPositionList.vue b/src/views/system/SysPositionList.vue index 7a7cafa..8e63597 100644 --- a/src/views/system/SysPositionList.vue +++ b/src/views/system/SysPositionList.vue @@ -39,11 +39,11 @@
新增 - 导出 - - 导入 - + + + + + @@ -75,7 +75,6 @@ :pagination="ipagination" :loading="loading" :scroll="{x: false, y: 460 }" - :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" @change="handleTableChange"> diff --git a/src/views/system/UserList.vue b/src/views/system/UserList.vue index feef877..22aea1f 100644 --- a/src/views/system/UserList.vue +++ b/src/views/system/UserList.vue @@ -93,6 +93,7 @@
添加用户 导出 + 导入模板 导入 diff --git a/src/views/system/modules/SysPositionModal.vue b/src/views/system/modules/SysPositionModal.vue index 086d5e1..0991a33 100644 --- a/src/views/system/modules/SysPositionModal.vue +++ b/src/views/system/modules/SysPositionModal.vue @@ -103,7 +103,7 @@ } ] }, - name: { rules: [{ required: true, message: '请输入职务名称' }] }, + name: { rules: [{ required: true, message: '请输入职务名称' },{validator: this.titleTest}] }, postRank: { rules: [{ required: true, message: '请选择职级' }] }, }, url: { @@ -116,6 +116,15 @@ created() { }, methods: { + titleTest (rule, value, callback) { + // const title= /^[\u0391-\uFFE5A-Za-z]+$/ + const title= /^[\a-\z\A-\Z0-9\u4e00-\u9fe5]+$/ + if (!title.test(value)) { + callback(new Error('标题只能输入中文、数字和英文')) + }else{ + callback() + } + }, add() { this.edit({}) }, diff --git a/src/views/waste/ProcessWasteList.vue b/src/views/waste/ProcessWasteList.vue index 3b61092..f942eb0 100644 --- a/src/views/waste/ProcessWasteList.vue +++ b/src/views/waste/ProcessWasteList.vue @@ -50,6 +50,7 @@ 查询 重置 导出 + 导入 @@ -79,7 +80,6 @@ :dataSource="dataSource" :pagination="ipagination" :loading="loading" - :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" @change="handleTableChange">