修改 60实时数据

master
wangh 2 years ago
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();
}
}

@ -5,7 +5,34 @@ package com.haiwei.manage.domain;
* @date 2023/8/30 17:10
*/
public class ParamVo {
private String name, pointname, data;
private int order_by;
private String name, pointname, data;
private int location_x,
location_y;
public int getOrder_by() {
return order_by;
}
public void setOrder_by(int order_by) {
this.order_by = order_by;
}
public int getLocation_x() {
return location_x;
}
public void setLocation_x(int location_x) {
this.location_x = location_x;
}
public int getLocation_y() {
return location_y;
}
public void setLocation_y(int location_y) {
this.location_y = location_y;
}
public String getName() {
return name;

@ -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);
}

@ -16,7 +16,7 @@ import com.haiwei.common.core.text.Convert;
* @author wangh
* @date 2023-08-15
*/
@Service
@Service("BaseDeviceInfoServiceImpl")
public class BaseDeviceInfoServiceImpl implements IBaseDeviceInfoService
{
@Autowired

@ -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', '');

@ -6,7 +6,10 @@
<select id="queryPram" resultType="com.haiwei.manage.domain.ParamVo">
SELECT ee.name,
SELECT order_by,
ee.point_name as name,
location_x,
location_y,
info.PointName as pointname,
ed.Data as data
FROM EPointData ed
@ -16,8 +19,8 @@
GROUP BY PID
) ld on ld.PID = ed.PID and ld.LatestTime = CreateTime
right join EPointsInfo info on ed.PID = info.ID
left join EEquipmentMaintenance ee on ee.ID = info.EID
where ee.EquipmentType = 1
left join base_point_info ee on ee.objid = info.EID
where info.Status = 1 order by order_by
</select>
<select id="queryDeviceState" resultType="com.haiwei.manage.domain.ParamVo">
SELECT name,

@ -31,7 +31,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
</select>
<select id="selectBaseDeviceInfoListByDeviceName" parameterType="BaseDeviceInfo" resultMap="BaseDeviceInfoResult">
select top 1 device_name, device_spe, device_function, device_param
select top 1 device_name, device_function, device_param
from base_device_info where device_name = #{deviceName}
</select>

@ -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>

@ -33,15 +33,15 @@
<!-- <input class="form-control file-upload" id="deviceMode" 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="deviceSpe" 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="deviceSpe" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">功能描述:</label>
<label class="col-sm-3 control-label">设备描述:</label>
<div class="col-sm-8">
<input name="deviceFunction" class="form-control" type="text">
</div>

@ -86,13 +86,13 @@
// return $.table.imageView(value);
// }
// },
{
field: 'deviceSpe',
title: '设备规格'
},
// {
// field: 'deviceSpe',
// title: '设备规格'
// },
{
field: 'deviceFunction',
title: '功能描述'
title: '设备描述'
},
{
field: 'deviceParam',

@ -32,15 +32,15 @@
<!-- <input class="form-control file-upload" id="deviceMode" 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="deviceSpe" th:field="*{deviceSpe}" 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="deviceSpe" th:field="*{deviceSpe}" class="form-control" type="text">
</div>
</div>
<div class="form-group">
<label class="col-sm-3 control-label">功能描述:</label>
<label class="col-sm-3 control-label">设备描述:</label>
<div class="col-sm-8">
<input name="deviceFunction" th:field="*{deviceFunction}" class="form-control" type="text">
</div>

@ -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>&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_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…
Cancel
Save