库存消息提醒设置
parent
c54b165438
commit
f911cc7f18
@ -0,0 +1,11 @@
|
||||
import axios from "@/utils/request";
|
||||
|
||||
export function remindMsgList(query) {
|
||||
return axios(
|
||||
{
|
||||
url: "/system/remind/msg/list",
|
||||
method: "get",
|
||||
params: query
|
||||
}
|
||||
);
|
||||
}
|
@ -0,0 +1,11 @@
|
||||
import axios from "@/utils/request";
|
||||
|
||||
export function remindSetList(query) {
|
||||
return axios(
|
||||
{
|
||||
url: "/system/remind/set/list",
|
||||
method: "get",
|
||||
params: query
|
||||
}
|
||||
);
|
||||
}
|
@ -0,0 +1,242 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card class="el-card">
|
||||
<el-form :model="filterQuery" size="mini" label-width="100px" v-show="showSearch">
|
||||
<el-row>
|
||||
<el-col :span="6">
|
||||
<el-form-item class="query-form-item" label="产品标识DI:">
|
||||
<el-input v-model="filterQuery.nameCode" placeholder="产品标识DI"
|
||||
style="width: 90%"
|
||||
clearable="true"></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-form-item class="query-form-item" label="产品名称:">
|
||||
<el-input v-model="filterQuery.cpmctymc" placeholder="产品名称"
|
||||
style="width: 90%"
|
||||
clearable="true"></el-input>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
||||
<el-col :span="6">
|
||||
<el-form-item class="query-form-item" label="所属仓库:">
|
||||
<el-select v-model="filterQuery.invCode" placeholder="请选择所属仓库" clearable="true"
|
||||
style="width: 90%"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in invList"
|
||||
:key="item.name"
|
||||
:label="item.name"
|
||||
:value="item.code">
|
||||
<span style="float: left">{{ item.name }}</span>
|
||||
</el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</el-form>
|
||||
<div class="top-right-btn">
|
||||
<el-button-group>
|
||||
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="el-icon-refresh"
|
||||
@click="onReset"
|
||||
>重置
|
||||
</el-button>
|
||||
<el-button type="danger" icon="el-icon-search" @click="onSubmit"
|
||||
>过期预警
|
||||
</el-button
|
||||
>
|
||||
<el-button type="warning" icon="el-icon-search" @click="onSubmit"
|
||||
>近效期预警
|
||||
</el-button
|
||||
>
|
||||
<el-button type="warning" icon="el-icon-search" @click="onSubmit"
|
||||
>低库存预警
|
||||
</el-button
|
||||
>
|
||||
<el-button type="danger" icon="el-icon-search" @click="onSubmit"
|
||||
>负库存预警
|
||||
</el-button
|
||||
>
|
||||
</el-button-group>
|
||||
</div>
|
||||
<el-divider style="margin: 15px"></el-divider>
|
||||
<el-table v-loading="loading" :data="list" style="width: 100%" highlight-current-row
|
||||
border>
|
||||
<el-table-column label="序号" type="index"></el-table-column>
|
||||
<el-table-column label="产品标识" prop="nameCode"></el-table-column>
|
||||
<el-table-column label="产品名称" prop="cpmctymc"></el-table-column>
|
||||
<el-table-column label="规格型号" prop="ggxh" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="批次号" prop="batchNo" width="120"></el-table-column>
|
||||
<el-table-column label="生产日期" prop="productionDate" width="120"></el-table-column>
|
||||
<el-table-column label="失效日期" prop="expireDate" width="120"></el-table-column>
|
||||
<el-table-column label="入库数量" prop="inCount" width="120"></el-table-column>
|
||||
<el-table-column label="出库数量" prop="outCount" width="120"></el-table-column>
|
||||
<el-table-column label="结余数量" prop="reCount" width="120"></el-table-column>
|
||||
<el-table-column label="生产厂家" prop="ylqxzcrbarmc" v-if="showSup" show-overflow-tooltip
|
||||
width="120"></el-table-column>
|
||||
<el-table-column label="供应商" prop="supName" v-if="showSup" show-overflow-tooltip
|
||||
width="120"></el-table-column>
|
||||
<el-table-column label="部门" prop="deptName" v-if="showSup"
|
||||
show-overflow-tooltip width="120"></el-table-column>
|
||||
<el-table-column label="仓库" prop="invName" v-if="showSup"
|
||||
show-overflow-tooltip width="120"></el-table-column>
|
||||
</el-table>
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:limit.sync="filterQuery.limit"
|
||||
:page.sync="filterQuery.page"
|
||||
@pagination="getList"
|
||||
></pagination>
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {getInvListByUser} from "@/api/system/invWarehouse";
|
||||
import {stockStatistics} from "@/api/inventory/invPorduct";
|
||||
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
|
||||
import {isBlank} from "@/utils/strUtil";
|
||||
import invProductsDetail from "@/views/inventory/InvProductsDetail.vue";
|
||||
|
||||
export default {
|
||||
name: "invWarning",
|
||||
data() {
|
||||
return {
|
||||
showSearch: true,
|
||||
filterQuery: {
|
||||
nameCode: null,
|
||||
cpmctymc: null,
|
||||
ggxh: null,
|
||||
batchNo: null,
|
||||
supId: null,
|
||||
zczbhhzbapzbh: null,
|
||||
ylqxzcrbarmc: null,
|
||||
invCode: this.$store.getters.locInvCode,
|
||||
page: 1,
|
||||
limit: 10,
|
||||
},
|
||||
list: [],
|
||||
total: 0,
|
||||
invList: [],
|
||||
loading: false,
|
||||
corpLoading: false,
|
||||
fromOptions: [],
|
||||
showSup: false,
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
onReset() {
|
||||
this.$router.push({
|
||||
path: "",
|
||||
});
|
||||
this.filterQuery = {
|
||||
nameCode: null,
|
||||
cpmctymc: null,
|
||||
ggxh: null,
|
||||
batchNo: null,
|
||||
supId: null,
|
||||
zczbhhzbapzbh: null,
|
||||
ylqxzcrbarmc: null,
|
||||
invCode: this.$store.getters.locInvCode,
|
||||
page: 1,
|
||||
limit: 10,
|
||||
};
|
||||
this.getList();
|
||||
},
|
||||
onSubmit() {
|
||||
if (isBlank(this.filterQuery.invCode)) {
|
||||
this.$message.warning("请先选择当前仓库!");
|
||||
return;
|
||||
}
|
||||
//判断统计条件是否全部为空
|
||||
if (isBlank(this.filterQuery.cpmctymc) && isBlank(this.filterQuery.ggxh) && isBlank(this.filterQuery.zczbhhzbapzbh) && isBlank(this.filterQuery.ylqxzcrbarmc)
|
||||
&& isBlank(this.filterQuery.invCode) && isBlank(this.filterQuery.nameCode) && isBlank(this.filterQuery.batchNo) && isBlank(this.filterQuery.supId)) {
|
||||
this.$message.warning("统计条件不能为空!");
|
||||
} else {
|
||||
this.filterQuery.page = 1;
|
||||
this.getList();
|
||||
}
|
||||
},
|
||||
hideSearch() {
|
||||
this.showSearch = !this.showSearch;
|
||||
},
|
||||
handleSizeChange(val) {
|
||||
this.filterQuery.limit = val;
|
||||
this.getList();
|
||||
},
|
||||
handleCurrentChange(val) {
|
||||
this.filterQuery.page = val;
|
||||
this.getList();
|
||||
},
|
||||
getList() {
|
||||
this.loading = true;
|
||||
stockStatistics(this.filterQuery).then((res) => {
|
||||
this.loading = false;
|
||||
if (res.code === 20000) {
|
||||
this.list = res.data.list || [];
|
||||
this.total = res.data.total || 0;
|
||||
} else {
|
||||
this.$message.error(res.message);
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
}
|
||||
}).catch((error) => {
|
||||
this.loading = false;
|
||||
this.$message.error(error.message);
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
})
|
||||
},
|
||||
getInvList() {
|
||||
getInvListByUser()
|
||||
.then((response) => {
|
||||
this.invList = response.data || [];
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
findMethod(key) {
|
||||
this.corpLoading = true;
|
||||
this.fromOptions = [];
|
||||
let params = {
|
||||
key: key,
|
||||
corpType: 2,
|
||||
page: 1,
|
||||
limit: 20
|
||||
};
|
||||
getBasicUnitMaintains(params).then((res) => {
|
||||
this.corpLoading = false;
|
||||
this.fromOptions = res.data.list || [];
|
||||
}).catch(() => {
|
||||
this.corpLoading = false;
|
||||
})
|
||||
},
|
||||
corpChange(value) {
|
||||
if (!isBlank(value)) {
|
||||
this.findMethod(value);
|
||||
}
|
||||
},
|
||||
},
|
||||
components: {},
|
||||
mounted() {
|
||||
document.body.ondrop = function (event) {
|
||||
event.preventDefault();
|
||||
event.stopPropagation();
|
||||
};
|
||||
},
|
||||
created() {
|
||||
this.findMethod();
|
||||
this.getInvList();
|
||||
this.getList();
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style type="text/scss" lang="scss">
|
||||
</style>
|
||||
|
@ -0,0 +1,335 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card class="el-card">
|
||||
<el-form :inline="true" :model="query" class="query-form" size="mini">
|
||||
<el-row>
|
||||
<el-form-item class="query-form-item" label="关键字搜索:">
|
||||
<el-input v-model="query.key" placeholder="参数关键字搜索" clearable></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button-group>
|
||||
<el-button type="primary"
|
||||
@click.native="search"
|
||||
icon="el-icon-search">
|
||||
搜索
|
||||
</el-button>
|
||||
</el-button-group>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
</el-form>
|
||||
<el-table v-loading="loading" :data="list" style="width: 100%" border>
|
||||
<el-table-column type="index" label="序号" width="50"></el-table-column>
|
||||
<el-table-column label="消息内容" prop="message"></el-table-column>
|
||||
<el-table-column label="消息类型" prop="type" width="100">
|
||||
<template slot-scope="scope">
|
||||
<el-tag :type="(scope.row.type) ">
|
||||
{{ typeMap[scope.row.type] }}
|
||||
</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="消息级别" prop="level" show-overflow-tooltip>
|
||||
<template slot-scope="scope">
|
||||
<el-tag :type="statusFilterType(scope.row.level)">{{ levelStatus[scope.row.level] }}</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="更新日期" prop="updateTime" show-overflow-tooltip></el-table-column>
|
||||
<el-table-column label="操作" width="100">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click.native="handleForm(scope.$index, scope.row)"
|
||||
>确认
|
||||
</el-button>
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click.native="handleForm(scope.$index, scope.row)"
|
||||
>删除
|
||||
</el-button>
|
||||
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="query.page"
|
||||
:limit.sync="query.limit"
|
||||
@pagination="getList"
|
||||
/>
|
||||
|
||||
<!--表单-->
|
||||
<el-dialog
|
||||
:title="formMap[formName]"
|
||||
:visible.sync="formVisible"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
:before-close="hideForm"
|
||||
width="45%"
|
||||
top="5vh"
|
||||
>
|
||||
<el-form :model="formData" :rules="formRules" ref="dataForm">
|
||||
<el-row>
|
||||
<el-form-item label="参数名:" prop="name" label-width="100px">
|
||||
<el-input
|
||||
v-model="formData.name"
|
||||
auto-complete="off"
|
||||
:disabled="true"
|
||||
style="width: 90%"
|
||||
></el-input>
|
||||
</el-form-item>
|
||||
|
||||
</el-row>
|
||||
|
||||
<el-row>
|
||||
<el-form-item label="参数键:" prop="key" label-width="100px">
|
||||
<el-input
|
||||
v-model="formData.key"
|
||||
auto-complete="off" style="width: 90%"
|
||||
:disabled="true"
|
||||
></el-input>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-form-item label="参数值" prop="value" label-width="100px">
|
||||
<el-input type="" v-model="formData.value" auto-complete="off" style="width: 90%"></el-input>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-form-item class="query-form-item" label="提醒类型:" label-width="100px">
|
||||
<el-select v-model="formData.type" placeholder="请选择提醒类型" style="width: 90%" disabled>
|
||||
<el-option label="" value="0"></el-option>
|
||||
<el-option label="库存预警" :value="1"></el-option>
|
||||
<el-option label="过期提醒" :value="2"></el-option>
|
||||
<el-option label="近效期提醒" :value="3"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
|
||||
<el-row>
|
||||
<el-form-item label="参数说明:" label-width="100px">
|
||||
<el-input
|
||||
type="textarea"
|
||||
v-model="formData.remark" style="width: 90%"
|
||||
:disabled="true"
|
||||
></el-input>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button @click.native="hideForm">取消</el-button>
|
||||
<el-button type="primary" @click.native="formSubmit()" :loading="formLoading"
|
||||
>提交
|
||||
</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
systemParamConfigList,
|
||||
systemParamConfigSave,
|
||||
} from "@/api/system/param/systemParamConfig";
|
||||
import {remindSetList} from "@/api/system/remindSet";
|
||||
import {remindMsgList} from "@/api/system/remindMsg";
|
||||
|
||||
|
||||
const formJson = {
|
||||
id: "",
|
||||
name: "",
|
||||
key: "",
|
||||
value: "",
|
||||
type: null,
|
||||
remark: "",
|
||||
};
|
||||
export default {
|
||||
name: "remindMsg",
|
||||
data() {
|
||||
return {
|
||||
query: {
|
||||
key: null,
|
||||
paramStatus: 1,
|
||||
page: 1,
|
||||
limit: 20,
|
||||
},
|
||||
list: [],
|
||||
total: 0,
|
||||
loading: true,
|
||||
index: null,
|
||||
formName: null,
|
||||
formMap: {
|
||||
add: "新增提醒设置",
|
||||
update: "提醒设置-编辑",
|
||||
},
|
||||
formLoading: false,
|
||||
formVisible: false,
|
||||
formData: formJson,
|
||||
formRules: {
|
||||
paramValue: [{required: true, message: "请输入参数值", trigger: "blur"}],
|
||||
// ,
|
||||
// paramStatus: [
|
||||
// {required: true, message: "请选择参数状态", trigger: "change"}
|
||||
// ]
|
||||
},
|
||||
|
||||
typeMap: {
|
||||
1: "库存预警",
|
||||
2: "过期提醒",
|
||||
3: "近效期提醒",
|
||||
},
|
||||
|
||||
levelStatus: {
|
||||
1: "一级",
|
||||
2: "二级",
|
||||
3: "三级",
|
||||
4: "四级",
|
||||
},
|
||||
|
||||
deleteLoading: false,
|
||||
filterQuery: {}
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
onReset() {
|
||||
this.$router.push({
|
||||
path: "",
|
||||
});
|
||||
this.query = {
|
||||
paramStatus: 1,
|
||||
page: 1,
|
||||
limit: 20,
|
||||
};
|
||||
this.getList();
|
||||
},
|
||||
onSubmit() {
|
||||
this.getList();
|
||||
},
|
||||
handleCurrentChange(val) {
|
||||
this.query.page = val;
|
||||
this.getList();
|
||||
},
|
||||
search() {
|
||||
this.query.page = 1;
|
||||
this.getList();
|
||||
},
|
||||
getList() {
|
||||
this.loading = true;
|
||||
remindMsgList(this.query)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
this.list = response.data.list || [];
|
||||
this.total = response.data.total || 0;
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
// 刷新表单
|
||||
resetForm() {
|
||||
if (this.$refs["dataForm"]) {
|
||||
// 清空验证信息表单
|
||||
this.$refs["dataForm"].clearValidate();
|
||||
// 刷新表单
|
||||
this.$refs["dataForm"].resetFields();
|
||||
this.getList();
|
||||
}
|
||||
},
|
||||
// 隐藏表单
|
||||
hideForm() {
|
||||
// 更改值
|
||||
this.formVisible = !this.formVisible;
|
||||
return true;
|
||||
},
|
||||
// 显示表单
|
||||
handleForm(index, row) {
|
||||
this.formVisible = true;
|
||||
this.formData = JSON.parse(JSON.stringify(formJson));
|
||||
if (row !== null) {
|
||||
this.formData = Object.assign({}, row);
|
||||
}
|
||||
this.formName = "add";
|
||||
if (index !== null) {
|
||||
this.index = index;
|
||||
this.formName = "update";
|
||||
}
|
||||
},
|
||||
formSubmit() {
|
||||
// if (!Number.isInteger(parseInt(this.formData.paramValue))) {
|
||||
// this.$message.warning("参数值必须为数字");
|
||||
// return;
|
||||
// }
|
||||
this.$refs["dataForm"].validate((valid) => {
|
||||
if (valid) {
|
||||
this.formLoading = true;
|
||||
let data = Object.assign({}, this.formData);
|
||||
data.paramValue = data.paramValue.trim();
|
||||
systemParamConfigSave(data, this.formName)
|
||||
.then((response) => {
|
||||
this.formLoading = false;
|
||||
if (response.code != 20000) {
|
||||
this.$message.error(response.message);
|
||||
return false;
|
||||
}
|
||||
this.$message.success("操作成功");
|
||||
this.formVisible = false;
|
||||
if (this.formName === "add") {
|
||||
// 向头部添加数据
|
||||
if (response.data && response.data.id) {
|
||||
data.id = response.data.id;
|
||||
this.list.unshift(data);
|
||||
}
|
||||
} else {
|
||||
this.list.splice(this.index, 1, data);
|
||||
}
|
||||
// 刷新表单
|
||||
this.resetForm();
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.formLoading = false;
|
||||
});
|
||||
}
|
||||
});
|
||||
},
|
||||
statusFilterType(status) {
|
||||
const statusMap = {
|
||||
1: "success",
|
||||
2: "info",
|
||||
3: "warning",
|
||||
4: "danger",
|
||||
|
||||
};
|
||||
return statusMap[status];
|
||||
},
|
||||
},
|
||||
filters: {
|
||||
paramStatusFilterType(paramStatus) {
|
||||
const paramStatusMap = {
|
||||
0: "gray",
|
||||
1: "success",
|
||||
};
|
||||
return paramStatusMap[paramStatus];
|
||||
},
|
||||
paramStatusFilterName(paramStatus) {
|
||||
const paramStatusMap = {
|
||||
0: "禁用",
|
||||
1: "正常",
|
||||
};
|
||||
return paramStatusMap[paramStatus];
|
||||
},
|
||||
|
||||
},
|
||||
mounted() {
|
||||
},
|
||||
created() {
|
||||
// 加载表格数据
|
||||
this.getList();
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
@ -0,0 +1,311 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card class="el-card">
|
||||
<el-form :inline="true" :model="query" class="query-form" size="mini">
|
||||
<el-row>
|
||||
<el-form-item class="query-form-item" label="关键字搜索:">
|
||||
<el-input v-model="query.key" placeholder="参数关键字搜索" clearable></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button-group>
|
||||
<el-button type="primary"
|
||||
@click.native="search"
|
||||
icon="el-icon-search">
|
||||
搜索
|
||||
</el-button>
|
||||
</el-button-group>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
</el-form>
|
||||
<el-table v-loading="loading" :data="list" style="width: 100%" border>
|
||||
<el-table-column type="index" label="序号" width="50"></el-table-column>
|
||||
<el-table-column label="参数名" prop="name"></el-table-column>
|
||||
<el-table-column label="参数键" prop="key" width="200"></el-table-column>
|
||||
<el-table-column label="参数值" prop="value" width="100"></el-table-column>
|
||||
<el-table-column label="提醒类型" prop="type" width="100">
|
||||
|
||||
<template slot-scope="scope">
|
||||
<el-tag :type="(scope.row.type) ">
|
||||
{{ typeMap[scope.row.type] }}
|
||||
</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="参数说明" :show-overflow-tooltip="true">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ scope.row.remark }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" width="100">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click.native="handleForm(scope.$index, scope.row)"
|
||||
>设置
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<pagination
|
||||
v-show="total>0"
|
||||
:total="total"
|
||||
:page.sync="query.page"
|
||||
:limit.sync="query.limit"
|
||||
@pagination="getList"
|
||||
/>
|
||||
|
||||
<!--表单-->
|
||||
<el-dialog
|
||||
:title="formMap[formName]"
|
||||
:visible.sync="formVisible"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
:before-close="hideForm"
|
||||
width="45%"
|
||||
top="5vh"
|
||||
>
|
||||
<el-form :model="formData" :rules="formRules" ref="dataForm">
|
||||
<el-row>
|
||||
<el-form-item label="参数名:" prop="name" label-width="100px">
|
||||
<el-input
|
||||
v-model="formData.name"
|
||||
auto-complete="off"
|
||||
:disabled="true"
|
||||
style="width: 90%"
|
||||
></el-input>
|
||||
</el-form-item>
|
||||
|
||||
</el-row>
|
||||
|
||||
<el-row>
|
||||
<el-form-item label="参数键:" prop="key" label-width="100px">
|
||||
<el-input
|
||||
v-model="formData.key"
|
||||
auto-complete="off" style="width: 90%"
|
||||
:disabled="true"
|
||||
></el-input>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-form-item label="参数值" prop="value" label-width="100px">
|
||||
<el-input type="" v-model="formData.value" auto-complete="off" style="width: 90%"></el-input>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<el-form-item class="query-form-item" label="提醒类型:" label-width="100px">
|
||||
<el-select v-model="formData.type" placeholder="请选择提醒类型" style="width: 90%" disabled>
|
||||
<el-option label="" value="0"></el-option>
|
||||
<el-option label="库存预警" :value="1"></el-option>
|
||||
<el-option label="过期提醒" :value="2"></el-option>
|
||||
<el-option label="近效期提醒" :value="3"></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
|
||||
<el-row>
|
||||
<el-form-item label="参数说明:" label-width="100px">
|
||||
<el-input
|
||||
type="textarea"
|
||||
v-model="formData.remark" style="width: 90%"
|
||||
:disabled="true"
|
||||
></el-input>
|
||||
</el-form-item>
|
||||
</el-row>
|
||||
</el-form>
|
||||
<div slot="footer" class="dialog-footer">
|
||||
<el-button @click.native="hideForm">取消</el-button>
|
||||
<el-button type="primary" @click.native="formSubmit()" :loading="formLoading"
|
||||
>提交
|
||||
</el-button>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {
|
||||
systemParamConfigList,
|
||||
systemParamConfigSave,
|
||||
} from "@/api/system/param/systemParamConfig";
|
||||
import {remindSetList} from "@/api/system/remindSet";
|
||||
|
||||
|
||||
const formJson = {
|
||||
id: "",
|
||||
name: "",
|
||||
key: "",
|
||||
value: "",
|
||||
type: null,
|
||||
remark: "",
|
||||
};
|
||||
export default {
|
||||
name: "remindSet",
|
||||
data() {
|
||||
return {
|
||||
query: {
|
||||
key: null,
|
||||
paramStatus: 1,
|
||||
page: 1,
|
||||
limit: 20,
|
||||
},
|
||||
list: [],
|
||||
total: 0,
|
||||
loading: true,
|
||||
index: null,
|
||||
formName: null,
|
||||
formMap: {
|
||||
add: "新增提醒设置",
|
||||
update: "提醒设置-编辑",
|
||||
},
|
||||
formLoading: false,
|
||||
formVisible: false,
|
||||
formData: formJson,
|
||||
formRules: {
|
||||
paramValue: [{required: true, message: "请输入参数值", trigger: "blur"}],
|
||||
// ,
|
||||
// paramStatus: [
|
||||
// {required: true, message: "请选择参数状态", trigger: "change"}
|
||||
// ]
|
||||
},
|
||||
|
||||
typeMap: {
|
||||
1: "库存预警",
|
||||
2: "过期提醒",
|
||||
3: "近效期提醒",
|
||||
},
|
||||
|
||||
deleteLoading: false,
|
||||
filterQuery: {}
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
onReset() {
|
||||
this.$router.push({
|
||||
path: "",
|
||||
});
|
||||
this.query = {
|
||||
paramStatus: 1,
|
||||
page: 1,
|
||||
limit: 20,
|
||||
};
|
||||
this.getList();
|
||||
},
|
||||
onSubmit() {
|
||||
this.getList();
|
||||
},
|
||||
handleCurrentChange(val) {
|
||||
this.query.page = val;
|
||||
this.getList();
|
||||
},
|
||||
search() {
|
||||
this.query.page = 1;
|
||||
this.getList();
|
||||
},
|
||||
getList() {
|
||||
this.loading = true;
|
||||
remindSetList(this.query)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
this.list = response.data.list || [];
|
||||
this.total = response.data.total || 0;
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.list = [];
|
||||
this.total = 0;
|
||||
});
|
||||
},
|
||||
// 刷新表单
|
||||
resetForm() {
|
||||
if (this.$refs["dataForm"]) {
|
||||
// 清空验证信息表单
|
||||
this.$refs["dataForm"].clearValidate();
|
||||
// 刷新表单
|
||||
this.$refs["dataForm"].resetFields();
|
||||
this.getList();
|
||||
}
|
||||
},
|
||||
// 隐藏表单
|
||||
hideForm() {
|
||||
// 更改值
|
||||
this.formVisible = !this.formVisible;
|
||||
return true;
|
||||
},
|
||||
// 显示表单
|
||||
handleForm(index, row) {
|
||||
this.formVisible = true;
|
||||
this.formData = JSON.parse(JSON.stringify(formJson));
|
||||
if (row !== null) {
|
||||
this.formData = Object.assign({}, row);
|
||||
}
|
||||
this.formName = "add";
|
||||
if (index !== null) {
|
||||
this.index = index;
|
||||
this.formName = "update";
|
||||
}
|
||||
},
|
||||
formSubmit() {
|
||||
// if (!Number.isInteger(parseInt(this.formData.paramValue))) {
|
||||
// this.$message.warning("参数值必须为数字");
|
||||
// return;
|
||||
// }
|
||||
this.$refs["dataForm"].validate((valid) => {
|
||||
if (valid) {
|
||||
this.formLoading = true;
|
||||
let data = Object.assign({}, this.formData);
|
||||
data.paramValue = data.paramValue.trim();
|
||||
systemParamConfigSave(data, this.formName)
|
||||
.then((response) => {
|
||||
this.formLoading = false;
|
||||
if (response.code != 20000) {
|
||||
this.$message.error(response.message);
|
||||
return false;
|
||||
}
|
||||
this.$message.success("操作成功");
|
||||
this.formVisible = false;
|
||||
if (this.formName === "add") {
|
||||
// 向头部添加数据
|
||||
if (response.data && response.data.id) {
|
||||
data.id = response.data.id;
|
||||
this.list.unshift(data);
|
||||
}
|
||||
} else {
|
||||
this.list.splice(this.index, 1, data);
|
||||
}
|
||||
// 刷新表单
|
||||
this.resetForm();
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.formLoading = false;
|
||||
});
|
||||
}
|
||||
});
|
||||
},
|
||||
},
|
||||
filters: {
|
||||
paramStatusFilterType(paramStatus) {
|
||||
const paramStatusMap = {
|
||||
0: "gray",
|
||||
1: "success",
|
||||
};
|
||||
return paramStatusMap[paramStatus];
|
||||
},
|
||||
paramStatusFilterName(paramStatus) {
|
||||
const paramStatusMap = {
|
||||
0: "禁用",
|
||||
1: "正常",
|
||||
};
|
||||
return paramStatusMap[paramStatus];
|
||||
},
|
||||
},
|
||||
mounted() {
|
||||
},
|
||||
created() {
|
||||
// 加载表格数据
|
||||
this.getList();
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue