修改 60实时数据
parent
973f917cf2
commit
b23ca3f0f0
@ -0,0 +1,126 @@
|
||||
package com.haiwei.manage.controller;
|
||||
|
||||
import java.util.List;
|
||||
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.BasePointInfo;
|
||||
import com.haiwei.manage.service.IBasePointInfoService;
|
||||
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-10-11
|
||||
*/
|
||||
@Controller
|
||||
@RequestMapping("/manage/base_point_info")
|
||||
public class BasePointInfoController extends BaseController
|
||||
{
|
||||
private String prefix = "manage/base_point_info";
|
||||
|
||||
@Autowired
|
||||
private IBasePointInfoService basePointInfoService;
|
||||
|
||||
@RequiresPermissions("manage:base_point_info:view")
|
||||
@GetMapping()
|
||||
public String base_point_info()
|
||||
{
|
||||
return prefix + "/base_point_info";
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询看板点位图列表
|
||||
*/
|
||||
@RequiresPermissions("manage:base_point_info:list")
|
||||
@PostMapping("/list")
|
||||
@ResponseBody
|
||||
public TableDataInfo list(BasePointInfo basePointInfo)
|
||||
{
|
||||
startPage();
|
||||
List<BasePointInfo> list = basePointInfoService.selectBasePointInfoList(basePointInfo);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出看板点位图列表
|
||||
*/
|
||||
@RequiresPermissions("manage:base_point_info:export")
|
||||
@Log(title = "看板点位图", businessType = BusinessType.EXPORT)
|
||||
@PostMapping("/export")
|
||||
@ResponseBody
|
||||
public AjaxResult export(BasePointInfo basePointInfo)
|
||||
{
|
||||
List<BasePointInfo> list = basePointInfoService.selectBasePointInfoList(basePointInfo);
|
||||
ExcelUtil<BasePointInfo> util = new ExcelUtil<BasePointInfo>(BasePointInfo.class);
|
||||
return util.exportExcel(list, "base_point_info");
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增看板点位图
|
||||
*/
|
||||
@GetMapping("/add")
|
||||
public String add()
|
||||
{
|
||||
return prefix + "/add";
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增保存看板点位图
|
||||
*/
|
||||
@RequiresPermissions("manage:base_point_info:add")
|
||||
@Log(title = "看板点位图", businessType = BusinessType.INSERT)
|
||||
@PostMapping("/add")
|
||||
@ResponseBody
|
||||
public AjaxResult addSave(BasePointInfo basePointInfo)
|
||||
{
|
||||
return toAjax(basePointInfoService.insertBasePointInfo(basePointInfo));
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改看板点位图
|
||||
*/
|
||||
@GetMapping("/edit/{objid}")
|
||||
public String edit(@PathVariable("objid") Long objid, ModelMap mmap)
|
||||
{
|
||||
BasePointInfo basePointInfo = basePointInfoService.selectBasePointInfoById(objid);
|
||||
mmap.put("basePointInfo", basePointInfo);
|
||||
return prefix + "/edit";
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改保存看板点位图
|
||||
*/
|
||||
@RequiresPermissions("manage:base_point_info:edit")
|
||||
@Log(title = "看板点位图", businessType = BusinessType.UPDATE)
|
||||
@PostMapping("/edit")
|
||||
@ResponseBody
|
||||
public AjaxResult editSave(BasePointInfo basePointInfo)
|
||||
{
|
||||
return toAjax(basePointInfoService.updateBasePointInfo(basePointInfo));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除看板点位图
|
||||
*/
|
||||
@RequiresPermissions("manage:base_point_info:remove")
|
||||
@Log(title = "看板点位图", businessType = BusinessType.DELETE)
|
||||
@PostMapping( "/remove")
|
||||
@ResponseBody
|
||||
public AjaxResult remove(String ids)
|
||||
{
|
||||
return toAjax(basePointInfoService.deleteBasePointInfoByIds(ids));
|
||||
}
|
||||
}
|
@ -0,0 +1,108 @@
|
||||
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;
|
||||
|
||||
/**
|
||||
* 看板点位图对象 base_point_info
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2023-10-11
|
||||
*/
|
||||
public class BasePointInfo extends BaseEntity
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/** 主键 */
|
||||
private Long objid;
|
||||
|
||||
/** 设备名称 */
|
||||
@Excel(name = "设备名称")
|
||||
private String deviceName;
|
||||
|
||||
/** 顺序 */
|
||||
@Excel(name = "顺序")
|
||||
private Long orderBy;
|
||||
|
||||
/** 标题名称 */
|
||||
@Excel(name = "标题名称")
|
||||
private String pointName;
|
||||
|
||||
/** 距左 */
|
||||
@Excel(name = "距左")
|
||||
private Long locationX;
|
||||
|
||||
/** 距上 */
|
||||
@Excel(name = "距上")
|
||||
private Long locationY;
|
||||
|
||||
public void setObjid(Long objid)
|
||||
{
|
||||
this.objid = objid;
|
||||
}
|
||||
|
||||
public Long getObjid()
|
||||
{
|
||||
return objid;
|
||||
}
|
||||
public void setDeviceName(String deviceName)
|
||||
{
|
||||
this.deviceName = deviceName;
|
||||
}
|
||||
|
||||
public String getDeviceName()
|
||||
{
|
||||
return deviceName;
|
||||
}
|
||||
public void setOrderBy(Long orderBy)
|
||||
{
|
||||
this.orderBy = orderBy;
|
||||
}
|
||||
|
||||
public Long getOrderBy()
|
||||
{
|
||||
return orderBy;
|
||||
}
|
||||
public void setPointName(String pointName)
|
||||
{
|
||||
this.pointName = pointName;
|
||||
}
|
||||
|
||||
public String getPointName()
|
||||
{
|
||||
return pointName;
|
||||
}
|
||||
public void setLocationX(Long locationX)
|
||||
{
|
||||
this.locationX = locationX;
|
||||
}
|
||||
|
||||
public Long getLocationX()
|
||||
{
|
||||
return locationX;
|
||||
}
|
||||
public void setLocationY(Long locationY)
|
||||
{
|
||||
this.locationY = locationY;
|
||||
}
|
||||
|
||||
public Long getLocationY()
|
||||
{
|
||||
return locationY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
.append("objid", getObjid())
|
||||
.append("deviceName", getDeviceName())
|
||||
.append("orderBy", getOrderBy())
|
||||
.append("pointName", getPointName())
|
||||
.append("locationX", getLocationX())
|
||||
.append("locationY", getLocationY())
|
||||
.append("updateTime", getUpdateTime())
|
||||
.toString();
|
||||
}
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.haiwei.manage.mapper;
|
||||
|
||||
import java.util.List;
|
||||
import com.haiwei.manage.domain.BasePointInfo;
|
||||
|
||||
/**
|
||||
* 看板点位图Mapper接口
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2023-10-11
|
||||
*/
|
||||
public interface BasePointInfoMapper
|
||||
{
|
||||
/**
|
||||
* 查询看板点位图
|
||||
*
|
||||
* @param objid 看板点位图ID
|
||||
* @return 看板点位图
|
||||
*/
|
||||
public BasePointInfo selectBasePointInfoById(Long objid);
|
||||
|
||||
/**
|
||||
* 查询看板点位图列表
|
||||
*
|
||||
* @param basePointInfo 看板点位图
|
||||
* @return 看板点位图集合
|
||||
*/
|
||||
public List<BasePointInfo> selectBasePointInfoList(BasePointInfo basePointInfo);
|
||||
|
||||
/**
|
||||
* 新增看板点位图
|
||||
*
|
||||
* @param basePointInfo 看板点位图
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBasePointInfo(BasePointInfo basePointInfo);
|
||||
|
||||
/**
|
||||
* 修改看板点位图
|
||||
*
|
||||
* @param basePointInfo 看板点位图
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBasePointInfo(BasePointInfo basePointInfo);
|
||||
|
||||
/**
|
||||
* 删除看板点位图
|
||||
*
|
||||
* @param objid 看板点位图ID
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBasePointInfoById(Long objid);
|
||||
|
||||
/**
|
||||
* 批量删除看板点位图
|
||||
*
|
||||
* @param objids 需要删除的数据ID
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBasePointInfoByIds(String[] objids);
|
||||
}
|
@ -0,0 +1,61 @@
|
||||
package com.haiwei.manage.service;
|
||||
|
||||
import java.util.List;
|
||||
import com.haiwei.manage.domain.BasePointInfo;
|
||||
|
||||
/**
|
||||
* 看板点位图Service接口
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2023-10-11
|
||||
*/
|
||||
public interface IBasePointInfoService
|
||||
{
|
||||
/**
|
||||
* 查询看板点位图
|
||||
*
|
||||
* @param objid 看板点位图ID
|
||||
* @return 看板点位图
|
||||
*/
|
||||
public BasePointInfo selectBasePointInfoById(Long objid);
|
||||
|
||||
/**
|
||||
* 查询看板点位图列表
|
||||
*
|
||||
* @param basePointInfo 看板点位图
|
||||
* @return 看板点位图集合
|
||||
*/
|
||||
public List<BasePointInfo> selectBasePointInfoList(BasePointInfo basePointInfo);
|
||||
|
||||
/**
|
||||
* 新增看板点位图
|
||||
*
|
||||
* @param basePointInfo 看板点位图
|
||||
* @return 结果
|
||||
*/
|
||||
public int insertBasePointInfo(BasePointInfo basePointInfo);
|
||||
|
||||
/**
|
||||
* 修改看板点位图
|
||||
*
|
||||
* @param basePointInfo 看板点位图
|
||||
* @return 结果
|
||||
*/
|
||||
public int updateBasePointInfo(BasePointInfo basePointInfo);
|
||||
|
||||
/**
|
||||
* 批量删除看板点位图
|
||||
*
|
||||
* @param ids 需要删除的数据ID
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBasePointInfoByIds(String ids);
|
||||
|
||||
/**
|
||||
* 删除看板点位图信息
|
||||
*
|
||||
* @param objid 看板点位图ID
|
||||
* @return 结果
|
||||
*/
|
||||
public int deleteBasePointInfoById(Long objid);
|
||||
}
|
@ -0,0 +1,91 @@
|
||||
package com.haiwei.manage.service.impl;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.haiwei.common.utils.DateUtils;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
import com.haiwei.manage.mapper.BasePointInfoMapper;
|
||||
import com.haiwei.manage.domain.BasePointInfo;
|
||||
import com.haiwei.manage.service.IBasePointInfoService;
|
||||
import com.haiwei.common.core.text.Convert;
|
||||
|
||||
/**
|
||||
* 看板点位图Service业务层处理
|
||||
*
|
||||
* @author wangh
|
||||
* @date 2023-10-11
|
||||
*/
|
||||
@Service
|
||||
public class BasePointInfoServiceImpl implements IBasePointInfoService {
|
||||
@Autowired
|
||||
private BasePointInfoMapper basePointInfoMapper;
|
||||
|
||||
/**
|
||||
* 查询看板点位图
|
||||
*
|
||||
* @param objid 看板点位图ID
|
||||
* @return 看板点位图
|
||||
*/
|
||||
@Override
|
||||
public BasePointInfo selectBasePointInfoById(Long objid) {
|
||||
return basePointInfoMapper.selectBasePointInfoById(objid);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询看板点位图列表
|
||||
*
|
||||
* @param basePointInfo 看板点位图
|
||||
* @return 看板点位图
|
||||
*/
|
||||
@Override
|
||||
public List<BasePointInfo> selectBasePointInfoList(BasePointInfo basePointInfo) {
|
||||
return basePointInfoMapper.selectBasePointInfoList(basePointInfo);
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增看板点位图
|
||||
*
|
||||
* @param basePointInfo 看板点位图
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int insertBasePointInfo(BasePointInfo basePointInfo) {
|
||||
basePointInfo.setUpdateTime(DateUtils.getNowDate());
|
||||
return basePointInfoMapper.insertBasePointInfo(basePointInfo);
|
||||
}
|
||||
|
||||
/**
|
||||
* 修改看板点位图
|
||||
*
|
||||
* @param basePointInfo 看板点位图
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int updateBasePointInfo(BasePointInfo basePointInfo) {
|
||||
basePointInfo.setUpdateTime(DateUtils.getNowDate());
|
||||
return basePointInfoMapper.updateBasePointInfo(basePointInfo);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除看板点位图对象
|
||||
*
|
||||
* @param ids 需要删除的数据ID
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteBasePointInfoByIds(String ids) {
|
||||
return basePointInfoMapper.deleteBasePointInfoByIds(Convert.toStrArray(ids));
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除看板点位图信息
|
||||
*
|
||||
* @param objid 看板点位图ID
|
||||
* @return 结果
|
||||
*/
|
||||
@Override
|
||||
public int deleteBasePointInfoById(Long objid) {
|
||||
return basePointInfoMapper.deleteBasePointInfoById(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', '6', '/manage/base_point_info', 'C', '0', 'manage:base_point_info: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_point_info: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_point_info: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_point_info: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_point_info: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_point_info:export', '#', 'admin', '2018-03-01', 'ry', '2018-03-01', '');
|
@ -0,0 +1,79 @@
|
||||
<?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.BasePointInfoMapper">
|
||||
|
||||
<resultMap type="BasePointInfo" id="BasePointInfoResult">
|
||||
<result property="objid" column="objid" />
|
||||
<result property="deviceName" column="device_name" />
|
||||
<result property="orderBy" column="order_by" />
|
||||
<result property="pointName" column="point_name" />
|
||||
<result property="locationX" column="location_x" />
|
||||
<result property="locationY" column="location_y" />
|
||||
<result property="updateTime" column="update_time" />
|
||||
</resultMap>
|
||||
|
||||
<sql id="selectBasePointInfoVo">
|
||||
select objid, device_name, order_by, point_name, location_x, location_y, update_time from base_point_info
|
||||
</sql>
|
||||
|
||||
<select id="selectBasePointInfoList" parameterType="BasePointInfo" resultMap="BasePointInfoResult">
|
||||
<include refid="selectBasePointInfoVo"/>
|
||||
<where>
|
||||
<if test="deviceName != null and deviceName != ''"> and device_name = #{deviceName}</if>
|
||||
</where>
|
||||
</select>
|
||||
|
||||
<select id="selectBasePointInfoById" parameterType="Long" resultMap="BasePointInfoResult">
|
||||
<include refid="selectBasePointInfoVo"/>
|
||||
where objid = #{objid}
|
||||
</select>
|
||||
|
||||
<insert id="insertBasePointInfo" parameterType="BasePointInfo">
|
||||
insert into base_point_info
|
||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||
<if test="objid != null">objid,</if>
|
||||
<if test="deviceName != null">device_name,</if>
|
||||
<if test="orderBy != null">order_by,</if>
|
||||
<if test="pointName != null">point_name,</if>
|
||||
<if test="locationX != null">location_x,</if>
|
||||
<if test="locationY != null">location_y,</if>
|
||||
<if test="updateTime != null">update_time,</if>
|
||||
</trim>
|
||||
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
||||
<if test="objid != null">#{objid},</if>
|
||||
<if test="deviceName != null">#{deviceName},</if>
|
||||
<if test="orderBy != null">#{orderBy},</if>
|
||||
<if test="pointName != null">#{pointName},</if>
|
||||
<if test="locationX != null">#{locationX},</if>
|
||||
<if test="locationY != null">#{locationY},</if>
|
||||
<if test="updateTime != null">#{updateTime},</if>
|
||||
</trim>
|
||||
</insert>
|
||||
|
||||
<update id="updateBasePointInfo" parameterType="BasePointInfo">
|
||||
update base_point_info
|
||||
<trim prefix="SET" suffixOverrides=",">
|
||||
<if test="deviceName != null">device_name = #{deviceName},</if>
|
||||
<if test="orderBy != null">order_by = #{orderBy},</if>
|
||||
<if test="pointName != null">point_name = #{pointName},</if>
|
||||
<if test="locationX != null">location_x = #{locationX},</if>
|
||||
<if test="locationY != null">location_y = #{locationY},</if>
|
||||
<if test="updateTime != null">update_time = #{updateTime},</if>
|
||||
</trim>
|
||||
where objid = #{objid}
|
||||
</update>
|
||||
|
||||
<delete id="deleteBasePointInfoById" parameterType="Long">
|
||||
delete from base_point_info where objid = #{objid}
|
||||
</delete>
|
||||
|
||||
<delete id="deleteBasePointInfoByIds" parameterType="String">
|
||||
delete from base_point_info where objid in
|
||||
<foreach item="objid" collection="array" open="(" separator="," close=")">
|
||||
#{objid}
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
</mapper>
|
@ -0,0 +1,60 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh" xmlns:th="http://www.thymeleaf.org">
|
||||
<head>
|
||||
<th:block th:include="include :: header('新增看板点位图')"/>
|
||||
</head>
|
||||
<body class="white-bg">
|
||||
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
||||
<form class="form-horizontal m" id="form-base_point_info-add">
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">设备名称:</label>
|
||||
<div class="col-sm-8">
|
||||
<select name="deviceName" class="form-control m-b"
|
||||
th:with="type=${@BaseDeviceInfoServiceImpl.selectBaseDeviceInfoList(null)}">
|
||||
<option th:each="dict : ${type}" th:text="${dict.deviceName}"
|
||||
th:value="${dict.deviceName}"></option>
|
||||
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">顺序:</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="orderBy" class="form-control" type="text">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">标题名称:</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="pointName" class="form-control" type="text">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">距左:</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="locationX" class="form-control" type="text">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">距上:</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="locationY" class="form-control" type="text">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<th:block th:include="include :: footer"/>
|
||||
<script th:inline="javascript">
|
||||
var prefix = ctx + "manage/base_point_info"
|
||||
$("#form-base_point_info-add").validate({
|
||||
focusCleanup: true
|
||||
});
|
||||
|
||||
function submitHandler() {
|
||||
if ($.validate.form()) {
|
||||
$.operate.save(prefix + "/add", $('#form-base_point_info-add').serialize());
|
||||
}
|
||||
}
|
||||
</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>
|
||||
<select name="deviceName" th:with="type=${@BaseDeviceInfoServiceImpl.selectBaseDeviceInfoList(null)}">
|
||||
<option value="">所有</option>
|
||||
<option th:each="dict : ${type}" th:text="${dict.deviceName}"
|
||||
th:value="${dict.deviceName}"></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_point_info:add">
|
||||
<i class="fa fa-plus"></i> 添加
|
||||
</a>
|
||||
<a class="btn btn-primary single disabled" onclick="$.operate.edit()" shiro:hasPermission="manage:base_point_info:edit">
|
||||
<i class="fa fa-edit"></i> 修改
|
||||
</a>
|
||||
<a class="btn btn-danger multiple disabled" onclick="$.operate.removeAll()" shiro:hasPermission="manage:base_point_info:remove">
|
||||
<i class="fa fa-remove"></i> 删除
|
||||
</a>
|
||||
<a class="btn btn-warning" onclick="$.table.exportExcel()" shiro:hasPermission="manage:base_point_info: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_point_info:edit')}]];
|
||||
var removeFlag = [[${@permission.hasPermi('manage:base_point_info:remove')}]];
|
||||
var prefix = ctx + "manage/base_point_info";
|
||||
|
||||
$(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: 'deviceName',
|
||||
title: '设备名称'
|
||||
},
|
||||
{
|
||||
field: 'orderBy',
|
||||
title: '顺序'
|
||||
},
|
||||
{
|
||||
field: 'pointName',
|
||||
title: '标题名称'
|
||||
},
|
||||
{
|
||||
field: 'locationX',
|
||||
title: '距左'
|
||||
},
|
||||
{
|
||||
field: 'locationY',
|
||||
title: '距上'
|
||||
},
|
||||
{
|
||||
field: 'updateTime',
|
||||
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,61 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
|
||||
<head>
|
||||
<th:block th:include="include :: header('修改看板点位图')" />
|
||||
</head>
|
||||
<body class="white-bg">
|
||||
<div class="wrapper wrapper-content animated fadeInRight ibox-content">
|
||||
<form class="form-horizontal m" id="form-base_point_info-edit" th:object="${basePointInfo}">
|
||||
<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">
|
||||
<select name="deviceName" class="form-control m-b" th:field="*{deviceName}"
|
||||
th:with="type=${@BaseDeviceInfoServiceImpl.selectBaseDeviceInfoList(null)}">
|
||||
<option th:each="dict : ${type}" th:text="${dict.deviceName}"
|
||||
th:value="${dict.deviceName}"></option>
|
||||
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">顺序:</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="orderBy" th:field="*{orderBy}" class="form-control" type="text">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">标题名称:</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="pointName" th:field="*{pointName}" class="form-control" type="text">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">距左:</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="locationX" th:field="*{locationX}" class="form-control" type="text">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label class="col-sm-3 control-label">距上:</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="locationY" th:field="*{locationY}" class="form-control" type="text">
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<th:block th:include="include :: footer" />
|
||||
<script th:inline="javascript">
|
||||
var prefix = ctx + "manage/base_point_info";
|
||||
$("#form-base_point_info-edit").validate({
|
||||
focusCleanup: true
|
||||
});
|
||||
|
||||
function submitHandler() {
|
||||
if ($.validate.form()) {
|
||||
$.operate.save(prefix + "/edit", $('#form-base_point_info-edit').serialize());
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue