commit
4419de2aff
@ -0,0 +1,69 @@
|
||||
package com.ruoyi.web.controller.system.property;
|
||||
|
||||
import com.ruoyi.common.annotation.Log;
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
import com.ruoyi.common.enums.BusinessType;
|
||||
import com.ruoyi.system.domain.TdPropertyInfo;
|
||||
import com.ruoyi.system.service.ITdPropertyInfoService;
|
||||
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.*;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Controller
|
||||
@RequestMapping("/system/propertyDestory")
|
||||
public class TdPropertyDestoryController extends BaseController {
|
||||
private String prefix = "system/property/propertydestory";
|
||||
@Autowired
|
||||
private ITdPropertyInfoService tdPropertyInfoService;
|
||||
|
||||
@RequiresPermissions("system:destoryproperty:view")
|
||||
@GetMapping()
|
||||
public String destoryProperty()
|
||||
{
|
||||
return prefix + "/destoryproperty";
|
||||
}
|
||||
|
||||
/**
|
||||
* 资产登记列表
|
||||
*/
|
||||
@RequiresPermissions("system:destoryproperty:list")
|
||||
@PostMapping("/list")
|
||||
@ResponseBody
|
||||
public TableDataInfo list(TdPropertyInfo tdPropertyInfo)
|
||||
{
|
||||
startPage();
|
||||
List<TdPropertyInfo> tdPropertyInfos = tdPropertyInfoService.selectTdPropertyInfoList(tdPropertyInfo);
|
||||
return getDataTable(tdPropertyInfos);
|
||||
}
|
||||
|
||||
/**
|
||||
* 涉密资产报废
|
||||
*/
|
||||
@RequiresPermissions("system:destoryproperty:destory")
|
||||
@GetMapping("/destory/{id}")
|
||||
public String destory(@PathVariable("id") String id, ModelMap mmap)
|
||||
{
|
||||
TdPropertyInfo tdPropertyInfo = tdPropertyInfoService.selectTdPropertyInfoById(id);
|
||||
mmap.put("tdPropertyInfo", tdPropertyInfo);
|
||||
return prefix + "/destory";
|
||||
}
|
||||
|
||||
/**
|
||||
* 保存变更修改
|
||||
*/
|
||||
@RequiresPermissions("system:destoryproperty:destory")
|
||||
@Log(title = "资产变更", businessType = BusinessType.UPDATE)
|
||||
@PostMapping("/destory")
|
||||
@ResponseBody
|
||||
public AjaxResult destorySave(TdPropertyInfo tdPropertyInfo)
|
||||
{
|
||||
return toAjax(tdPropertyInfoService.updateTdPropertyInfo(tdPropertyInfo));
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,65 @@
|
||||
package com.ruoyi.web.controller.system.property;
|
||||
|
||||
import com.ruoyi.common.core.controller.BaseController;
|
||||
import com.ruoyi.common.core.page.TableDataInfo;
|
||||
import com.ruoyi.system.domain.TdPropertyManager;
|
||||
import com.ruoyi.system.service.ITdPropertyManagerService;
|
||||
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.*;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* packageName com.ruoyi.web.controller.system.property
|
||||
*
|
||||
* @author luoluo
|
||||
* @version JDK 8
|
||||
* @className TdPropertyDestoryListController
|
||||
* @date 2024/6/24
|
||||
* @description 资产销毁
|
||||
*/
|
||||
@Controller
|
||||
@RequestMapping("/system/propertyDestory/list")
|
||||
public class TdPropertyDestoryListController extends BaseController {
|
||||
|
||||
private String prefix = "system/property/propertydestory/list";
|
||||
|
||||
@Autowired
|
||||
private ITdPropertyManagerService tdPropertyManagerService;
|
||||
|
||||
@RequiresPermissions("system:propertyDestory:view")
|
||||
@GetMapping()
|
||||
public String property()
|
||||
{
|
||||
return prefix + "/property";
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询资产登记列表
|
||||
*/
|
||||
@RequiresPermissions("system:destory:list")
|
||||
@PostMapping("/list")
|
||||
@ResponseBody
|
||||
public TableDataInfo list(TdPropertyManager tdPropertyManager)
|
||||
{
|
||||
startPage();
|
||||
List<TdPropertyManager> list = tdPropertyManagerService.selectTdPropertyManagerList(tdPropertyManager);
|
||||
return getDataTable(list);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 资产条目
|
||||
*/
|
||||
@RequiresPermissions("system:destory:detail")
|
||||
@GetMapping("/detail/{useId}")
|
||||
public String detail(@PathVariable("useId") String useId, ModelMap mmap)
|
||||
{
|
||||
mmap.put("useId",useId);
|
||||
return "system/property/propertydestory/destoryproperty";
|
||||
}
|
||||
}
|
@ -0,0 +1,117 @@
|
||||
<!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="id"/>
|
||||
</li>
|
||||
<li>
|
||||
<label>设备品牌:</label>
|
||||
<input type="text" name="propertyBrand"/>
|
||||
</li>
|
||||
<li>
|
||||
<label>资产型号:</label>
|
||||
<input type="text" name="propertyNo"/>
|
||||
</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-danger" onclick="closeItem()">
|
||||
<i class="fa fa-reply-all"></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('system:destoryproperty:change')}]];
|
||||
var destoryFlag = [[${@permission.hasPermi('system:destoryproperty:destory')}]];
|
||||
var removeFlag = [[${@permission.hasPermi('system:destoryproperty:remove')}]];
|
||||
var propertyTypeDatas = [[${@dict.getType('sys_sm_property')}]];
|
||||
var destoryTypeDatas = [[${@dict.getType('sys_baofei_type')}]];
|
||||
var prefix = ctx + "system/propertyDestory";
|
||||
|
||||
$(function() {
|
||||
var options = {
|
||||
url: prefix + "/list",
|
||||
updateUrl: prefix + "/edit/{id}",
|
||||
destoryUrl: prefix + "/destory/{id}",
|
||||
queryParams: queryParams,
|
||||
modalName: "设备登记",
|
||||
columns: [
|
||||
{
|
||||
field: 'id',
|
||||
title: '登记编号'
|
||||
},
|
||||
{
|
||||
field: 'propertyBrand',
|
||||
title: '设备品牌'
|
||||
},
|
||||
{
|
||||
field: 'propertyType',
|
||||
title: '资产种类',
|
||||
formatter: function(value, row, index) {
|
||||
return $.table.selectDictLabel(propertyTypeDatas, value);
|
||||
}
|
||||
},
|
||||
{
|
||||
field: 'propertyNo',
|
||||
title: '资产型号'
|
||||
},
|
||||
{
|
||||
field: 'propertySn',
|
||||
title: '资产SN码'
|
||||
},
|
||||
{
|
||||
field: 'destoryType',
|
||||
title: '报废状态',
|
||||
formatter: function(value, row, index) {
|
||||
return $.table.selectDictLabel(destoryTypeDatas, value);
|
||||
}
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
align: 'center',
|
||||
formatter: function(value, row, index) {
|
||||
var actions = [];
|
||||
actions.push('<a class="btn btn-danger btn-xs ' + destoryFlag + '" href="javascript:void(0)" onclick="destory(\'' + row.id + '\')"><i class="fa fa-remove"></i>销毁</a>');
|
||||
return actions.join('');
|
||||
}
|
||||
}]
|
||||
};
|
||||
$.table.init(options);
|
||||
});
|
||||
|
||||
|
||||
function queryParams(params) {
|
||||
var search = $.table.queryParams(params);
|
||||
search.useId = [[${useId}]];
|
||||
return search;
|
||||
}
|
||||
|
||||
function destory(id) {
|
||||
var url = prefix + '/destory/' + id;
|
||||
$.modal.open("资产报废", url);
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,164 @@
|
||||
<!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" id="app">
|
||||
<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="frameworkId"/>
|
||||
</li>
|
||||
<li>
|
||||
<label>资产编号:</label>
|
||||
<input type="text" name="useId"/>
|
||||
</li>
|
||||
<li>
|
||||
<label>所属市州:</label>
|
||||
<select id="City" name="part" @change="getAreaList()" v-model="City">
|
||||
<option value="">---请选择---</option>
|
||||
<option v-for="option in CityList" :value="option.id" :key="option.id">
|
||||
{{ option.name }}
|
||||
</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">
|
||||
|
||||
</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 listFlag = [[${@permission.hasPermi('system:destory:detail')}]];
|
||||
var prefix = ctx + "system/propertyDestory/list";
|
||||
let datas = []
|
||||
$.ajax({
|
||||
url: ctx + "system/area/getAllList",
|
||||
type: 'GET',
|
||||
data:{parentId:''} ,
|
||||
success:((res)=>{
|
||||
datas = res.data
|
||||
}) ,
|
||||
});
|
||||
$(function() {
|
||||
var options = {
|
||||
url: prefix + "/list",
|
||||
createUrl: prefix + "/add",
|
||||
updateUrl: prefix + "/edit/{id}",
|
||||
removeUrl: prefix + "/remove",
|
||||
exportUrl: prefix + "/export",
|
||||
modalName: "资产登记",
|
||||
columns: [
|
||||
{
|
||||
field: 'useId',
|
||||
title: '资产编号'
|
||||
},
|
||||
{
|
||||
field: 'part',
|
||||
title: '所属市州',
|
||||
formatter: function(value, row, index) {
|
||||
return getCity(datas, value)
|
||||
}
|
||||
},
|
||||
{
|
||||
field: 'areaId',
|
||||
title: '所属区县',
|
||||
formatter: function(value, row, index) {
|
||||
return getCity(datas, value)
|
||||
}
|
||||
},
|
||||
{
|
||||
field: 'useDepart',
|
||||
title: '使用部门'
|
||||
},
|
||||
{
|
||||
field: 'userName',
|
||||
title: '使用人员'
|
||||
},
|
||||
{
|
||||
field: 'recoverName',
|
||||
title: '登记人员'
|
||||
},
|
||||
{
|
||||
field: 'recoverDate',
|
||||
title: '配发日期'
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
align: 'center',
|
||||
formatter: function(value, row, index) {
|
||||
var actions = [];
|
||||
actions.push('<a class="btn btn-info btn-xs ' + listFlag + '" href="javascript:void(0)" onclick="detail(\'' + row.useId + '\')"><i class="fa fa-list-ul"></i>报废</a> ');
|
||||
return actions.join('');
|
||||
}
|
||||
}]
|
||||
};
|
||||
$.table.init(options);
|
||||
});
|
||||
var app = new Vue({
|
||||
el: '#app',
|
||||
data: {
|
||||
CityList: [],
|
||||
AreaList:[],
|
||||
City:'',
|
||||
Area:'',
|
||||
params:{
|
||||
parentId:'',
|
||||
}
|
||||
},
|
||||
mounted(){
|
||||
// 初始化地市列表
|
||||
this.getCityList();
|
||||
if (this.City){
|
||||
this.getAreaList()
|
||||
}
|
||||
},
|
||||
methods:{
|
||||
getCityList(){
|
||||
$.ajax({
|
||||
url: ctx + "system/area/getSysAreaList",
|
||||
type: 'GET',
|
||||
data:this.params ,
|
||||
success:((res)=>{
|
||||
this.CityList = res.data
|
||||
}) ,
|
||||
});
|
||||
},
|
||||
getAreaList(){
|
||||
this.params.parentId = this.City
|
||||
$.ajax({
|
||||
url: ctx + "system/area/getSysAreaList",
|
||||
type: 'GET',
|
||||
data:this.params,
|
||||
success:((res)=>{
|
||||
this.AreaList = res.data
|
||||
}) ,
|
||||
});
|
||||
}
|
||||
}
|
||||
})
|
||||
/*资产列表-详细*/
|
||||
function detail(useId) {
|
||||
var url = prefix + '/detail/' + useId;
|
||||
$.modal.openTab("资产列表数据", url);
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in new issue