Commit 60445db3 authored by hehongwei's avatar hehongwei

费用来源对应关系

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