Commit 60445db3 authored by hehongwei's avatar hehongwei

费用来源对应关系

parent 5b045162
...@@ -33,15 +33,15 @@ public class ActClassificationController extends BaseController ...@@ -33,15 +33,15 @@ public class ActClassificationController extends BaseController
* 查询上级分类 * 查询上级分类
* */ * */
@PreAuthorize("@ss.hasPermi('ActClassification:ActClassification:savepid')") @PreAuthorize("@ss.hasPermi('ActClassification:ActClassification:savepid')")
@GetMapping("/savepid") @GetMapping("/savepid/{sskId}")
@ResponseBody @ResponseBody
public TableDataInfo saveSid(){ public TableDataInfo saveSid(@PathVariable("sskId") Long sskId){
List<ActClassification> options = actClassificationService.savePid();
List<ActClassification> options = actClassificationService.savePid(sskId);
return getDataTable(options); return getDataTable(options);
} }
/** /**
* 查询分配信息列表 * 查询分配信息列表
*/ */
...@@ -117,7 +117,6 @@ public class ActClassificationController extends BaseController ...@@ -117,7 +117,6 @@ public class ActClassificationController extends BaseController
@PutMapping("/{id}/enable") @PutMapping("/{id}/enable")
public AjaxResult setEnable(@PathVariable("id") Long id, @RequestParam("status") Integer status) public AjaxResult setEnable(@PathVariable("id") Long id, @RequestParam("status") Integer status)
{ {
actClassificationService.setEnable(id,status); actClassificationService.setEnable(id,status);
if (status < 0){ if (status < 0){
return AjaxResult.error(ServiceCode.ERR_CODE+"","启用失败"); return AjaxResult.error(ServiceCode.ERR_CODE+"","启用失败");
...@@ -164,4 +163,11 @@ public class ActClassificationController extends BaseController ...@@ -164,4 +163,11 @@ public class ActClassificationController extends BaseController
public List<ActClassification> getSubActClassifications(@PathVariable("parentId") int parentId) { public List<ActClassification> getSubActClassifications(@PathVariable("parentId") int parentId) {
return actClassificationService.getSubActClassifications(parentId); return actClassificationService.getSubActClassifications(parentId);
} }
@PreAuthorize("@ss.hasPermission('ActClassification:ActClassification:SunDy')")
@GetMapping("/SunDy/{sskId}")
public List<ActClassification> getSubActClassDy(@PathVariable("sskId") int sskId) {
return actClassificationService.getSubActClassDy(sskId);
}
} }
...@@ -22,18 +22,29 @@ public class ActClassification extends BaseEntity ...@@ -22,18 +22,29 @@ public class ActClassification extends BaseEntity
@Excel(name = "名称") @Excel(name = "名称")
private String name; private String name;
private String fname; private String nameType;
/** 父ID */ /** 父ID */
@Excel(name = "父ID") @Excel(name = "父ID")
private Long pid; private Long pid;
private Long sskId;
public String getFname() { private String type;
return fname;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getNameType() {
return nameType;
} }
public void setFname(String fname) { public void setNameType(String nameType) {
this.fname = fname; this.nameType = nameType;
} }
/** 状态 */ /** 状态 */
...@@ -67,6 +78,15 @@ public class ActClassification extends BaseEntity ...@@ -67,6 +78,15 @@ public class ActClassification extends BaseEntity
{ {
return pid; return pid;
} }
public Long getSskId() {
return sskId;
}
public void setSskId(Long sskId) {
this.sskId = sskId;
}
public void setStatus(Integer status) public void setStatus(Integer status)
{ {
this.status = status; this.status = status;
......
...@@ -73,5 +73,7 @@ public interface ActClassificationMapper ...@@ -73,5 +73,7 @@ public interface ActClassificationMapper
List<ActClassification> selectAll(); List<ActClassification> selectAll();
List<ActClassification> selectByParentId(int parentId); List<ActClassification> selectByParentId(int parentId);
List<ActClassification> savePid(); List<ActClassification> savePid(Long sskId);
List<ActClassification> selectSubActDy(int sskId);
} }
...@@ -82,5 +82,7 @@ public interface IActClassificationService ...@@ -82,5 +82,7 @@ public interface IActClassificationService
List<ActClassification> getAllActClassifications(); List<ActClassification> getAllActClassifications();
List<ActClassification> getSubActClassifications(int parentId); List<ActClassification> getSubActClassifications(int parentId);
List<ActClassification> savePid(); List<ActClassification> savePid(Long sskId);
List<ActClassification> getSubActClassDy(int sskId);
} }
...@@ -58,6 +58,7 @@ public class ActClassificationServiceImpl implements IActClassificationService ...@@ -58,6 +58,7 @@ public class ActClassificationServiceImpl implements IActClassificationService
public int insertActClassification(ActClassification actClassification) public int insertActClassification(ActClassification actClassification)
{ {
actClassification.setCreateTime(DateUtils.getNowDate()); actClassification.setCreateTime(DateUtils.getNowDate());
return actClassificationMapper.insertActClassification(actClassification); return actClassificationMapper.insertActClassification(actClassification);
} }
...@@ -133,8 +134,13 @@ public class ActClassificationServiceImpl implements IActClassificationService ...@@ -133,8 +134,13 @@ public class ActClassificationServiceImpl implements IActClassificationService
} }
@Override @Override
public List<ActClassification> savePid() { public List<ActClassification> savePid(Long sskId) {
return actClassificationMapper.savePid(); return actClassificationMapper.savePid(sskId);
}
@Override
public List<ActClassification> getSubActClassDy(int sskId) {
return actClassificationMapper.selectSubActDy(sskId);
} }
@Override @Override
......
...@@ -301,7 +301,6 @@ public class ActSuppliesHistorydataServiceImpl implements IActSuppliesHistorydat ...@@ -301,7 +301,6 @@ public class ActSuppliesHistorydataServiceImpl implements IActSuppliesHistorydat
public void run() { public void run() {
//导入清洗表数据 //导入清洗表数据
for (int i = 0; i < actOperation2s.size(); i++) { for (int i = 0; i < actOperation2s.size(); i++) {
//JSONArray parse = (JSONArray) JSONArray.parse(actOperation2s.get(i).getHistoryRole()); //JSONArray parse = (JSONArray) JSONArray.parse(actOperation2s.get(i).getHistoryRole());
...@@ -351,9 +350,6 @@ public class ActSuppliesHistorydataServiceImpl implements IActSuppliesHistorydat ...@@ -351,9 +350,6 @@ public class ActSuppliesHistorydataServiceImpl implements IActSuppliesHistorydat
} }
} }
// for (int i = 0; i < actOperation2s.size(); i++) { // for (int i = 0; i < actOperation2s.size(); i++) {
// //
// //获取导入excel表数据存储到生成表实体类中 // //获取导入excel表数据存储到生成表实体类中
...@@ -429,6 +425,7 @@ public class ActSuppliesHistorydataServiceImpl implements IActSuppliesHistorydat ...@@ -429,6 +425,7 @@ public class ActSuppliesHistorydataServiceImpl implements IActSuppliesHistorydat
if (actOperation2s.get(i).getActOperation2()[x][y].getV() != null) { if (actOperation2s.get(i).getActOperation2()[x][y].getV() != null) {
try { try {
actSuppliesImportTable.getClass().getMethod("set" + attributes[y], String.class).invoke(actSuppliesImportTable, actOperation2s.get(i).getActOperation2()[x][y].getV()); actSuppliesImportTable.getClass().getMethod("set" + attributes[y], String.class).invoke(actSuppliesImportTable, actOperation2s.get(i).getActOperation2()[x][y].getV());
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
} }
......
...@@ -117,7 +117,7 @@ public class ActSuppliesServiceImpl implements IActSuppliesService ...@@ -117,7 +117,7 @@ public class ActSuppliesServiceImpl implements IActSuppliesService
actSupplies.setUpdateBy(user.getUserName()); actSupplies.setUpdateBy(user.getUserName());
actSupplies.setUpdateTime(DateUtils.getNowDate()); actSupplies.setUpdateTime(DateUtils.getNowDate());
return actSuppliesMapper.updateActSupplies(actSupplies); return actSuppliesMapper.updateActSupplies(actSupplies);
} }
/** /**
......
...@@ -8,7 +8,9 @@ ...@@ -8,7 +8,9 @@
<result property="id" column="id" /> <result property="id" column="id" />
<result property="name" column="name" /> <result property="name" column="name" />
<result property="pid" column="pid" /> <result property="pid" column="pid" />
<result property="fname" column="fname" /> <result property="nameType" column="fname" />
<result property="type" column="type" />
<result property="sskId" column="ssk_id" />
<result property="status" column="status" /> <result property="status" column="status" />
<result property="createBy" column="create_by" /> <result property="createBy" column="create_by" />
<result property="createTime" column="create_time" /> <result property="createTime" column="create_time" />
...@@ -17,12 +19,12 @@ ...@@ -17,12 +19,12 @@
</resultMap> </resultMap>
<sql id="selectActClassificationVo"> <sql id="selectActClassificationVo">
select id, name, pid, status, create_by, create_time, update_by, update_time from act_classification select id, name, name_type ,type,ssk_id, pid, status, create_by, create_time, update_by, update_time from act_classification
</sql> </sql>
<select id="selectActClassificationList" parameterType="ActClassification" resultMap="ActClassificationResult"> <select id="selectActClassificationList" parameterType="ActClassification" resultMap="ActClassificationResult">
select a.id, a.name, a.pid, a.status, a.create_by, a.update_by, b.name fname from act_classification a left join act_classification b on a.pid = b.id select a.id, a.name,a.type,a.ssk_id, a.pid, a.status, a.create_by, a.update_by, b.name fname from act_classification a left join act_classification b on a.pid = b.id
<where> <where>
<if test="name != null">and a.name = #{name }</if> <if test="name != null">and a.name = #{name }</if>
<if test="id != null">and a.pid = #{id}</if> <if test="id != null">and a.pid = #{id}</if>
<if test="status != null"> and a.status=#{status}</if> <if test="status != null"> and a.status=#{status}</if>
...@@ -34,8 +36,8 @@ ...@@ -34,8 +36,8 @@
where id = #{id} where id = #{id}
</select> </select>
<select id="savePid" parameterType="ActClassification" resultMap="ActClassificationResult"> <select id="savePid" parameterType="Long" resultMap="ActClassificationResult">
select id ,pid,name from act_classification where pid=0 and status = 0; select id ,pid,name from act_classification where type = 2 and ssk_id = #{sskId} and status = 0;
</select> </select>
<update id="setEnable" parameterType="java.util.Map"> <update id="setEnable" parameterType="java.util.Map">
...@@ -57,7 +59,9 @@ ...@@ -57,7 +59,9 @@
insert into act_classification insert into act_classification
<trim prefix="(" suffix=")" suffixOverrides=","> <trim prefix="(" suffix=")" suffixOverrides=",">
<if test="name != null">name,</if> <if test="name != null">name,</if>
<if test="type != null">type,</if>
<if test="pid != null">pid,</if> <if test="pid != null">pid,</if>
<if test="sskId != null">ssk_id,</if>
<if test="status != null">status,</if> <if test="status != null">status,</if>
<if test="createBy != null">create_by,</if> <if test="createBy != null">create_by,</if>
<if test="createTime != null">create_time,</if> <if test="createTime != null">create_time,</if>
...@@ -66,7 +70,9 @@ ...@@ -66,7 +70,9 @@
</trim> </trim>
<trim prefix="values (" suffix=")" suffixOverrides=","> <trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="name != null">#{name},</if> <if test="name != null">#{name},</if>
<if test="type != null">#{type},</if>
<if test="pid != null">#{pid},</if> <if test="pid != null">#{pid},</if>
<if test="sskId != null">#{sskId},</if>
<if test="status != null">#{status},</if> <if test="status != null">#{status},</if>
<if test="createBy != null">#{createBy},</if> <if test="createBy != null">#{createBy},</if>
<if test="createTime != null">#{createTime},</if> <if test="createTime != null">#{createTime},</if>
...@@ -79,7 +85,9 @@ ...@@ -79,7 +85,9 @@
update act_classification update act_classification
<trim prefix="SET" suffixOverrides=","> <trim prefix="SET" suffixOverrides=",">
<if test="name != null">name = #{name},</if> <if test="name != null">name = #{name},</if>
<if test="type != null">type = #{type},</if>
<if test="pid != null">pid = #{pid},</if> <if test="pid != null">pid = #{pid},</if>
<if test="sskId != null">ssk_id = #{sskId},</if>
<if test="status != null">status = #{status},</if> <if test="status != null">status = #{status},</if>
<if test="createBy != null">create_by = #{createBy},</if> <if test="createBy != null">create_by = #{createBy},</if>
<if test="createTime != null">create_time = #{createTime},</if> <if test="createTime != null">create_time = #{createTime},</if>
...@@ -115,4 +123,8 @@ ...@@ -115,4 +123,8 @@
WHERE pid = #{parentId} WHERE pid = #{parentId}
</select> </select>
<select id="selectSubActDy" parameterType="Integer" resultMap="ActClassificationResult">
select a.name , b.name fname from act_classification a left join act_classification b on a.pid = b.id and a.ssk_id={sskId}
</select>
</mapper> </mapper>
\ No newline at end of file
...@@ -11,9 +11,9 @@ export function listActClassification(query) { ...@@ -11,9 +11,9 @@ export function listActClassification(query) {
} }
//查询上级ID //查询上级ID
export function savePid() { export function savePid(sskId) {
return request({ return request({
url: '/ActClassification/ActClassification/savepid', url: '/ActClassification/ActClassification/savepid/'+sskId,
method: 'get' method: 'get'
}) })
} }
......
...@@ -2,26 +2,16 @@ ...@@ -2,26 +2,16 @@
<div class="app-container"> <div class="app-container">
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px"> <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="名称" prop="name"> <el-form-item label="名称" prop="name">
<el-input <el-input v-model="queryParams.name" placeholder="请输入名称" clearable size="small"
v-model="queryParams.name" @keyup.enter.native="handleQuery" maxlength="36" />
placeholder="请输入名称"
clearable
size="small"
@keyup.enter.native="handleQuery"
maxlength="36"
/>
</el-form-item> </el-form-item>
<el-form-item label="上级分类" prop="id"> <el-form-item label="上级分类" prop="id">
<el-select v-model="queryParams.id" filterable clearable placeholder="请选择上级分类" > <el-select v-model="queryParams.id" filterable clearable placeholder="请选择上级分类">
<el-option <el-option v-for="option in options" :label="option.name" :value="option.id"></el-option>
v-for="option in options"
:label="option.name"
:value="option.id"
></el-option>
<el-option label="无" value="0"></el-option> <el-option label="无" value="0"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="状态" prop="status"> <el-form-item label="状态" prop="status">
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable @keyup.enter.native="handleQuery"> <el-select v-model="queryParams.status" placeholder="请选择状态" clearable @keyup.enter.native="handleQuery">
<el-option label="启用" :value="0"></el-option> <el-option label="启用" :value="0"></el-option>
...@@ -36,46 +26,20 @@ ...@@ -36,46 +26,20 @@
<el-row :gutter="10" class="mb8"> <el-row :gutter="10" class="mb8">
<el-col :span="1.5"> <el-col :span="1.5">
<el-button <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
type="primary" v-hasPermi="['ActClassification:ActClassification:add']">新增</el-button>
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['ActClassification:ActClassification:add']"
>新增</el-button>
</el-col> </el-col>
<el-col :span="1.5"> <el-col :span="1.5">
<el-button <el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate"
type="success" v-hasPermi="['ActClassification:ActClassification:edit']">修改</el-button>
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['ActClassification:ActClassification:edit']"
>修改</el-button>
</el-col> </el-col>
<el-col :span="1.5"> <el-col :span="1.5">
<el-button <el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete"
type="danger" v-hasPermi="['ActClassification:ActClassification:remove']">删除</el-button>
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['ActClassification:ActClassification:remove']"
>删除</el-button>
</el-col> </el-col>
<el-col :span="1.5"> <el-col :span="1.5">
<el-button <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport"
type="warning" v-hasPermi="['ActClassification:ActClassification:export']">导出</el-button>
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['ActClassification:ActClassification:export']"
>导出</el-button>
</el-col> </el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row> </el-row>
...@@ -84,14 +48,14 @@ ...@@ -84,14 +48,14 @@
<el-table-column type="selection" width="55" align="center" /> <el-table-column type="selection" width="55" align="center" />
<el-table-column label="ID" align="center" prop="id" /> <el-table-column label="ID" align="center" prop="id" />
<el-table-column label="名称" align="center" prop="name" /> <el-table-column label="名称" align="center" prop="name" />
<el-table-column label="上级分类" align="center" > <el-table-column label="上级分类" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<div> <div>
<template v-if="scope.row.fname === null"> <template v-if="scope.row.nameType === null">
</template> </template>
<template v-else> <template v-else>
{{ scope.row.fname }} {{ scope.row.nameType }}
</template> </template>
</div> </div>
</template> </template>
...@@ -100,64 +64,55 @@ ...@@ -100,64 +64,55 @@
<el-table-column label="状态" align="center"> <el-table-column label="状态" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<div> <div>
<el-switch <el-switch @change="toggleEnable(scope.row)" v-model="scope.row.status" :active-value="0"
@change="toggleEnable(scope.row)" :inactive-value="1" active-color="#13ce66" inactive-color="#cccccc">
v-model="scope.row.status"
:active-value="0"
:inactive-value="1"
active-color="#13ce66"
inactive-color="#cccccc">
</el-switch> </el-switch>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
size="mini" v-hasPermi="['ActClassification:ActClassification:edit']">修改</el-button>
type="text" <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
icon="el-icon-edit" v-hasPermi="['ActClassification:ActClassification:remove']">删除</el-button>
@click="handleUpdate(scope.row)"
v-hasPermi="['ActClassification:ActClassification:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['ActClassification:ActClassification:remove']"
>删除</el-button>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<pagination <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize"
v-show="total>0" @pagination="getList" />
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改分配信息对话框 --> <!-- 添加或修改分配信息对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body> <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px"> <el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="名称" prop="name">
<el-input v-model="form.name" placeholder="请输入名称" maxlength="36" /> <el-form-item label="所属矿" prop="belongs">
<el-select v-model="form.sskId" filterable placeholder="请输入所属矿" style="width:380px" @change="fetchOptions">
<el-option v-for="option in miningValue" :key="option.name" :label="option.name"
:value="option.id"></el-option>
</el-select>
</el-form-item>
<el-form-item label="类型" prop="type">
<el-select v-model="form.type" filterable placeholder="请选择所属类型" style="width:380px" @change="typeValue">
<el-option v-for="items in types" :key="items.id" :label="items.name" :value="items.id"></el-option>
</el-select>
</el-form-item> </el-form-item>
<el-form-item label="父ID" prop="pid" > <el-form-item label="名称" prop="pid" >
<el-select v-model="form.pid" filterable placeholder="请输入所属大类" style="width:380px"> <el-input v-model="form.name" placeholder="请输入名称" maxlength="36" />
<el-option </el-form-item>
v-for="option in options" <el-form-item label="所属费用来源" prop="source" v-if="typeid === 1">
:key="option.name" <el-select v-model="form.pid" filterable placeholder="请选择所属费用来源" style="width:380px">
:label="option.name" <el-option v-for="item in options" :key="item.name" :label="item.name" :value="item.id"></el-option>
:value="option.id"
></el-option>
<el-option label="无" :value="0"></el-option> <el-option label="无" :value="0"></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="状态" prop="status" >
<el-select v-model="form.status" placeholder="请选择状态" style="width:380px" >
<el-form-item label="状态" prop="status">
<el-select v-model="form.status" placeholder="请选择状态" style="width:380px">
<el-option label="启用" :value="0"></el-option> <el-option label="启用" :value="0"></el-option>
<el-option label="禁用" :value="1"></el-option> <el-option label="禁用" :value="1"></el-option>
</el-select> </el-select>
...@@ -172,205 +127,259 @@ ...@@ -172,205 +127,259 @@
</template> </template>
<script> <script>
import { listActClassification, savePid,toggleEnable,toggleDisable,getActClassification, delActClassification, addActClassification, updateActClassification, exportActClassification } from "@/api/ActClassification/ActClassification"; import { listActClassification, savePid, toggleEnable, toggleDisable, getActClassification, delActClassification, addActClassification, updateActClassification, exportActClassification } from "@/api/ActClassification/ActClassification";
export default {
name: "ActClassification",
components: {
},
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 分配信息表格数据
ActClassificationList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
options:[],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
name: null,
pid: null,
status: 0,
},
// 表单参数
form: {},
// 表单校验
rules: {
}
};
},
created() {
this.getList();
},
mounted() {
this.fetchOptions();
},
methods: {
/**启用 */ export default {
toggleEnable(ActClassification){ name: "ActClassification",
console.log('你点击了【' + ActClassification.name+'】的开关控件,当前开关值:' + ActClassification.status); components: {
let enableText=['启用','禁用'];
if(ActClassification.status === 0) {
toggleEnable(ActClassification.id).then((response) =>{
if(response.code === 200){
let message = '操作成功,已经将【' + ActClassification.name +'】的状态改为【'+ enableText[ActClassification.status] +'】 !';
this.$message({
message: message,
type:'success'
});
}else {
this.$message.error(response.message);
}
});
}else {
toggleDisable(ActClassification.id).then((response) =>{
if(response.code === 200){
let message = '操作成功,已经将【' + ActClassification.name +'】的状态改为【'+ enableText[ActClassification.status] +'】 !';
this.$message({
message: message,
type:'error'
});
}else {
this.getList();
this.$message.error(response.message);
}
});
}
}, },
data() {
/** 查询上级关联关系*/ return {
fetchOptions() { miningValue: [
savePid().then(response => { {
console.log(response.rows) name: '东欢坨矿',
this.options = response.rows; id: 1
}); },
}, {
/** 查询分配信息列表 */ name: '范矿',
getList() { id: 2
this.loading = true; },
listActClassification(this.queryParams).then(response => { {
this.ActClassificationList = response.rows; name: '林西矿',
this.total = response.total; id: 3
this.loading = false; },
}); {
}, name: '吕矿',
// 取消按钮 id: 4
cancel() { },
this.open = false; {
this.reset(); name: '钱家营矿',
}, id: 5
// 表单重置 },
reset() { {
this.form = { name: '唐山矿',
id: null, id: 6
name: null, },
pid: null, {
status: "0", name: '宏丰公司矿业',
createBy: null, id: 7
createTime: null, },
updateBy: null, {
updateTime: null name: '云飞公司矿业',
id: 8
},
{
name: '单侯煤矿',
id: 9
},
],
types: [
{
id: 1,
name: '部门'
},
{
id: 2,
name: '费用来源'
}
],
typeid: '',
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 分配信息表格数据
ActClassificationList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
options: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
name: null,
pid: null,
status: 0,
},
// 表单参数
form: {},
// 表单校验
rules: {
}
}; };
this.resetForm("form");
}, },
/** 搜索按钮操作 */ created() {
handleQuery() {
this.queryParams.pageNum = 1;
this.getList(); this.getList();
}, },
/** 重置按钮操作 */ mounted() {
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加分配信息";
}, },
/** 修改按钮操作 */ methods: {
handleUpdate(row) { typeValue(value) {
this.reset(); this.form.pid = ''
const id = row.id || this.ids this.form.source = ''
getActClassification(id).then(response => { this.form.status = ''
this.form = response.data; this.typeid = value
this.open = true;
this.title = "修改分配信息"; },
}); /**启用 */
}, toggleEnable(ActClassification) {
/** 提交按钮 */ console.log('你点击了【' + ActClassification.name + '】的开关控件,当前开关值:' + ActClassification.status);
submitForm() { let enableText = ['启用', '禁用'];
this.$refs["form"].validate(valid => { if (ActClassification.status === 0) {
if (valid) { toggleEnable(ActClassification.id).then((response) => {
if (this.form.id != null) {
updateActClassification(this.form).then(response => { if (response.code === 200) {
this.msgSuccess("修改成功");
this.open = false; let message = '操作成功,已经将【' + ActClassification.name + '】的状态改为【' + enableText[ActClassification.status] + '】 !';
this.getList(); this.$message({
}); message: message,
} else { type: 'success'
addActClassification(this.form).then(response => { });
this.msgSuccess("新增成功"); } else {
this.open = false; this.$message.error(response.message);
}
});
} else {
toggleDisable(ActClassification.id).then((response) => {
if (response.code === 200) {
let message = '操作成功,已经将【' + ActClassification.name + '】的状态改为【' + enableText[ActClassification.status] + '】 !';
this.$message({
message: message,
type: 'error'
});
} else {
this.getList(); this.getList();
}); this.$message.error(response.message);
} }
});
} }
}); },
},
/** 删除按钮操作 */ /** 查询上级关联关系*/
handleDelete(row) { fetchOptions() {
const ids = row.id || this.ids; savePid(this.form.sskId).then(response => {
this.$confirm('是否确认删除分配信息编号为"' + ids + '"的数据项?', "警告", { this.options = response.rows;
confirmButtonText: "确定", });
cancelButtonText: "取消", },
type: "warning" /** 查询分配信息列表 */
}).then(function() { getList() {
return delActClassification(ids); this.loading = true;
}).then(() => { listActClassification(this.queryParams).then(response => {
this.ActClassificationList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: null,
pid: null,
status: "0",
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
type: null,
sskId: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList(); this.getList();
this.msgSuccess("删除成功"); },
}) /** 重置按钮操作 */
}, resetQuery() {
/** 导出按钮操作 */ this.resetForm("queryForm");
handleExport() { this.handleQuery();
const queryParams = this.queryParams; },
this.$confirm('是否确认导出所有分配信息数据项?', "警告", { // 多选框选中数据
confirmButtonText: "确定", handleSelectionChange(selection) {
cancelButtonText: "取消", this.ids = selection.map(item => item.id)
type: "warning" this.single = selection.length !== 1
}).then(function() { this.multiple = !selection.length
return exportActClassification(queryParams); },
}).then(response => { /** 新增按钮操作 */
this.download(response.msg); handleAdd() {
}) this.reset();
this.open = true;
this.title = "添加分配信息";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getActClassification(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改分配信息";
});
},
/** 提交按钮 */
submitForm() {
console.log(this.form)
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateActClassification(this.form).then(response => {
this.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addActClassification(this.form).then(response => {
this.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$confirm('是否确认删除分配信息编号为"' + ids + '"的数据项?', "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(function () {
return delActClassification(ids);
}).then(() => {
this.getList();
this.msgSuccess("删除成功");
})
},
/** 导出按钮操作 */
handleExport() {
const queryParams = this.queryParams;
this.$confirm('是否确认导出所有分配信息数据项?', "警告", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}).then(function () {
return exportActClassification(queryParams);
}).then(response => {
this.download(response.msg);
})
}
} }
} };
};
</script> </script>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment