bug修改。
This commit is contained in:
parent
a114b55a31
commit
c84a23a3d6
@ -106,6 +106,7 @@ public class FileUploadAppController extends DefaultBaseController {
|
|||||||
@GetMapping("listpagefileupload")
|
@GetMapping("listpagefileupload")
|
||||||
public SuccessResultList<List<FileUploadDTO>> listPage(@RequestHeader("token") String token, ListPage page) {
|
public SuccessResultList<List<FileUploadDTO>> listPage(@RequestHeader("token") String token, ListPage page) {
|
||||||
Map<String, Object> params = requestParams();
|
Map<String, Object> params = requestParams();
|
||||||
|
params.put("token", token);
|
||||||
page.setParams(params);
|
page.setParams(params);
|
||||||
return fileUploadService.listPage(page);
|
return fileUploadService.listPage(page);
|
||||||
}
|
}
|
||||||
|
@ -48,4 +48,9 @@ public class FileUploadRouteController extends DefaultBaseController {
|
|||||||
return new ModelAndView("fileupload/list-share-public");
|
return new ModelAndView("fileupload/list-share-public");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@GetMapping("list-share-share")
|
||||||
|
public ModelAndView listShareShare() {
|
||||||
|
return new ModelAndView("fileupload/list-share-share");
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -117,4 +117,6 @@ public interface IFileTypeDao {
|
|||||||
*/
|
*/
|
||||||
Integer count(Map<String, Object> params) throws SearchException;
|
Integer count(Map<String, Object> params) throws SearchException;
|
||||||
|
|
||||||
|
FileTypeDTO getName(Map<String, Object> params);
|
||||||
|
|
||||||
}
|
}
|
@ -1,5 +1,6 @@
|
|||||||
package cn.com.tenlion.systemoa.service.filerole;
|
package cn.com.tenlion.systemoa.service.filerole;
|
||||||
|
|
||||||
|
import cn.com.tenlion.systemoa.pojo.dtos.filetype.FileTypeDTO;
|
||||||
import ink.wgink.pojo.ListPage;
|
import ink.wgink.pojo.ListPage;
|
||||||
import ink.wgink.pojo.result.SuccessResultList;
|
import ink.wgink.pojo.result.SuccessResultList;
|
||||||
import cn.com.tenlion.systemoa.pojo.dtos.filerole.FileRoleDTO;
|
import cn.com.tenlion.systemoa.pojo.dtos.filerole.FileRoleDTO;
|
||||||
@ -184,5 +185,4 @@ public interface IFileRoleService {
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
Integer count(Map<String, Object> params);
|
Integer count(Map<String, Object> params);
|
||||||
|
|
||||||
}
|
}
|
@ -1,5 +1,6 @@
|
|||||||
package cn.com.tenlion.systemoa.service.filetype;
|
package cn.com.tenlion.systemoa.service.filetype;
|
||||||
|
|
||||||
|
import cn.com.tenlion.systemoa.pojo.dtos.filerole.FileRoleDTO;
|
||||||
import ink.wgink.pojo.ListPage;
|
import ink.wgink.pojo.ListPage;
|
||||||
import ink.wgink.pojo.result.SuccessResultList;
|
import ink.wgink.pojo.result.SuccessResultList;
|
||||||
import cn.com.tenlion.systemoa.pojo.dtos.filetype.FileTypeDTO;
|
import cn.com.tenlion.systemoa.pojo.dtos.filetype.FileTypeDTO;
|
||||||
@ -185,4 +186,9 @@ public interface IFileTypeService {
|
|||||||
*/
|
*/
|
||||||
Integer count(Map<String, Object> params);
|
Integer count(Map<String, Object> params);
|
||||||
|
|
||||||
|
List<FileRoleDTO> getShare(Map<String, Object> params);
|
||||||
|
|
||||||
|
FileTypeDTO getName(String fileTypeId);
|
||||||
|
|
||||||
|
FileTypeDTO getName(Map<String, Object> params);
|
||||||
}
|
}
|
@ -1,5 +1,7 @@
|
|||||||
package cn.com.tenlion.systemoa.service.filetype.impl;
|
package cn.com.tenlion.systemoa.service.filetype.impl;
|
||||||
|
|
||||||
|
import cn.com.tenlion.systemoa.pojo.dtos.filerole.FileRoleDTO;
|
||||||
|
import cn.com.tenlion.systemoa.service.filerole.IFileRoleService;
|
||||||
import ink.wgink.common.base.DefaultBaseService;
|
import ink.wgink.common.base.DefaultBaseService;
|
||||||
import ink.wgink.pojo.ListPage;
|
import ink.wgink.pojo.ListPage;
|
||||||
import ink.wgink.pojo.bos.UserInfoBO;
|
import ink.wgink.pojo.bos.UserInfoBO;
|
||||||
@ -33,6 +35,8 @@ public class FileTypeServiceImpl extends DefaultBaseService implements IFileType
|
|||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
private IFileTypeDao fileTypeDao;
|
private IFileTypeDao fileTypeDao;
|
||||||
|
@Autowired
|
||||||
|
private IFileRoleService fileRoleService;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void save(FileTypeVO fileTypeVO) {
|
public void save(FileTypeVO fileTypeVO) {
|
||||||
@ -106,6 +110,11 @@ public class FileTypeServiceImpl extends DefaultBaseService implements IFileType
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public FileTypeDTO get(Map<String, Object> params) {
|
public FileTypeDTO get(Map<String, Object> params) {
|
||||||
|
/*if(null != params.get("typeBelong")) {
|
||||||
|
if("共享文档".equals(params.get("typeBelong").toString())) {
|
||||||
|
params.put("typeBelong", "个人文档");
|
||||||
|
}
|
||||||
|
}*/
|
||||||
return fileTypeDao.get(params);
|
return fileTypeDao.get(params);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -150,6 +159,11 @@ public class FileTypeServiceImpl extends DefaultBaseService implements IFileType
|
|||||||
if(null != userInfoBO) {
|
if(null != userInfoBO) {
|
||||||
params.put("creator", userInfoBO.getUserId());
|
params.put("creator", userInfoBO.getUserId());
|
||||||
}
|
}
|
||||||
|
if(null != params.get("typeBelong")) {
|
||||||
|
if("共享文档".equals(params.get("typeBelong").toString())) {
|
||||||
|
params.put("typeBelong", "个人文档");
|
||||||
|
}
|
||||||
|
}
|
||||||
List<FileTypeDTO> fileTypeDTOList = fileTypeDao.list(params);
|
List<FileTypeDTO> fileTypeDTOList = fileTypeDao.list(params);
|
||||||
Iterator<FileTypeDTO> it = fileTypeDTOList.iterator();
|
Iterator<FileTypeDTO> it = fileTypeDTOList.iterator();
|
||||||
while (it.hasNext()) {
|
while (it.hasNext()) {
|
||||||
@ -194,4 +208,22 @@ public class FileTypeServiceImpl extends DefaultBaseService implements IFileType
|
|||||||
return count == null ? 0 : count;
|
return count == null ? 0 : count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<FileRoleDTO> getShare(Map<String, Object> params) {
|
||||||
|
List<FileRoleDTO> list = fileRoleService.list(params);
|
||||||
|
return list;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public FileTypeDTO getName(String fileTypeId) {
|
||||||
|
Map<String, Object> params = super.getHashMap(2);
|
||||||
|
params.put("fileTypeId", fileTypeId);
|
||||||
|
return getName(params);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public FileTypeDTO getName(Map<String, Object> params) {
|
||||||
|
return fileTypeDao.getName(params);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
@ -3,6 +3,7 @@ package cn.com.tenlion.systemoa.service.fileupload.impl;
|
|||||||
import cn.com.tenlion.systemoa.config.properties.ConfigPro;
|
import cn.com.tenlion.systemoa.config.properties.ConfigPro;
|
||||||
import cn.com.tenlion.systemoa.dao.fileupload.IFileUploadDao;
|
import cn.com.tenlion.systemoa.dao.fileupload.IFileUploadDao;
|
||||||
import cn.com.tenlion.systemoa.pojo.bos.fileupload.FileUploadBO;
|
import cn.com.tenlion.systemoa.pojo.bos.fileupload.FileUploadBO;
|
||||||
|
import cn.com.tenlion.systemoa.pojo.dtos.filerole.FileRoleDTO;
|
||||||
import cn.com.tenlion.systemoa.pojo.dtos.filetype.FileTypeDTO;
|
import cn.com.tenlion.systemoa.pojo.dtos.filetype.FileTypeDTO;
|
||||||
import cn.com.tenlion.systemoa.pojo.dtos.fileupload.FileUploadDTO;
|
import cn.com.tenlion.systemoa.pojo.dtos.fileupload.FileUploadDTO;
|
||||||
import cn.com.tenlion.systemoa.pojo.pos.fileupload.FileUploadPO;
|
import cn.com.tenlion.systemoa.pojo.pos.fileupload.FileUploadPO;
|
||||||
@ -18,6 +19,7 @@ import ink.wgink.exceptions.SearchException;
|
|||||||
import ink.wgink.module.file.dao.IFileDao;
|
import ink.wgink.module.file.dao.IFileDao;
|
||||||
import ink.wgink.module.file.service.IFileService;
|
import ink.wgink.module.file.service.IFileService;
|
||||||
import ink.wgink.pojo.ListPage;
|
import ink.wgink.pojo.ListPage;
|
||||||
|
import ink.wgink.pojo.app.AppTokenUser;
|
||||||
import ink.wgink.pojo.bos.UserInfoBO;
|
import ink.wgink.pojo.bos.UserInfoBO;
|
||||||
import ink.wgink.pojo.pos.FilePO;
|
import ink.wgink.pojo.pos.FilePO;
|
||||||
import ink.wgink.pojo.result.SuccessResultList;
|
import ink.wgink.pojo.result.SuccessResultList;
|
||||||
@ -141,10 +143,13 @@ public class FileUploadServiceImpl extends DefaultBaseService implements IFileUp
|
|||||||
FileUploadDTO fileUploadDTO = fileUploadDao.get(params);
|
FileUploadDTO fileUploadDTO = fileUploadDao.get(params);
|
||||||
if(null != fileUploadDTO) {
|
if(null != fileUploadDTO) {
|
||||||
if(!StringUtils.isEmpty(fileUploadDTO.getFileTypeId())) {
|
if(!StringUtils.isEmpty(fileUploadDTO.getFileTypeId())) {
|
||||||
FileTypeDTO fileTypeDTO = fileTypeService.get(fileUploadDTO.getFileTypeId());
|
FileTypeDTO fileTypeDTO = fileTypeService.getName(fileUploadDTO.getFileTypeId());
|
||||||
if(null != fileTypeDTO) {
|
if(null != fileTypeDTO) {
|
||||||
fileUploadDTO.setOldFileType(fileTypeDTO.getTypeName());
|
fileUploadDTO.setOldFileType(fileTypeDTO.getTypeName());
|
||||||
fileUploadDTO.setFileTypeName(fileTypeDTO.getTypeName());
|
fileUploadDTO.setFileTypeName(fileTypeDTO.getTypeName());
|
||||||
|
|
||||||
|
fileUploadDTO.setCatalogueType(fileTypeDTO.getTypeBelong());
|
||||||
|
fileUploadDTO.setCatalogueName(fileTypeDTO.getTypeName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(!StringUtils.isEmpty(fileUploadDTO.getFileId())) {
|
if(!StringUtils.isEmpty(fileUploadDTO.getFileId())) {
|
||||||
@ -205,38 +210,62 @@ public class FileUploadServiceImpl extends DefaultBaseService implements IFileUp
|
|||||||
@Override
|
@Override
|
||||||
public List<FileUploadDTO> list(Map<String, Object> params) {
|
public List<FileUploadDTO> list(Map<String, Object> params) {
|
||||||
UserInfoBO userInfoBO = this.securityComponent.getCurrentUser();
|
UserInfoBO userInfoBO = this.securityComponent.getCurrentUser();
|
||||||
if(null != userInfoBO) {
|
if (null != userInfoBO) {
|
||||||
params.put("creator", userInfoBO.getUserId());
|
params.put("creator", userInfoBO.getUserId());
|
||||||
}
|
}
|
||||||
|
String token = null;
|
||||||
|
if(null != params.get("token")) {
|
||||||
|
token = params.get("token").toString();
|
||||||
|
try {
|
||||||
|
AppTokenUser appTokenUser = securityComponent.getAppTokenUser(token);
|
||||||
|
if(null != appTokenUser) {
|
||||||
|
params.put("creator", appTokenUser.getId());
|
||||||
|
}
|
||||||
|
}catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
List<FileUploadDTO> fileUploadDTOList = fileUploadDao.list(params);
|
List<FileUploadDTO> fileUploadDTOList = fileUploadDao.list(params);
|
||||||
if(null != fileUploadDTOList && fileUploadDTOList.size() > 0) {
|
if(null != fileUploadDTOList && fileUploadDTOList.size() > 0) {
|
||||||
Iterator it = fileUploadDTOList.iterator();
|
Iterator it = fileUploadDTOList.iterator();
|
||||||
while(it.hasNext()) {
|
while(it.hasNext()) {
|
||||||
FileUploadDTO fileUploadDTO = (FileUploadDTO) it.next();
|
FileUploadDTO fileUploadDTO = (FileUploadDTO) it.next();
|
||||||
params.put("fileTypeId", fileUploadDTO.getFileTypeId());
|
params.put("fileTypeId", fileUploadDTO.getFileTypeId());
|
||||||
|
params.put("fileUploadId", fileUploadDTO.getFileUploadId());
|
||||||
|
String typeBelong = null;
|
||||||
|
if(null != params.get("typeBelong")) {
|
||||||
|
typeBelong = params.get("typeBelong").toString();
|
||||||
|
if("共享文档".equals(typeBelong)) {
|
||||||
|
typeBelong = "个人文档";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(null != params.get("typeBelong") && "共享文档".equals(params.get("typeBelong").toString())) {
|
||||||
|
List<FileRoleDTO> fileRoleDTOList = fileTypeService.getShare(params);
|
||||||
|
if(null == fileRoleDTOList || fileRoleDTOList.size() == 0) {
|
||||||
|
it.remove();
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
params.remove("typeBelong");
|
||||||
|
params.remove("creator");
|
||||||
FileTypeDTO fileTypeDTO = fileTypeService.get(params);
|
FileTypeDTO fileTypeDTO = fileTypeService.get(params);
|
||||||
|
params.put("typeBelong", typeBelong);
|
||||||
if(null != params.get("typeBelong") && null != fileTypeDTO) {
|
if(null != params.get("typeBelong") && null != fileTypeDTO) {
|
||||||
if(!params.get("typeBelong").toString().equals(fileTypeDTO.getTypeBelong())) {
|
if(!params.get("typeBelong").toString().equals(fileTypeDTO.getTypeBelong())) {
|
||||||
it.remove();
|
it.remove();
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(null != fileTypeDTO) {
|
|
||||||
fileUploadDTO.setCatalogueType(fileTypeDTO.getTypeBelong());
|
|
||||||
fileUploadDTO.setCatalogueName(fileTypeDTO.getTypeName());
|
FileTypeDTO fileTypeDTO1 = fileTypeService.getName(fileUploadDTO.getFileTypeId());
|
||||||
|
if(null != fileTypeDTO1) {
|
||||||
|
fileUploadDTO.setCatalogueType(fileTypeDTO1.getTypeBelong());
|
||||||
|
fileUploadDTO.setCatalogueName(fileTypeDTO1.getTypeName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/*if(null != fileUploadDTOList && fileUploadDTOList.size() > 0) {
|
|
||||||
for(FileUploadDTO fileUploadDTO: fileUploadDTOList) {
|
|
||||||
params.put("fileCatalogueId", fileUploadDTO.getCatalogueId());
|
|
||||||
FileCatalogueDTO fileCatalogueDTO = fileCatalogueService.get(params);
|
|
||||||
if(null != fileCatalogueDTO) {
|
|
||||||
fileUploadDTO.setCatalogueName(fileCatalogueDTO.getName());
|
|
||||||
fileUploadDTO.setCatalogueType(fileCatalogueDTO.getType());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
return fileUploadDTOList;
|
return fileUploadDTOList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -235,6 +235,9 @@
|
|||||||
t1.id LIKE CONCAT('%', #{keywords}, '%')
|
t1.id LIKE CONCAT('%', #{keywords}, '%')
|
||||||
)
|
)
|
||||||
</if>
|
</if>
|
||||||
|
<if test="fileUploadId != null and fileUploadId != ''">
|
||||||
|
AND t1.file_upload_id = #{fileUploadId}
|
||||||
|
</if>
|
||||||
<if test="startTime != null and startTime != ''">
|
<if test="startTime != null and startTime != ''">
|
||||||
AND
|
AND
|
||||||
LEFT(t1.gmt_create, 10) <![CDATA[ >= ]]> #{startTime}
|
LEFT(t1.gmt_create, 10) <![CDATA[ >= ]]> #{startTime}
|
||||||
|
@ -130,10 +130,47 @@
|
|||||||
t1.type_belong,
|
t1.type_belong,
|
||||||
t1.code,
|
t1.code,
|
||||||
t1.file_type_id,
|
t1.file_type_id,
|
||||||
|
<if test="typeBelong != null and typeBelong != '' and typeBelong != '个人文档'">
|
||||||
t2.add_role,
|
t2.add_role,
|
||||||
t2.edit_role,
|
t2.edit_role,
|
||||||
t2.del_role,
|
t2.del_role,
|
||||||
t2.share_role
|
t2.share_role,
|
||||||
|
</if>
|
||||||
|
1
|
||||||
|
FROM
|
||||||
|
data_file_type t1
|
||||||
|
<if test="typeBelong != null and typeBelong != '' and typeBelong != '个人文档'">
|
||||||
|
LEFT JOIN data_file_role t2 ON t1.file_type_id = t2.file_upload_id
|
||||||
|
</if>
|
||||||
|
WHERE
|
||||||
|
t1.is_delete = 0
|
||||||
|
<if test="fileTypeId != null and fileTypeId != ''">
|
||||||
|
AND t1.file_type_id = #{fileTypeId}
|
||||||
|
</if>
|
||||||
|
<if test="typeBelong != null and typeBelong != ''">
|
||||||
|
AND t1.type_belong = #{typeBelong}
|
||||||
|
</if>
|
||||||
|
<if test="creator != null and creator != ''">
|
||||||
|
AND FIND_IN_SET(#{creator}, t1.creator)
|
||||||
|
<if test="typeBelong != null and typeBelong != '' and typeBelong != '个人文档'">
|
||||||
|
OR FIND_IN_SET(#{creator}, t2.user_id)
|
||||||
|
</if>
|
||||||
|
</if>
|
||||||
|
LIMIT 0, 1
|
||||||
|
</select>
|
||||||
|
|
||||||
|
<select id="getName" parameterType="map" resultMap="fileTypeDTO">
|
||||||
|
SELECT
|
||||||
|
t1.type_name,
|
||||||
|
t1.remake,
|
||||||
|
t1.type_belong,
|
||||||
|
t1.code,
|
||||||
|
t1.file_type_id,
|
||||||
|
t2.add_role,
|
||||||
|
t2.edit_role,
|
||||||
|
t2.del_role,
|
||||||
|
t2.share_role,
|
||||||
|
1
|
||||||
FROM
|
FROM
|
||||||
data_file_type t1
|
data_file_type t1
|
||||||
LEFT JOIN data_file_role t2 ON t1.file_type_id = t2.file_upload_id
|
LEFT JOIN data_file_role t2 ON t1.file_type_id = t2.file_upload_id
|
||||||
@ -142,6 +179,9 @@
|
|||||||
<if test="fileTypeId != null and fileTypeId != ''">
|
<if test="fileTypeId != null and fileTypeId != ''">
|
||||||
AND t1.file_type_id = #{fileTypeId}
|
AND t1.file_type_id = #{fileTypeId}
|
||||||
</if>
|
</if>
|
||||||
|
<if test="typeBelong != null and typeBelong != ''">
|
||||||
|
AND t1.type_belong = #{typeBelong}
|
||||||
|
</if>
|
||||||
<if test="creator != null and creator != ''">
|
<if test="creator != null and creator != ''">
|
||||||
AND FIND_IN_SET(#{creator}, t1.creator)
|
AND FIND_IN_SET(#{creator}, t1.creator)
|
||||||
OR FIND_IN_SET(#{creator}, t2.user_id)
|
OR FIND_IN_SET(#{creator}, t2.user_id)
|
||||||
@ -208,14 +248,18 @@
|
|||||||
t1.modifier,
|
t1.modifier,
|
||||||
t1.gmt_modified,
|
t1.gmt_modified,
|
||||||
t1.is_delete,
|
t1.is_delete,
|
||||||
|
<if test="typeBelong != null and typeBelong != '' and typeBelong != '个人文档'">
|
||||||
t2.add_role,
|
t2.add_role,
|
||||||
t2.edit_role,
|
t2.edit_role,
|
||||||
t2.del_role,
|
t2.del_role,
|
||||||
t2.share_role,
|
t2.share_role,
|
||||||
|
</if>
|
||||||
1
|
1
|
||||||
FROM
|
FROM
|
||||||
data_file_type t1
|
data_file_type t1
|
||||||
|
<if test="typeBelong != null and typeBelong != '' and typeBelong != '个人文档'">
|
||||||
LEFT JOIN data_file_role t2 ON t1.file_type_id = t2.file_upload_id
|
LEFT JOIN data_file_role t2 ON t1.file_type_id = t2.file_upload_id
|
||||||
|
</if>
|
||||||
WHERE
|
WHERE
|
||||||
t1.is_delete = 0
|
t1.is_delete = 0
|
||||||
<if test="keywords != null and keywords != ''">
|
<if test="keywords != null and keywords != ''">
|
||||||
@ -226,10 +270,15 @@
|
|||||||
OR t1.type_belong LIKE CONCAT('%', #{keywords}, '%')
|
OR t1.type_belong LIKE CONCAT('%', #{keywords}, '%')
|
||||||
)
|
)
|
||||||
</if>
|
</if>
|
||||||
|
<if test="typeBelong != null and typeBelong != ''">
|
||||||
|
AND t1.type_belong = #{typeBelong}
|
||||||
|
</if>
|
||||||
<if test="creator != null and creator != ''">
|
<if test="creator != null and creator != ''">
|
||||||
AND FIND_IN_SET(#{creator}, t1.creator)
|
AND FIND_IN_SET(#{creator}, t1.creator)
|
||||||
|
<if test="typeBelong != null and typeBelong != '' and typeBelong != '个人文档'">
|
||||||
OR FIND_IN_SET(#{creator}, t2.user_id)
|
OR FIND_IN_SET(#{creator}, t2.user_id)
|
||||||
</if>
|
</if>
|
||||||
|
</if>
|
||||||
<if test="startTime != null and startTime != ''">
|
<if test="startTime != null and startTime != ''">
|
||||||
AND
|
AND
|
||||||
LEFT(t1.gmt_create, 10) <![CDATA[ >= ]]> #{startTime}
|
LEFT(t1.gmt_create, 10) <![CDATA[ >= ]]> #{startTime}
|
||||||
|
@ -244,14 +244,18 @@
|
|||||||
t1.modifier,
|
t1.modifier,
|
||||||
t1.gmt_modified,
|
t1.gmt_modified,
|
||||||
t1.is_delete,
|
t1.is_delete,
|
||||||
|
<if test="typeBelong != null and typeBelong != '' and typeBelong != '个人文档'">
|
||||||
t2.add_role,
|
t2.add_role,
|
||||||
t2.edit_role,
|
t2.edit_role,
|
||||||
t2.del_role,
|
t2.del_role,
|
||||||
t2.share_role,
|
t2.share_role,
|
||||||
|
</if>
|
||||||
1
|
1
|
||||||
FROM
|
FROM
|
||||||
data_file_upload t1
|
data_file_upload t1
|
||||||
|
<if test="typeBelong != null and typeBelong != '' and typeBelong != '个人文档'">
|
||||||
LEFT JOIN data_file_role t2 ON t1.file_upload_id = t2.file_upload_id
|
LEFT JOIN data_file_role t2 ON t1.file_upload_id = t2.file_upload_id
|
||||||
|
</if>
|
||||||
WHERE
|
WHERE
|
||||||
t1.is_delete = 0
|
t1.is_delete = 0
|
||||||
<if test="keywords != null and keywords != ''">
|
<if test="keywords != null and keywords != ''">
|
||||||
@ -265,8 +269,10 @@
|
|||||||
</if>
|
</if>
|
||||||
<if test="creator != null and creator != ''">
|
<if test="creator != null and creator != ''">
|
||||||
AND FIND_IN_SET(#{creator}, t1.creator)
|
AND FIND_IN_SET(#{creator}, t1.creator)
|
||||||
|
<if test="typeBelong != null and typeBelong != '' and typeBelong != '个人文档'">
|
||||||
OR FIND_IN_SET(#{creator}, t2.user_id)
|
OR FIND_IN_SET(#{creator}, t2.user_id)
|
||||||
</if>
|
</if>
|
||||||
|
</if>
|
||||||
<if test="catalogueId != null and catalogueId != ''">
|
<if test="catalogueId != null and catalogueId != ''">
|
||||||
AND t1.catalogue_id = #{catalogueId}
|
AND t1.catalogue_id = #{catalogueId}
|
||||||
</if>
|
</if>
|
||||||
|
@ -29,11 +29,11 @@
|
|||||||
<input type="text" id="userName" name="userName" class="layui-input" value="" placeholder="点击选择被共享人员" maxlength="36">
|
<input type="text" id="userName" name="userName" class="layui-input" value="" placeholder="点击选择被共享人员" maxlength="36">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item" pane>
|
<div class="layui-form-item" pane style="display: none;">
|
||||||
<label class="layui-form-label">新增权限</label>
|
<label class="layui-form-label">新增权限</label>
|
||||||
<div class="layui-input-block">
|
<div class="layui-input-block">
|
||||||
<input type="radio" name="addRole" lay-filter="addRole" value="是" title="是" checked>
|
<input type="radio" name="addRole" lay-filter="addRole" value="是" title="是">
|
||||||
<input type="radio" name="addRole" lay-filter="addRole" value="否" title="否">
|
<input type="radio" name="addRole" lay-filter="addRole" value="否" title="否" checked>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item" pane>
|
<div class="layui-form-item" pane>
|
||||||
@ -50,11 +50,11 @@
|
|||||||
<input type="radio" name="delRole" lay-filter="delRole" value="否" title="否">
|
<input type="radio" name="delRole" lay-filter="delRole" value="否" title="否">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item" pane>
|
<div class="layui-form-item" pane style="display: none;">
|
||||||
<label class="layui-form-label">共享权限</label>
|
<label class="layui-form-label">共享权限</label>
|
||||||
<div class="layui-input-block">
|
<div class="layui-input-block">
|
||||||
<input type="radio" name="shareRole" lay-filter="shareRole" value="是" title="是" checked>
|
<input type="radio" name="shareRole" lay-filter="shareRole" value="是" title="是">
|
||||||
<input type="radio" name="shareRole" lay-filter="shareRole" value="否" title="否">
|
<input type="radio" name="shareRole" lay-filter="shareRole" value="否" title="否" checked>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item layui-layout-admin">
|
<div class="layui-form-item layui-layout-admin">
|
||||||
|
@ -35,11 +35,11 @@
|
|||||||
<input type="text" id="userName" name="userName" class="layui-input" value="" placeholder="点击选择被共享人员" maxlength="36">
|
<input type="text" id="userName" name="userName" class="layui-input" value="" placeholder="点击选择被共享人员" maxlength="36">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item" style="display: none;">
|
||||||
<label class="layui-form-label">新增权限</label>
|
<label class="layui-form-label">新增权限</label>
|
||||||
<div class="layui-input-block">
|
<div class="layui-input-block">
|
||||||
<input type="radio" name="addRole" lay-filter="addRole" value="是" title="是" checked>
|
<input type="radio" name="addRole" lay-filter="addRole" value="是" title="是">
|
||||||
<input type="radio" name="addRole" lay-filter="addRole" value="否" title="否">
|
<input type="radio" name="addRole" lay-filter="addRole" value="否" title="否" checked>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item">
|
||||||
@ -56,11 +56,11 @@
|
|||||||
<input type="radio" name="delRole" lay-filter="delRole" value="否" title="否">
|
<input type="radio" name="delRole" lay-filter="delRole" value="否" title="否">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item">
|
<div class="layui-form-item" style="display: none;">
|
||||||
<label class="layui-form-label">共享权限</label>
|
<label class="layui-form-label">共享权限</label>
|
||||||
<div class="layui-input-block">
|
<div class="layui-input-block">
|
||||||
<input type="radio" name="shareRole" lay-filter="shareRole" value="是" title="是" checked>
|
<input type="radio" name="shareRole" lay-filter="shareRole" value="是" title="是">
|
||||||
<input type="radio" name="shareRole" lay-filter="shareRole" value="否" title="否">
|
<input type="radio" name="shareRole" lay-filter="shareRole" value="否" title="否" checked>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="layui-form-item layui-layout-admin">
|
<div class="layui-form-item layui-layout-admin">
|
||||||
|
@ -220,7 +220,7 @@
|
|||||||
// 文档共享
|
// 文档共享
|
||||||
if('share' == obj.event) {
|
if('share' == obj.event) {
|
||||||
console.log(data)
|
console.log(data)
|
||||||
share(data.fileTypeId, data.typeBelong);
|
share(data.fileUploadId, data.typeBelong);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -28,8 +28,14 @@
|
|||||||
<!-- 表头按钮组 -->
|
<!-- 表头按钮组 -->
|
||||||
<script type="text/html" id="headerToolBar">
|
<script type="text/html" id="headerToolBar">
|
||||||
<div class="layui-btn-group">
|
<div class="layui-btn-group">
|
||||||
|
<button type="button" class="layui-btn layui-btn-sm" lay-event="saveEvent">
|
||||||
|
<i class="fa fa-lg fa-plus"></i> 新增
|
||||||
|
</button>
|
||||||
<button type="button" class="layui-btn layui-btn-normal layui-btn-sm" lay-event="updateEvent">
|
<button type="button" class="layui-btn layui-btn-normal layui-btn-sm" lay-event="updateEvent">
|
||||||
<i class="fa fa-lg fa-edit"></i> 查看
|
<i class="fa fa-lg fa-edit"></i> 编辑
|
||||||
|
</button>
|
||||||
|
<button type="button" class="layui-btn layui-btn-danger layui-btn-sm" lay-event="removeEvent">
|
||||||
|
<i class="fa fa-lg fa-trash"></i> 删除
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</script>
|
</script>
|
||||||
@ -118,6 +124,12 @@
|
|||||||
}
|
}
|
||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{field: 'share', fixed: 'right', width: 150, title: '共享', align:'center',
|
||||||
|
templet: function(row) {
|
||||||
|
var rowData = '<a class="layui-btn layui-btn-xs" lay-event="share">文档共享</a>';
|
||||||
|
return rowData;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
@ -313,7 +325,7 @@
|
|||||||
area: ['100%', '100%'],
|
area: ['100%', '100%'],
|
||||||
shadeClose: true,
|
shadeClose: true,
|
||||||
anim: 2,
|
anim: 2,
|
||||||
content: top.restAjax.path('route/fileupload/update?fileUploadId={fileUploadId}&typeBelong={typeBelong}', [checkDatas[0].fileUploadId, checkDatas[0].catalogueName]),
|
content: top.restAjax.path('route/fileupload/update?fileUploadId={fileUploadId}&typeBelong={typeBelong}', [checkDatas[0].fileUploadId, '个人文档']),
|
||||||
end: function() {
|
end: function() {
|
||||||
reloadTable();
|
reloadTable();
|
||||||
}
|
}
|
||||||
|
@ -125,7 +125,7 @@
|
|||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{field: 'share', fixed: 'right', width: 150, title: '共享', align:'center',
|
/*{field: 'share', fixed: 'right', width: 150, title: '共享', align:'center',
|
||||||
templet: function(row) {
|
templet: function(row) {
|
||||||
var rowData;
|
var rowData;
|
||||||
if(row['shareRole'] == '否') {
|
if(row['shareRole'] == '否') {
|
||||||
@ -137,7 +137,7 @@
|
|||||||
}
|
}
|
||||||
return rowData;
|
return rowData;
|
||||||
}
|
}
|
||||||
}
|
}*/
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
page: true,
|
page: true,
|
||||||
|
340
src/main/resources/templates/fileupload/list-share-share.html
Normal file
340
src/main/resources/templates/fileupload/list-share-share.html
Normal file
@ -0,0 +1,340 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<html xmlns:th="http://www.thymeleaf.org">
|
||||||
|
<head>
|
||||||
|
<base th:href="${#request.getContextPath() + '/'}">
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="renderer" content="webkit">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||||||
|
<link rel="stylesheet" href="assets/fonts/font-awesome/css/font-awesome.css"/>
|
||||||
|
<link rel="stylesheet" href="assets/layuiadmin/layui/css/layui.css" media="all">
|
||||||
|
<link rel="stylesheet" href="assets/layuiadmin/style/admin.css" media="all">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="layui-fluid layui-anim layui-anim-fadein">
|
||||||
|
<div class="layui-row">
|
||||||
|
<div class="layui-col-md12">
|
||||||
|
<div class="layui-card">
|
||||||
|
<div class="layui-card-body">
|
||||||
|
<div class="test-table-reload-btn" style="margin-bottom: 10px;">
|
||||||
|
<div class="layui-inline">
|
||||||
|
<input type="text" id="keywords" class="layui-input search-item" placeholder="输入关键字">
|
||||||
|
</div>
|
||||||
|
<button type="button" id="search" class="layui-btn layui-btn-sm">
|
||||||
|
<i class="fa fa-lg fa-search"></i> 搜索
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
<table class="layui-hide" id="dataTable" lay-filter="dataTable"></table>
|
||||||
|
<!-- 表头按钮组 -->
|
||||||
|
<script type="text/html" id="headerToolBar">
|
||||||
|
<div class="layui-btn-group">
|
||||||
|
<button type="button" class="layui-btn layui-btn-normal layui-btn-sm" lay-event="updateEvent">
|
||||||
|
<i class="fa fa-lg fa-edit"></i> 查看
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script src="assets/layuiadmin/layui/layui.js"></script>
|
||||||
|
<script src="assets/js/vendor/viewer/viewer.min.js"></script>
|
||||||
|
<script>
|
||||||
|
layui.config({
|
||||||
|
base: 'assets/layuiadmin/'
|
||||||
|
}).extend({
|
||||||
|
index: 'lib/index'
|
||||||
|
}).use(['index', 'table', 'laydate', 'common'], function() {
|
||||||
|
var $ = layui.$;
|
||||||
|
var $win = $(window);
|
||||||
|
var table = layui.table;
|
||||||
|
var admin = layui.admin;
|
||||||
|
var laydate = layui.laydate;
|
||||||
|
var common = layui.common;
|
||||||
|
var resizeTimeout = null;
|
||||||
|
var tableUrl = 'api/fileupload/listpage?typeBelong={typeBelong}';
|
||||||
|
|
||||||
|
// 初始化表格
|
||||||
|
function initTable() {
|
||||||
|
table.render({
|
||||||
|
elem: '#dataTable',
|
||||||
|
id: 'dataTable',
|
||||||
|
url: top.restAjax.path(tableUrl, ['共享文档']),
|
||||||
|
width: admin.screen() > 1 ? '100%' : '',
|
||||||
|
height: $win.height() - 90,
|
||||||
|
limit: 20,
|
||||||
|
limits: [20, 40, 60, 80, 100, 200],
|
||||||
|
toolbar: '#headerToolBar',
|
||||||
|
request: {
|
||||||
|
pageName: 'page',
|
||||||
|
limitName: 'rows'
|
||||||
|
},
|
||||||
|
cols: [
|
||||||
|
[
|
||||||
|
{type:'checkbox', fixed: 'left'},
|
||||||
|
{field:'rowNum', width:80, title: '序号', fixed: 'left', align:'center', templet: '<span>{{d.LAY_INDEX}}</span>'},
|
||||||
|
{field: 'catalogueName', width: 180, title: '类别名称', align:'center',
|
||||||
|
templet: function(row) {
|
||||||
|
var rowData = row[this.field];
|
||||||
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
||||||
|
return '-';
|
||||||
|
}
|
||||||
|
return rowData;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{field: 'fileType', width: 180, title: '文件类型', align:'center',
|
||||||
|
templet: function(row) {
|
||||||
|
var rowData = row[this.field];
|
||||||
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
||||||
|
return '-';
|
||||||
|
}
|
||||||
|
return rowData;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{field: 'fileModular', width: 180, title: '文件模块', align:'center',
|
||||||
|
templet: function(row) {
|
||||||
|
var rowData = row[this.field];
|
||||||
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
||||||
|
return '-';
|
||||||
|
}
|
||||||
|
return rowData;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{field: 'content', width: 180, title: '文件说明', align:'center',
|
||||||
|
templet: function(row) {
|
||||||
|
var rowData = row[this.field];
|
||||||
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
||||||
|
return '-';
|
||||||
|
}
|
||||||
|
return rowData;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{field: 'remake', width: 180, title: '备注', align:'center',
|
||||||
|
templet: function(row) {
|
||||||
|
var rowData = row[this.field];
|
||||||
|
if(typeof(rowData) === 'undefined' || rowData == null || rowData == '') {
|
||||||
|
return '-';
|
||||||
|
}
|
||||||
|
return rowData;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
page: true,
|
||||||
|
parseData: function(data) {
|
||||||
|
return {
|
||||||
|
'code': 0,
|
||||||
|
'msg': '',
|
||||||
|
'count': data.total,
|
||||||
|
'data': data.rows
|
||||||
|
};
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 文档共享
|
||||||
|
function share(id, catalogueType) {
|
||||||
|
if('个人文档' == catalogueType) {
|
||||||
|
selUser(id);
|
||||||
|
}else {
|
||||||
|
layer.open({
|
||||||
|
type: 2,
|
||||||
|
title: false,
|
||||||
|
closeBtn: 0,
|
||||||
|
area: ['100%', '100%'],
|
||||||
|
shadeClose: true,
|
||||||
|
anim: 2,
|
||||||
|
content: top.restAjax.path('route/filerole/save?fileUploadId={fileUploadId}', [id]),
|
||||||
|
end: function() {
|
||||||
|
reloadTable();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function selUser(id) {
|
||||||
|
top.dialog.open({
|
||||||
|
url: top.restAjax.path('route/department/user/select-user', []),
|
||||||
|
title: '被共享人员',
|
||||||
|
width: '1040px',
|
||||||
|
height: '98%',
|
||||||
|
onClose: function(data) {
|
||||||
|
var receiverUserList = [];
|
||||||
|
console.log(top.dialog.dialogData.selectedDepartmentUsers)
|
||||||
|
if(top.dialog.dialogData.selectedDepartmentUsers.length > 0) {
|
||||||
|
receiverUserList = top.dialog.dialogData.selectedDepartmentUsers;
|
||||||
|
}
|
||||||
|
if(receiverUserList.length > 0) {
|
||||||
|
var ids = '';
|
||||||
|
var userNames = '';
|
||||||
|
for(var i = 0, item; item = receiverUserList[i++];) {
|
||||||
|
if(i > 1) {
|
||||||
|
ids += ',';
|
||||||
|
userNames += ',';
|
||||||
|
}
|
||||||
|
ids += item['userId'];
|
||||||
|
userNames += item['userName'];
|
||||||
|
}
|
||||||
|
saveShare(id, ids);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function saveShare(id, userIds) {
|
||||||
|
var loadLayerIndex;
|
||||||
|
top.restAjax.post(top.restAjax.path('api/filerole/save', []), {
|
||||||
|
fileUploadId: id,
|
||||||
|
userId: userIds
|
||||||
|
}, null, function(code, data) {
|
||||||
|
if(code == 200) {
|
||||||
|
top.dialog.msg('文件共享成功');
|
||||||
|
}else {
|
||||||
|
top.dialog.msg('文件共享失败');
|
||||||
|
}
|
||||||
|
}, function(code, data) {
|
||||||
|
top.dialog.msg(data.msg);
|
||||||
|
}, function() {
|
||||||
|
loadLayerIndex = top.dialog.msg(top.dataMessage.committing, {icon: 16, time: 0, shade: 0.3});
|
||||||
|
}, function() {
|
||||||
|
top.dialog.close(loadLayerIndex);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function closeBox() {
|
||||||
|
parent.layer.close(parent.layer.getFrameIndex(window.name));
|
||||||
|
}
|
||||||
|
|
||||||
|
//监听行单击事件
|
||||||
|
table.on('tool(dataTable)', function(obj){
|
||||||
|
var data = obj.data;
|
||||||
|
// 文档共享
|
||||||
|
if('share' == obj.event) {
|
||||||
|
console.log(data)
|
||||||
|
share(data.fileUploadId, data.catalogueType);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 重载表格
|
||||||
|
function reloadTable(currentPage) {
|
||||||
|
table.reload('dataTable', {
|
||||||
|
url: top.restAjax.path(tableUrl, ['共享文档']),
|
||||||
|
where: {
|
||||||
|
keywords: $('#keywords').val(),
|
||||||
|
startTime: $('#startTime').val(),
|
||||||
|
endTime: $('#endTime').val()
|
||||||
|
},
|
||||||
|
page: {
|
||||||
|
curr: currentPage
|
||||||
|
},
|
||||||
|
height: $win.height() - 90,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// 初始化日期
|
||||||
|
function initDate() {
|
||||||
|
// 日期选择
|
||||||
|
laydate.render({
|
||||||
|
elem: '#startTime',
|
||||||
|
format: 'yyyy-MM-dd'
|
||||||
|
});
|
||||||
|
laydate.render({
|
||||||
|
elem: '#endTime',
|
||||||
|
format: 'yyyy-MM-dd'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
initTable();
|
||||||
|
initDate();
|
||||||
|
// 删除
|
||||||
|
function removeData(ids) {
|
||||||
|
top.dialog.msg(top.dataMessage.delete, {
|
||||||
|
time: 0,
|
||||||
|
btn: [top.dataMessage.button.yes, top.dataMessage.button.no],
|
||||||
|
shade: 0.3,
|
||||||
|
yes: function (index) {
|
||||||
|
top.dialog.close(index);
|
||||||
|
var layIndex;
|
||||||
|
top.restAjax.delete(top.restAjax.path('api/fileupload/remove/{ids}', [ids]), {}, null, function (code, data) {
|
||||||
|
top.dialog.msg(top.dataMessage.deleteSuccess, {time: 1000});
|
||||||
|
reloadTable();
|
||||||
|
}, function (code, data) {
|
||||||
|
top.dialog.msg(data.msg);
|
||||||
|
}, function () {
|
||||||
|
layIndex = top.dialog.msg(top.dataMessage.deleting, {icon: 16, time: 0, shade: 0.3});
|
||||||
|
}, function () {
|
||||||
|
top.dialog.close(layIndex);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
initTable();
|
||||||
|
initDate();
|
||||||
|
|
||||||
|
// 事件 - 页面变化
|
||||||
|
$win.on('resize', function() {
|
||||||
|
clearTimeout(resizeTimeout);
|
||||||
|
resizeTimeout = setTimeout(function() {
|
||||||
|
reloadTable();
|
||||||
|
}, 500);
|
||||||
|
});
|
||||||
|
// 事件 - 搜索
|
||||||
|
$(document).on('click', '#search', function() {
|
||||||
|
reloadTable(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
// 事件 - 增删改
|
||||||
|
table.on('toolbar(dataTable)', function(obj) {
|
||||||
|
var layEvent = obj.event;
|
||||||
|
var checkStatus = table.checkStatus('dataTable');
|
||||||
|
var checkDatas = checkStatus.data;
|
||||||
|
if(layEvent === 'saveEvent') {
|
||||||
|
layer.open({
|
||||||
|
type: 2,
|
||||||
|
title: false,
|
||||||
|
closeBtn: 0,
|
||||||
|
area: ['100%', '100%'],
|
||||||
|
shadeClose: true,
|
||||||
|
anim: 2,
|
||||||
|
content: top.restAjax.path('route/fileupload/save?typeBelong={typeBelong}', ['共享文档']),
|
||||||
|
end: function() {
|
||||||
|
reloadTable();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else if(layEvent === 'updateEvent') {
|
||||||
|
if(checkDatas.length === 0) {
|
||||||
|
top.dialog.msg(top.dataMessage.table.selectEdit);
|
||||||
|
} else if(checkDatas.length > 1) {
|
||||||
|
top.dialog.msg(top.dataMessage.table.selectOneEdit);
|
||||||
|
} else {
|
||||||
|
layer.open({
|
||||||
|
type: 2,
|
||||||
|
title: false,
|
||||||
|
closeBtn: 0,
|
||||||
|
area: ['100%', '100%'],
|
||||||
|
shadeClose: true,
|
||||||
|
anim: 2,
|
||||||
|
content: top.restAjax.path('route/fileupload/update?fileUploadId={fileUploadId}&typeBelong={typeBelong}&isView={isView}', [checkDatas[0].fileUploadId, '共享文档', 'yes']),
|
||||||
|
end: function() {
|
||||||
|
reloadTable();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} else if(layEvent === 'removeEvent') {
|
||||||
|
if(checkDatas.length === 0) {
|
||||||
|
top.dialog.msg(top.dataMessage.table.selectDelete);
|
||||||
|
} else {
|
||||||
|
var ids = '';
|
||||||
|
for(var i = 0, item; item = checkDatas[i++];) {
|
||||||
|
if(i > 1) {
|
||||||
|
ids += '_';
|
||||||
|
}
|
||||||
|
ids += item['fileUploadId'];
|
||||||
|
}
|
||||||
|
removeData(ids);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -159,7 +159,7 @@
|
|||||||
<div class="layui-form-item layui-layout-admin">
|
<div class="layui-form-item layui-layout-admin">
|
||||||
<div class="layui-input-block">
|
<div class="layui-input-block">
|
||||||
<div class="layui-footer" style="left: 0;">
|
<div class="layui-footer" style="left: 0;">
|
||||||
<button type="button" class="layui-btn" lay-submit lay-filter="submitForm">提交新增</button>
|
<button type="button" class="layui-btn" id="submitBtn" lay-submit lay-filter="submitForm">提交新增</button>
|
||||||
<button type="button" class="layui-btn layui-btn-primary close">返回上级</button>
|
<button type="button" class="layui-btn layui-btn-primary close">返回上级</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -29,12 +29,12 @@
|
|||||||
<!-- 表头按钮组 -->
|
<!-- 表头按钮组 -->
|
||||||
<script type="text/html" id="headerToolBar">
|
<script type="text/html" id="headerToolBar">
|
||||||
<div class="layui-btn-group">
|
<div class="layui-btn-group">
|
||||||
<button type="button" class="layui-btn layui-btn-sm" lay-event="saveEvent">
|
<!--<button type="button" class="layui-btn layui-btn-sm" lay-event="saveEvent">
|
||||||
<i class="fa fa-lg fa-plus"></i> 新增
|
<i class="fa fa-lg fa-plus"></i> 新增
|
||||||
</button>
|
</button>
|
||||||
<button type="button" class="layui-btn layui-btn-danger layui-btn-sm" lay-event="removeEvent">
|
<button type="button" class="layui-btn layui-btn-danger layui-btn-sm" lay-event="removeEvent">
|
||||||
<i class="fa fa-lg fa-trash"></i> 删除
|
<i class="fa fa-lg fa-trash"></i> 删除
|
||||||
</button>
|
</button>-->
|
||||||
</div>
|
</div>
|
||||||
</script>
|
</script>
|
||||||
</div>
|
</div>
|
||||||
@ -69,7 +69,6 @@
|
|||||||
height: $win.height() - 60,
|
height: $win.height() - 60,
|
||||||
limit: 20,
|
limit: 20,
|
||||||
limits: [20, 40, 60, 80, 100, 200],
|
limits: [20, 40, 60, 80, 100, 200],
|
||||||
toolbar: '#headerToolBar',
|
|
||||||
request: {
|
request: {
|
||||||
pageName: 'page',
|
pageName: 'page',
|
||||||
limitName: 'rows'
|
limitName: 'rows'
|
||||||
|
Loading…
Reference in New Issue
Block a user