增加 文档
parent
c293228f8a
commit
be4d78c06b
Binary file not shown.
Before Width: | Height: | Size: 364 KiB After Width: | Height: | Size: 640 KiB |
@ -0,0 +1,132 @@
|
||||
package com.haiwei.manage.controller;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.haiwei.manage.service.IBaseCustomerService;
|
||||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.ModelMap;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
import org.springframework.web.bind.annotation.PathVariable;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
import com.haiwei.common.annotation.Log;
|
||||
import com.haiwei.common.enums.BusinessType;
|
||||
import com.haiwei.manage.domain.BsaeFile;
|
||||
import com.haiwei.manage.service.IBsaeFileService;
|
||||
import com.haiwei.common.core.controller.BaseController;
|
||||
import com.haiwei.common.core.domain.AjaxResult;
|
||||
import com.haiwei.common.utils.poi.ExcelUtil;
|
||||
import com.haiwei.common.core.page.TableDataInfo;
|
||||
|
||||
/**
|
||||
* 文档归档Controller
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2023-09-28
|
||||
*/
|
||||
@Controller
|
||||
@RequestMapping("/manage/base_file")
|
||||
public class BsaeFileController extends BaseController
|
||||
{
|
||||
private String prefix = "manage/base_file";
|
||||
|
||||
@Autowired
|
||||
private IBsaeFileService bsaeFileService;
|
||||
@Autowired
|
||||
private IBaseCustomerService baseCustomerService;
|
||||
@RequiresPermissions("manage:base_file:view")
|
||||
@GetMapping()
|
||||
public String base_file(ModelMap mmap)
|
||||
{
|
||||
mmap.put("customers",baseCustomerService.selectBaseCustomerList(null));
|
||||
return prefix + "/base_file";
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询文档归档列表
|
||||
*/
|
||||
@RequiresPermissions("manage:base_file:list")
|
||||
@PostMapping("/list")
|
||||
@ResponseBody
|
||||
public TableDataInfo list(BsaeFile bsaeFile)
|
||||
{
|
||||
startPage();
|
||||
List<BsaeFile> list = bsaeFileService.selectBsaeFileList(bsaeFile);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出文档归档列表
|
||||
*/
|
||||
@RequiresPermissions("manage:base_file:export")
|
||||
@Log(title = "文档归档", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
@ResponseBody
|
||||
public AjaxResult export(BsaeFile bsaeFile)
|
||||
{
|
||||
List<BsaeFile> list = bsaeFileService.selectBsaeFileList(bsaeFile);
|
||||
ExcelUtil<BsaeFile> util = new ExcelUtil<BsaeFile>(BsaeFile.class);
|
||||
return util.exportExcel(list, "base_file");
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增文档归档
|
||||
*/
|
||||
@GetMapping("/add")
|
||||
public String add(ModelMap mmap)
|
||||
{
|
||||
mmap.put("customers",baseCustomerService.selectBaseCustomerList(null));
|
||||
return prefix + "/add";
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增保存文档归档
|
||||
*/
|
||||
@RequiresPermissions("manage:base_file:add")
|
||||
@Log(title = "文档归档", businessType = BusinessType.INSERT)
|
||||
@PostMapping("/add")
|
||||
@ResponseBody
|
||||
public AjaxResult addSave(BsaeFile bsaeFile)
|
||||
{
|
||||
return toAjax(bsaeFileService.insertBsaeFile(bsaeFile));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改文档归档
|
||||
*/
|
||||
@GetMapping("/edit/{objid}")
|
||||
public String edit(@PathVariable("objid") Long objid, ModelMap mmap)
|
||||
{
|
||||
BsaeFile bsaeFile = bsaeFileService.selectBsaeFileById(objid);
|
||||
mmap.put("bsaeFile", bsaeFile);
|
||||
mmap.put("customers",baseCustomerService.selectBaseCustomerList(null));
|
||||
return prefix + "/edit";
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改保存文档归档
|
||||
*/
|
||||
@RequiresPermissions("manage:base_file:edit")
|
||||
@Log(title = "文档归档", businessType = BusinessType.UPDATE)
|
||||
@PostMapping("/edit")
|
||||
@ResponseBody
|
||||
public AjaxResult editSave(BsaeFile bsaeFile)
|
||||
{
|
||||
return toAjax(bsaeFileService.updateBsaeFile(bsaeFile));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除文档归档
|
||||
*/
|
||||
@RequiresPermissions("manage:base_file:remove")
|
||||
@Log(title = "文档归档", businessType = BusinessType.DELETE)
|
||||
@PostMapping( "/remove")
|
||||
@ResponseBody
|
||||
public AjaxResult remove(String ids)
|
||||
{
|
||||
return toAjax(bsaeFileService.deleteBsaeFileByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,81 @@
|
||||
package com.haiwei.manage.domain;
|
||||
|
||||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.apache.commons.lang3.builder.ToStringStyle;
|
||||
import com.haiwei.common.annotation.Excel;
|
||||
import com.haiwei.common.core.domain.BaseEntity;
|
||||
|
||||
/**
|
||||
* 文档归档对象 bsae_file
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2023-09-28
|
||||
*/
|
||||
public class BsaeFile extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 主键 */
|
||||
private Long objid;
|
||||
|
||||
/** 储存路径 */
|
||||
@Excel(name = "储存路径")
|
||||
private String filePath;
|
||||
|
||||
/** 名称 */
|
||||
@Excel(name = "名称")
|
||||
private String fileName;
|
||||
|
||||
/** 归档客户 */
|
||||
@Excel(name = "归档客户")
|
||||
private String customName;
|
||||
|
||||
public void setObjid(Long objid)
|
||||
{
|
||||
this.objid = objid;
|
||||
}
|
||||
|
||||
public Long getObjid()
|
||||
{
|
||||
return objid;
|
||||
}
|
||||
public void setFilePath(String filePath)
|
||||
{
|
||||
this.filePath = filePath;
|
||||
}
|
||||
|
||||
public String getFilePath()
|
||||
{
|
||||
return filePath;
|
||||
}
|
||||
public void setFileName(String fileName)
|
||||
{
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public String getFileName()
|
||||
{
|
||||
return fileName;
|
||||
}
|
||||
public void setCustomName(String customName)
|
||||
{
|
||||
this.customName = customName;
|
||||
}
|
||||
|
||||
public String getCustomName()
|
||||
{
|
||||
return customName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("objid", getObjid())
|
||||
.append("filePath", getFilePath())
|
||||
.append("fileName", getFileName())
|
||||
.append("customName", getCustomName())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.haiwei.manage.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.haiwei.manage.domain.BsaeFile;
|
||||
|
||||
/**
|
||||
* 文档归档Mapper接口
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2023-09-28
|
||||
*/
|
||||
public interface BsaeFileMapper
|
||||
{
|
||||
/**
|
||||
* 查询文档归档
|
||||
*
|
||||
* @param objid 文档归档ID
|
||||
* @return 文档归档
|
||||
*/
|
||||
public BsaeFile selectBsaeFileById(Long objid);
|
||||
|
||||
/**
|
||||
* 查询文档归档列表
|
||||
*
|
||||
* @param bsaeFile 文档归档
|
||||
* @return 文档归档集合
|
||||
*/
|
||||
public List<BsaeFile> selectBsaeFileList(BsaeFile bsaeFile);
|
||||
|
||||
/**
|
||||
* 新增文档归档
|
||||
*
|
||||
* @param bsaeFile 文档归档
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBsaeFile(BsaeFile bsaeFile);
|
||||
|
||||
/**
|
||||
* 修改文档归档
|
||||
*
|
||||
* @param bsaeFile 文档归档
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBsaeFile(BsaeFile bsaeFile);
|
||||
|
||||
/**
|
||||
* 删除文档归档
|
||||
*
|
||||
* @param objid 文档归档ID
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBsaeFileById(Long objid);
|
||||
|
||||
/**
|
||||
* 批量删除文档归档
|
||||
*
|
||||
* @param objids 需要删除的数据ID
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBsaeFileByIds(String[] objids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.haiwei.manage.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.haiwei.manage.domain.BsaeFile;
|
||||
|
||||
/**
|
||||
* 文档归档Service接口
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2023-09-28
|
||||
*/
|
||||
public interface IBsaeFileService
|
||||
{
|
||||
/**
|
||||
* 查询文档归档
|
||||
*
|
||||
* @param objid 文档归档ID
|
||||
* @return 文档归档
|
||||
*/
|
||||
public BsaeFile selectBsaeFileById(Long objid);
|
||||
|
||||
/**
|
||||
* 查询文档归档列表
|
||||
*
|
||||
* @param bsaeFile 文档归档
|
||||
* @return 文档归档集合
|
||||
*/
|
||||
public List<BsaeFile> selectBsaeFileList(BsaeFile bsaeFile);
|
||||
|
||||
/**
|
||||
* 新增文档归档
|
||||
*
|
||||
* @param bsaeFile 文档归档
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBsaeFile(BsaeFile bsaeFile);
|
||||
|
||||
/**
|
||||
* 修改文档归档
|
||||
*
|
||||
* @param bsaeFile 文档归档
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBsaeFile(BsaeFile bsaeFile);
|
||||
|
||||
/**
|
||||
* 批量删除文档归档
|
||||
*
|
||||
* @param ids 需要删除的数据ID
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBsaeFileByIds(String ids);
|
||||
|
||||
/**
|
||||
* 删除文档归档信息
|
||||
*
|
||||
* @param objid 文档归档ID
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBsaeFileById(Long objid);
|
||||
}
|
@ -0,0 +1,100 @@
|
||||
package com.haiwei.manage.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
import com.haiwei.common.utils.DateUtils;
|
||||
import com.haiwei.framework.util.ShiroUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.haiwei.manage.mapper.BsaeFileMapper;
|
||||
import com.haiwei.manage.domain.BsaeFile;
|
||||
import com.haiwei.manage.service.IBsaeFileService;
|
||||
import com.haiwei.common.core.text.Convert;
|
||||
|
||||
/**
|
||||
* 文档归档Service业务层处理
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2023-09-28
|
||||
*/
|
||||
@Service
|
||||
public class BsaeFileServiceImpl implements IBsaeFileService
|
||||
{
|
||||
@Autowired
|
||||
private BsaeFileMapper bsaeFileMapper;
|
||||
|
||||
/**
|
||||
* 查询文档归档
|
||||
*
|
||||
* @param objid 文档归档ID
|
||||
* @return 文档归档
|
||||
*/
|
||||
@Override
|
||||
public BsaeFile selectBsaeFileById(Long objid)
|
||||
{
|
||||
return bsaeFileMapper.selectBsaeFileById(objid);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询文档归档列表
|
||||
*
|
||||
* @param bsaeFile 文档归档
|
||||
* @return 文档归档
|
||||
*/
|
||||
@Override
|
||||
public List<BsaeFile> selectBsaeFileList(BsaeFile bsaeFile)
|
||||
{
|
||||
return bsaeFileMapper.selectBsaeFileList(bsaeFile);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增文档归档
|
||||
*
|
||||
* @param bsaeFile 文档归档
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int insertBsaeFile(BsaeFile bsaeFile)
|
||||
{
|
||||
bsaeFile.setCreateBy(ShiroUtils.getLoginName());
|
||||
bsaeFile.setCreateTime(DateUtils.getNowDate());
|
||||
return bsaeFileMapper.insertBsaeFile(bsaeFile);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改文档归档
|
||||
*
|
||||
* @param bsaeFile 文档归档
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int updateBsaeFile(BsaeFile bsaeFile)
|
||||
{
|
||||
bsaeFile.setCreateBy(ShiroUtils.getLoginName());
|
||||
bsaeFile.setCreateTime(DateUtils.getNowDate());
|
||||
return bsaeFileMapper.updateBsaeFile(bsaeFile);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除文档归档对象
|
||||
*
|
||||
* @param ids 需要删除的数据ID
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteBsaeFileByIds(String ids)
|
||||
{
|
||||
return bsaeFileMapper.deleteBsaeFileByIds(Convert.toStrArray(ids));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除文档归档信息
|
||||
*
|
||||
* @param objid 文档归档ID
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteBsaeFileById(Long objid)
|
||||
{
|
||||
return bsaeFileMapper.deleteBsaeFileById(objid);
|
||||
}
|
||||
}
|
@ -0,0 +1,24 @@
|
||||
-- 菜单 SQL
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('文档归档', '2045', '1', '/manage/base_file', 'C', '0', 'manage:base_file:view', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '文档归档菜单');
|
||||
|
||||
-- 按钮父菜单ID
|
||||
|
||||
declare @parentId as int
|
||||
SELECT @parentId = SCOPE_IDENTITY();
|
||||
|
||||
-- 按钮 SQL
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('文档归档查询', @parentId, '1', '#', 'F', '0', 'manage:base_file:list', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
|
||||
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('文档归档新增', @parentId, '2', '#', 'F', '0', 'manage:base_file:add', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
|
||||
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('文档归档修改', @parentId, '3', '#', 'F', '0', 'manage:base_file:edit', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
|
||||
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('文档归档删除', @parentId, '4', '#', 'F', '0', 'manage:base_file:remove', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
|
||||
|
||||
insert into sys_menu (menu_name, parent_id, order_num, url, menu_type, visible, perms, icon, create_by, create_time, update_by, update_time, remark)
|
||||
values('文档归档导出', @parentId, '5', '#', 'F', '0', 'manage:base_file:export', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
|
@ -0,0 +1,76 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper
|
||||
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.haiwei.manage.mapper.BsaeFileMapper">
|
||||
|
||||
<resultMap type="BsaeFile" id="BsaeFileResult">
|
||||
<result property="objid" column="objid" />
|
||||
<result property="filePath" column="file_path" />
|
||||
<result property="fileName" column="file_name" />
|
||||
<result property="customName" column="custom_name" />
|
||||
<result property="createBy" column="create_by" />
|
||||
<result property="createTime" column="create_time" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectBsaeFileVo">
|
||||
select objid, file_path, file_name, custom_name, create_by, create_time from bsae_file
|
||||
</sql>
|
||||
|
||||
<select id="selectBsaeFileList" parameterType="BsaeFile" resultMap="BsaeFileResult">
|
||||
<include refid="selectBsaeFileVo"/>
|
||||
<where>
|
||||
<if test="fileName != null and fileName != ''"> and file_name like ('%' + #{fileName} + '%')</if>
|
||||
<if test="customName != null and customName != ''"> and custom_name = #{customName}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectBsaeFileById" parameterType="Long" resultMap="BsaeFileResult">
|
||||
<include refid="selectBsaeFileVo"/>
|
||||
where objid = #{objid}
|
||||
</select>
|
||||
|
||||
<insert id="insertBsaeFile" parameterType="BsaeFile">
|
||||
insert into bsae_file
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="objid != null">objid,</if>
|
||||
<if test="filePath != null">file_path,</if>
|
||||
<if test="fileName != null">file_name,</if>
|
||||
<if test="customName != null">custom_name,</if>
|
||||
<if test="createBy != null">create_by,</if>
|
||||
<if test="createTime != null">create_time,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="objid != null">#{objid},</if>
|
||||
<if test="filePath != null">#{filePath},</if>
|
||||
<if test="fileName != null">#{fileName},</if>
|
||||
<if test="customName != null">#{customName},</if>
|
||||
<if test="createBy != null">#{createBy},</if>
|
||||
<if test="createTime != null">#{createTime},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateBsaeFile" parameterType="BsaeFile">
|
||||
update bsae_file
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="filePath != null">file_path = #{filePath},</if>
|
||||
<if test="fileName != null">file_name = #{fileName},</if>
|
||||
<if test="customName != null">custom_name = #{customName},</if>
|
||||
<if test="createBy != null">create_by = #{createBy},</if>
|
||||
<if test="createTime != null">create_time = #{createTime},</if>
|
||||
</trim>
|
||||
where objid = #{objid}
|
||||
</update>
|
||||
|
||||
<delete id="deleteBsaeFileById" parameterType="Long">
|
||||
delete from bsae_file where objid = #{objid}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteBsaeFileByIds" parameterType="String">
|
||||
delete from bsae_file where objid in
|
||||
<foreach item="objid" collection="array" open="(" separator="," close=")">
|
||||
#{objid}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
</mapper>
|
@ -0,0 +1,61 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
||||
<head>
|
||||
<th:block th:include="include :: header('新增文档归档')" />
|
||||
<th:block th:include="include :: bootstrap-fileinput-css"/>
|
||||
</head>
|
||||
<body class="white-bg">
|
||||
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
||||
<form class="form-horizontal m" id="form-base_file-add">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">储存路径:</label>
|
||||
<div class="col-sm-8">
|
||||
<input type="hidden" name="filePath">
|
||||
<div class="file-loading">
|
||||
<input class="form-control file-upload" id="filePath" name="file" type="file">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">名称:</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="fileName" class="form-control" type="text">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">归档客户:</label>
|
||||
<div class="col-sm-8">
|
||||
<select name="customName" class="form-control m-b">
|
||||
<option th:each="BaseCustomer : ${customers}" th:value="${BaseCustomer.customerName}"
|
||||
th:text="${BaseCustomer.customerName}"></option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<th:block th:include="include :: footer" />
|
||||
<th:block th:include="include :: bootstrap-fileinput-js"/>
|
||||
<script th:inline="javascript">
|
||||
var prefix = ctx + "manage/base_file"
|
||||
$("#form-base_file-add").validate({
|
||||
focusCleanup: true
|
||||
});
|
||||
|
||||
function submitHandler() {
|
||||
if ($.validate.form()) {
|
||||
$.operate.save(prefix + "/add", $('#form-base_file-add').serialize());
|
||||
}
|
||||
}
|
||||
|
||||
$(".file-upload").fileinput({
|
||||
uploadUrl: '/common/upload',
|
||||
maxFileCount: 1,
|
||||
autoReplace: true
|
||||
}).on('fileuploaded', function (event, data, previewId, index) {
|
||||
$("input[name='" + event.currentTarget.id + "']").val(data.response.url)
|
||||
}).on('fileremoved', function (event, id, index) {
|
||||
$("input[name='" + event.currentTarget.id + "']").val('')
|
||||
})
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,110 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
||||
<head>
|
||||
<th:block th:include="include :: header('文档归档列表')" />
|
||||
</head>
|
||||
<body class="gray-bg">
|
||||
<div class="container-div">
|
||||
<div class="row">
|
||||
<div class="col-sm-12 search-collapse">
|
||||
<form id="formId">
|
||||
<div class="select-list">
|
||||
<ul>
|
||||
<li>
|
||||
<label>名称:</label>
|
||||
<input type="text" name="fileName"/>
|
||||
</li>
|
||||
<li>
|
||||
<label>归档客户:</label>
|
||||
<select name="customName">
|
||||
<option value="">所有</option>
|
||||
<option th:each="BaseCustomer : ${customers}" th:value="${BaseCustomer.customerName}"
|
||||
th:text="${BaseCustomer.customerName}"></option>
|
||||
</select>
|
||||
</li>
|
||||
<li>
|
||||
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search()"><i class="fa fa-search"></i> 搜索</a>
|
||||
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i> 重置</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="btn-group-sm" id="toolbar" role="group">
|
||||
<a class="btn btn-success" onclick="$.operate.add()" shiro:hasPermission="manage:base_file:add">
|
||||
<i class="fa fa-plus"></i> 添加
|
||||
</a>
|
||||
<a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="manage:base_file:edit">
|
||||
<i class="fa fa-edit"></i> 修改
|
||||
</a>
|
||||
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="manage:base_file:remove">
|
||||
<i class="fa fa-remove"></i> 删除
|
||||
</a>
|
||||
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="manage:base_file:export">
|
||||
<i class="fa fa-download"></i> 导出
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-sm-12 select-table table-striped">
|
||||
<table id="bootstrap-table"></table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<th:block th:include="include :: footer" />
|
||||
<script th:inline="javascript">
|
||||
var editFlag = [[${@permission.hasPermi('manage:base_file:edit')}]];
|
||||
var removeFlag = [[${@permission.hasPermi('manage:base_file:remove')}]];
|
||||
var prefix = ctx + "manage/base_file";
|
||||
|
||||
$(function() {
|
||||
var options = {
|
||||
url: prefix + "/list",
|
||||
createUrl: prefix + "/add",
|
||||
updateUrl: prefix + "/edit/{id}",
|
||||
removeUrl: prefix + "/remove",
|
||||
exportUrl: prefix + "/export",
|
||||
modalName: "文档归档",
|
||||
columns: [{
|
||||
checkbox: true
|
||||
},
|
||||
{
|
||||
field: 'objid',
|
||||
title: '主键',
|
||||
visible: false
|
||||
},
|
||||
{
|
||||
field: 'filePath',
|
||||
title: '储存路径'
|
||||
},
|
||||
{
|
||||
field: 'fileName',
|
||||
title: '名称'
|
||||
},
|
||||
{
|
||||
field: 'customName',
|
||||
title: '归档客户'
|
||||
},
|
||||
{
|
||||
field: 'createBy',
|
||||
title: '创建人'
|
||||
},
|
||||
{
|
||||
field: 'createTime',
|
||||
title: '创建时间'
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
align: 'center',
|
||||
formatter: function(value, row, index) {
|
||||
var actions = [];
|
||||
actions.push('<a class="btn btn-success btn-xs ' + editFlag + '" href="javascript:void(0)" onclick="$.operate.edit(\'' + row.objid + '\')"><i class="fa fa-edit"></i>编辑</a> ');
|
||||
actions.push('<a class="btn btn-danger btn-xs ' + removeFlag + '" href="javascript:void(0)" onclick="$.operate.remove(\'' + row.objid + '\')"><i class="fa fa-remove"></i>删除</a>');
|
||||
return actions.join('');
|
||||
}
|
||||
}]
|
||||
};
|
||||
$.table.init(options);
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,70 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
||||
<head>
|
||||
<th:block th:include="include :: header('修改文档归档')" />
|
||||
<th:block th:include="include :: bootstrap-fileinput-css"/>
|
||||
</head>
|
||||
<body class="white-bg">
|
||||
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
||||
<form class="form-horizontal m" id="form-base_file-edit" th:object="${bsaeFile}">
|
||||
<input name="objid" th:field="*{objid}" type="hidden">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">储存路径:</label>
|
||||
<div class="col-sm-8">
|
||||
<input type="hidden" name="filePath" th:field="*{filePath}">
|
||||
<div class="file-loading">
|
||||
<input class="form-control file-upload" id="filePath" name="file" type="file">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">名称:</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="fileName" th:field="*{fileName}" class="form-control" type="text">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">归档客户:</label>
|
||||
<div class="col-sm-8">
|
||||
<select name="customName" class="form-control m-b" th:field="*{customName}">
|
||||
|
||||
<option th:each="BaseCustomer : ${customers}" th:value="${BaseCustomer.customerName}"
|
||||
th:text="${BaseCustomer.customerName}"></option>
|
||||
</select>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<th:block th:include="include :: footer" />
|
||||
<th:block th:include="include :: bootstrap-fileinput-js"/>
|
||||
<script th:inline="javascript">
|
||||
var prefix = ctx + "manage/base_file";
|
||||
$("#form-base_file-edit").validate({
|
||||
focusCleanup: true
|
||||
});
|
||||
|
||||
function submitHandler() {
|
||||
if ($.validate.form()) {
|
||||
$.operate.save(prefix + "/edit", $('#form-base_file-edit').serialize());
|
||||
}
|
||||
}
|
||||
|
||||
$(".file-upload").each(function (i) {
|
||||
var val = $("input[name='" + this.id + "']").val()
|
||||
$(this).fileinput({
|
||||
'uploadUrl': '/common/upload',
|
||||
initialPreviewAsData: true,
|
||||
initialPreview: [val],
|
||||
maxFileCount: 1,
|
||||
autoReplace: true
|
||||
}).on('fileuploaded', function (event, data, previewId, index) {
|
||||
$("input[name='" + event.currentTarget.id + "']").val(data.response.url)
|
||||
}).on('fileremoved', function (event, id, index) {
|
||||
$("input[name='" + event.currentTarget.id + "']").val('')
|
||||
})
|
||||
$(this).fileinput('_initFileActions');
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue