增加 文档

master
wangh 2 years ago
parent c293228f8a
commit be4d78c06b

@ -30,30 +30,6 @@
<optional>true</optional> <!-- 表示依赖不会传递 -->
</dependency>
<!-- swagger2-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
</dependency>
<!--防止进入swagger页面报类型转换错误排除2.9.2中的引用手动增加1.5.21版本-->
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>1.5.21</version>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-models</artifactId>
<version>1.5.21</version>
</dependency>
<!-- swagger2-UI-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
</dependency>
<!-- Mysql驱动包 -->
<dependency>

@ -67,6 +67,4 @@ public class ApiController {
public AjaxResult queryPramList(Date beginTime, Date endTime) {
return success(iApiService.queryPramList(beginTime, endTime));
}
}

@ -6,11 +6,11 @@ spring:
druid:
# 主库数据源
master:
# url: jdbc:sqlserver://121.36.58.109:1433;SelectMethod=cursor;DatabaseName=Hsdb
url: jdbc:sqlserver://localhost:1433;SelectMethod=cursor;DatabaseName=Hsdb
url: jdbc:sqlserver://121.36.58.109:1433;SelectMethod=cursor;DatabaseName=Hsdb
# url: jdbc:sqlserver://localhost:1433;SelectMethod=cursor;DatabaseName=Hsdb
username: sa
# password: haiwei@123
password: sa
password: haiwei@123
# password: sa
# 从库数据源
slave:
# 从数据源开关/默认关闭

@ -7,7 +7,7 @@ ruoyi:
# 版权年份
copyrightYear: 2023
# 实例演示开关
demoEnabled: true
demoEnabled: false
# 文件路径 示例( Windows配置D:/ruoyi/uploadPathLinux配置 /home/ruoyi/uploadPath
profile: D:/ruoyi/uploadPath
# profile: /Users/sxile/MyWorkSpase/WorkSpase/uploadPath/RuoYi-SqlServer
@ -113,7 +113,7 @@ shiro:
cipherKey: zSyK5Kp6PZAAjlT+eeNMlg==
session:
# Session超时时间-1代表永不过期默认30分钟
expireTime: 30
expireTime: -1
# 同步session到数据库的周期默认1分钟
dbSyncPeriod: 1
# 相隔多久检查一次session的有效性默认就是10分钟

Binary file not shown.

Before

Width:  |  Height:  |  Size: 364 KiB

After

Width:  |  Height:  |  Size: 640 KiB

@ -18,7 +18,7 @@
}
const routerSkip = (e) => {
try {
$.modal.openTab('看板1', ctx + e);
$.modal.openTab('设备智能驾驶舱', ctx + e);
} catch (val) {
location.href = ctx + e
}

@ -1,14 +1,14 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
<head>
<th:block th:include="include :: header('看板2')"/>
<th:block th:include="include :: header('设备智能驾驶舱')"/>
</head>
<body class="white-bg">
<link href="../../board/board2.css" rel="stylesheet">
<script>
const routerSkip = (e) => {
try {
$.modal.openTab('看板1', ctx + e);
$.modal.openTab('设备智能驾驶舱', ctx + e);
} catch (val) {
location.href = ctx + e
}

@ -95,6 +95,32 @@
<artifactId>javax.servlet-api</artifactId>
</dependency>
<!-- swagger2-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
</dependency>
<!--防止进入swagger页面报类型转换错误排除2.9.2中的引用手动增加1.5.21版本-->
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>1.5.21</version>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-models</artifactId>
<version>1.5.21</version>
</dependency>
<!-- swagger2-UI-->
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
</dependency>
</dependencies>
</project>

@ -1,6 +1,8 @@
package com.haiwei.manage.controller;
import java.util.List;
import io.swagger.annotations.ApiOperation;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
@ -21,14 +23,13 @@ import com.haiwei.common.core.page.TableDataInfo;
/**
* Controller
*
*
* @author wangh
* @date 2023-08-15
*/
@Controller
@RequestMapping("/manage/base_customer")
public class BaseCustomerController extends BaseController
{
public class BaseCustomerController extends BaseController {
private String prefix = "manage/base_customer";
@Autowired
@ -36,8 +37,7 @@ public class BaseCustomerController extends BaseController
@RequiresPermissions("manage:base_customer:view")
@GetMapping()
public String base_customer()
{
public String base_customer() {
return prefix + "/base_customer";
}
@ -47,8 +47,7 @@ public class BaseCustomerController extends BaseController
@RequiresPermissions("manage:base_customer:list")
@PostMapping("/list")
@ResponseBody
public TableDataInfo list(BaseCustomer baseCustomer)
{
public TableDataInfo list(BaseCustomer baseCustomer) {
startPage();
List<BaseCustomer> list = baseCustomerService.selectBaseCustomerList(baseCustomer);
return getDataTable(list);
@ -61,8 +60,7 @@ public class BaseCustomerController extends BaseController
@Log(title = "客户信息管理", businessType = BusinessType.EXPORT)
@PostMapping("/export")
@ResponseBody
public AjaxResult export(BaseCustomer baseCustomer)
{
public AjaxResult export(BaseCustomer baseCustomer) {
List<BaseCustomer> list = baseCustomerService.selectBaseCustomerList(baseCustomer);
ExcelUtil<BaseCustomer> util = new ExcelUtil<BaseCustomer>(BaseCustomer.class);
return util.exportExcel(list, "base_customer");
@ -71,9 +69,9 @@ public class BaseCustomerController extends BaseController
/**
*
*/
@ApiOperation(tags = {"文档归档"}, value = "客户-添加")
@GetMapping("/add")
public String add()
{
public String add() {
return prefix + "/add";
}
@ -84,8 +82,7 @@ public class BaseCustomerController extends BaseController
@Log(title = "客户信息管理", businessType = BusinessType.INSERT)
@PostMapping("/add")
@ResponseBody
public AjaxResult addSave(BaseCustomer baseCustomer)
{
public AjaxResult addSave(BaseCustomer baseCustomer) {
return toAjax(baseCustomerService.insertBaseCustomer(baseCustomer));
}
@ -93,8 +90,7 @@ public class BaseCustomerController extends BaseController
*
*/
@GetMapping("/edit/{objid}")
public String edit(@PathVariable("objid") Long objid, ModelMap mmap)
{
public String edit(@PathVariable("objid") Long objid, ModelMap mmap) {
BaseCustomer baseCustomer = baseCustomerService.selectBaseCustomerById(objid);
mmap.put("baseCustomer", baseCustomer);
return prefix + "/edit";
@ -107,20 +103,19 @@ public class BaseCustomerController extends BaseController
@Log(title = "客户信息管理", businessType = BusinessType.UPDATE)
@PostMapping("/edit")
@ResponseBody
public AjaxResult editSave(BaseCustomer baseCustomer)
{
public AjaxResult editSave(BaseCustomer baseCustomer) {
return toAjax(baseCustomerService.updateBaseCustomer(baseCustomer));
}
/**
*
*/
@ApiOperation(tags = {"文档归档"}, value = "客户-删除")
@RequiresPermissions("manage:base_customer:remove")
@Log(title = "客户信息管理", businessType = BusinessType.DELETE)
@PostMapping( "/remove")
@PostMapping("/remove")
@ResponseBody
public AjaxResult remove(String ids)
{
public AjaxResult remove(String ids) {
return toAjax(baseCustomerService.deleteBaseCustomerByIds(ids));
}
}

@ -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>&nbsp;搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset()"><i class="fa fa-refresh"></i>&nbsp;重置</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…
Cancel
Save