单据管理,新增等待,异常,已完成等
parent
c88ca86e65
commit
9b83d36642
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=favicon.ico><title>医院供应商自助平台</title><link rel=stylesheet href=https://unpkg.com/element-ui/lib/theme-chalk/index.css><link href=css/home.5235ad9e.css rel=prefetch><link href=js/home.fd43d6b8.js rel=prefetch><link href=css/app.55245d3e.css rel=preload as=style><link href=css/chunk-vendors.072ae084.css rel=preload as=style><link href=js/app.83283916.js rel=preload as=script><link href=js/chunk-vendors.ac7bf19a.js rel=preload as=script><link href=css/chunk-vendors.072ae084.css rel=stylesheet><link href=css/app.55245d3e.css rel=stylesheet></head><body><div id=app></div><script src=./tinymce4.7.5/tinymce.min.js></script><script src=https://unpkg.zhimg.com/vue@2.6.14/dist/vue.runtime.min.js></script><script src=https://unpkg.zhimg.com/vuex@3.6.2/dist//vuex.min.js></script><script src=https://unpkg.zhimg.com/vue-router@3.0.1/dist/vue-router.min.js></script><script src=https://unpkg.zhimg.com/element-ui@2.15.7/lib/index.js></script><script>ga('create', 'UA-110990780-1', 'auto');
|
||||
<!DOCTYPE html><html><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><link rel=icon href=favicon.ico><title>医院UDI自助管理平台</title><link rel=stylesheet href=https://unpkg.com/element-ui/lib/theme-chalk/index.css><link href=css/home.5235ad9e.css rel=prefetch><link href=js/home.1a94cfbc.js rel=prefetch><link href=css/app.aff94608.css rel=preload as=style><link href=css/chunk-vendors.072ae084.css rel=preload as=style><link href=js/app.0b49955d.js rel=preload as=script><link href=js/chunk-vendors.ac7bf19a.js rel=preload as=script><link href=css/chunk-vendors.072ae084.css rel=stylesheet><link href=css/app.aff94608.css rel=stylesheet></head><body><div id=app></div><script src=./tinymce4.7.5/tinymce.min.js></script><script src=https://unpkg.zhimg.com/vue@2.6.14/dist/vue.runtime.min.js></script><script src=https://unpkg.zhimg.com/vuex@3.6.2/dist//vuex.min.js></script><script src=https://unpkg.zhimg.com/vue-router@3.0.1/dist/vue-router.min.js></script><script src=https://unpkg.zhimg.com/element-ui@2.15.7/lib/index.js></script><script>ga('create', 'UA-110990780-1', 'auto');
|
||||
ga('send', 'pageview');
|
||||
window.addEventListener('hashchange', function () {
|
||||
ga('set', 'page', window.location.href);
|
||||
ga('send', 'pageview');
|
||||
});</script><script src=js/chunk-vendors.ac7bf19a.js></script><script src=js/app.83283916.js></script></body></html>
|
||||
});</script><script src=js/chunk-vendors.ac7bf19a.js></script><script src=js/app.0b49955d.js></script></body></html>
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,4 +1,4 @@
|
||||
{
|
||||
"BASE_URL":"http://192.168.0.109:9996",
|
||||
"SERVER_IP": "http://192.168.0.109:9996"
|
||||
"BASE_URL":"http://127.0.0.1:9996",
|
||||
"SERVER_IP": "http://127.0.0.1:9996"
|
||||
}
|
||||
|
@ -0,0 +1,34 @@
|
||||
import axios from "../../utils/axios";
|
||||
|
||||
// 权限管理
|
||||
|
||||
// 获取列表
|
||||
export function filterList(query) {
|
||||
return axios({
|
||||
url: "/spms/inv/warehouse/filter",
|
||||
method: "get",
|
||||
params: query
|
||||
});
|
||||
}
|
||||
|
||||
// 保存
|
||||
export function saveWarehouse(data, formName, method = "post") {
|
||||
let url =
|
||||
formName !== "edit"
|
||||
? "/spms/inv/warehouse/save"
|
||||
: "/spms/inv/warehouse/edit";
|
||||
return axios({
|
||||
url: url,
|
||||
method: method,
|
||||
data: data
|
||||
});
|
||||
}
|
||||
|
||||
// 删除
|
||||
export function deleteWarehouse(data) {
|
||||
return axios({
|
||||
url: "/spms/inv/warehouse/delete",
|
||||
method: "post",
|
||||
data: data
|
||||
});
|
||||
}
|
@ -1,295 +1,304 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-card>
|
||||
<div>
|
||||
<el-card>
|
||||
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini">
|
||||
<el-form-item class="query-form-item">
|
||||
<el-input
|
||||
v-model="filterQuery.action"
|
||||
placeholder="业务类型"
|
||||
style="width: 400px"
|
||||
></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item class="query-form-item">
|
||||
<el-select v-model="filterQuery.enabled" placeholder="状态">
|
||||
<el-option label="全部" value=""></el-option>
|
||||
<el-option label="已启用" value=1></el-option>
|
||||
<el-option label="未启用" value=0></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button-group>
|
||||
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
||||
<el-button type="primary" icon="search" @click="getList">查询</el-button>
|
||||
<el-button type="primary" icon="search" @click="handleAddClick"
|
||||
>新增
|
||||
</el-button
|
||||
>
|
||||
</el-button-group>
|
||||
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
|
||||
<el-form :inline="true" :model="filterQuery" class="query-form" size="mini">
|
||||
<el-form-item class="query-form-item">
|
||||
<el-input
|
||||
v-model="filterQuery.action"
|
||||
placeholder="业务类型"
|
||||
style="width: 400px"
|
||||
></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item class="query-form-item">
|
||||
<el-select v-model="filterQuery.enabled" placeholder="状态">
|
||||
<el-option label="全部" value=""></el-option>
|
||||
<el-option label="已启用" value=1></el-option>
|
||||
<el-option label="未启用" value=0></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button-group>
|
||||
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
||||
<el-button type="primary" icon="search" @click="getList">查询</el-button>
|
||||
<el-button type="primary" icon="search" @click="handleAddClick"
|
||||
>新增
|
||||
</el-button
|
||||
>
|
||||
</el-button-group>
|
||||
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<el-table v-loading="loading" :data="list" style="width: 100%">
|
||||
<el-table-column label="序号" type="index" width="120" fixed></el-table-column>
|
||||
|
||||
<el-table v-loading="loading" :data="list" style="width: 100%">
|
||||
<el-table-column label="序号" type="index" width="120" fixed></el-table-column>
|
||||
<el-table-column label="业务单据类型名称" prop="name" fixed></el-table-column>
|
||||
<el-table-column label="业务单据类型代码" prop="action" fixed></el-table-column>
|
||||
<el-table-column label="第三方单据类型" prop="originAction" fixed></el-table-column>
|
||||
<el-table-column label="单据是否启用" prop="enable" fixed>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ enableMap[scope.row.enable] }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="是否预入库" prop="advanceType" fixed>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ enableMap[scope.row.advanceType] }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="是否自动补单" prop="advanceType" fixed>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ enableMap[scope.row.changeEnable] }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="是否供应商使用" prop="spUse" fixed>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ enableMap[scope.row.spUse] }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
||||
<el-table-column label="业务单据类型名称" prop="name" fixed></el-table-column>
|
||||
<el-table-column label="业务单据类型代码" prop="action" fixed></el-table-column>
|
||||
<el-table-column label="原单据类型" prop="originAction" fixed></el-table-column>
|
||||
<el-table-column label="单据是否启用" prop="enable" fixed>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ enableMap[scope.row.enable] }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="是否预入库" prop="advanceType" fixed>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ enableMap[scope.row.advanceType] }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="是否自动补单" prop="advanceType" fixed>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ enableMap[scope.row.changeEnable] }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="是否供应商使用" prop="spUse" fixed>
|
||||
<template slot-scope="scope">
|
||||
<span>{{ enableMap[scope.row.spUse] }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
|
||||
<el-table-column label="操作" fixed="right">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click.native.stop="handleModifyClick(scope.row)"
|
||||
>编辑
|
||||
</el-button
|
||||
>
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click.native.stop="deleteDialog(scope.row)"
|
||||
>删除
|
||||
</el-button
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<el-table-column label="操作" fixed="right">
|
||||
<template slot-scope="scope">
|
||||
<el-button
|
||||
type="text"
|
||||
size="small"
|
||||
@click.native.stop="handleModifyClick(scope.row)"
|
||||
>编辑
|
||||
</el-button
|
||||
<el-dialog
|
||||
title="新增业务类型关联"
|
||||
:visible.sync="addDialogVisible"
|
||||
width="70%"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
v-if="addDialogVisible"
|
||||
>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
||||
<el-dialog
|
||||
title="新增业务类型关联"
|
||||
:visible.sync="addDialogVisible"
|
||||
width="70%"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
v-if="addDialogVisible"
|
||||
>
|
||||
<modifyDialog :inputQuery="inputQuery"></modifyDialog>
|
||||
<div style="text-align: center">
|
||||
<el-button type="primary" size="small" icon="search" @click="onAddSubmit"
|
||||
>提交
|
||||
</el-button
|
||||
>
|
||||
<el-button type="primary" size="small" icon="search" @click="cancelDialog"
|
||||
>取消
|
||||
</el-button
|
||||
>
|
||||
</div>
|
||||
</el-dialog>
|
||||
<modifyDialog :inputQuery="inputQuery"></modifyDialog>
|
||||
<div style="text-align: center">
|
||||
<el-button type="primary" size="small" icon="search" @click="onAddSubmit"
|
||||
>提交
|
||||
</el-button
|
||||
>
|
||||
<el-button type="primary" size="small" icon="search" @click="cancelDialog"
|
||||
>取消
|
||||
</el-button
|
||||
>
|
||||
</div>
|
||||
</el-dialog>
|
||||
|
||||
<el-dialog
|
||||
title="编辑业务类型关联"
|
||||
:visible.sync="modifyDialogVisible"
|
||||
width="70%"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
v-if="modifyDialogVisible"
|
||||
>
|
||||
<modifyDialog :inputQuery="inputQuery"></modifyDialog>
|
||||
<div style="text-align: center">
|
||||
<el-button type="primary" size="small" icon="search" @click="onModifySubmit"
|
||||
>提交
|
||||
</el-button
|
||||
>
|
||||
<el-button type="primary" size="small" icon="search" @click="cancelDialog"
|
||||
>取消
|
||||
</el-button
|
||||
>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</el-card>
|
||||
</div>
|
||||
<el-dialog
|
||||
title="编辑业务类型关联"
|
||||
:visible.sync="modifyDialogVisible"
|
||||
width="70%"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
v-if="modifyDialogVisible"
|
||||
>
|
||||
<modifyDialog :inputQuery="inputQuery"></modifyDialog>
|
||||
<div style="text-align: center">
|
||||
<el-button type="primary" size="small" icon="search" @click="onModifySubmit"
|
||||
>提交
|
||||
</el-button
|
||||
>
|
||||
<el-button type="primary" size="small" icon="search" @click="cancelDialog"
|
||||
>取消
|
||||
</el-button
|
||||
>
|
||||
</div>
|
||||
</el-dialog>
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
|
||||
import {getLocalBusType, addLocalBusType, updateLocalBusType} from "@/api/basic/busLocalType";
|
||||
import {getLocalBusType, addLocalBusType, updateLocalBusType,deleteLocalBusType} from "@/api/basic/busLocalType";
|
||||
import modifyDialog from "./BussinessTypeLoclModify";
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
filterQuery: {
|
||||
enabled: "1",
|
||||
udiwmsType: "",
|
||||
thirdType: "",
|
||||
page: 1,
|
||||
limit: 20,
|
||||
},
|
||||
addDialogVisible: false,
|
||||
modifyDialogVisible: false,
|
||||
list: [],
|
||||
inputQuery: {
|
||||
action: "",
|
||||
name: "",
|
||||
enable: "",
|
||||
remark: "",
|
||||
mainAction: "",
|
||||
thirdSysFk: "",
|
||||
id: "",
|
||||
originAction: null,
|
||||
localAction: null,
|
||||
advanceType: null,
|
||||
changeEnable: null,
|
||||
spUse: null,
|
||||
},
|
||||
enableMap: {
|
||||
true: "是",
|
||||
false: "否",
|
||||
},
|
||||
|
||||
total: 0,
|
||||
multipleSelection: [],
|
||||
};
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
filterQuery: {
|
||||
enabled: "1",
|
||||
udiwmsType: "",
|
||||
thirdType: "",
|
||||
page: 1,
|
||||
limit: 20,
|
||||
},
|
||||
addDialogVisible: false,
|
||||
modifyDialogVisible: false,
|
||||
list: [],
|
||||
inputQuery: {
|
||||
action: "",
|
||||
name: "",
|
||||
enable: "",
|
||||
remark: "",
|
||||
mainAction: "",
|
||||
thirdSysFk: "",
|
||||
id: "",
|
||||
originAction: null,
|
||||
localAction: null,
|
||||
advanceType: null,
|
||||
changeEnable: null,
|
||||
spUse: null,
|
||||
},
|
||||
enableMap: {
|
||||
true: "是",
|
||||
false: "否",
|
||||
},
|
||||
|
||||
methods: {
|
||||
onReset() {
|
||||
this.$router.push({
|
||||
path: "",
|
||||
});
|
||||
this.filterQuery = {
|
||||
udiwmsType: "",
|
||||
thirdType: "",
|
||||
page: 1,
|
||||
limit: 20,
|
||||
};
|
||||
this.getList();
|
||||
},
|
||||
cancelDialog() {
|
||||
this.modifyDialogVisible = false;
|
||||
this.addDialogVisible = false;
|
||||
total: 0,
|
||||
multipleSelection: [],
|
||||
};
|
||||
},
|
||||
|
||||
getList() {
|
||||
this.loading = true;
|
||||
getLocalBusType(this.filterQuery)
|
||||
.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;
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
onReset() {
|
||||
this.$router.push({
|
||||
path: "",
|
||||
});
|
||||
this.filterQuery = {
|
||||
udiwmsType: "",
|
||||
thirdType: "",
|
||||
page: 1,
|
||||
limit: 20,
|
||||
};
|
||||
this.getList();
|
||||
},
|
||||
cancelDialog() {
|
||||
this.modifyDialogVisible = false;
|
||||
this.addDialogVisible = false;
|
||||
},
|
||||
|
||||
getList() {
|
||||
this.loading = true;
|
||||
getLocalBusType(this.filterQuery)
|
||||
.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;
|
||||
});
|
||||
},
|
||||
|
||||
onAddSubmit() {
|
||||
addLocalBusType(this.inputQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
this.cancelDialog();
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.cancelDialog();
|
||||
});
|
||||
},
|
||||
|
||||
onModifySubmit() {
|
||||
updateLocalBusType(this.inputQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
this.cancelDialog();
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.cancelDialog();
|
||||
});
|
||||
},
|
||||
onAddSubmit() {
|
||||
addLocalBusType(this.inputQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
this.cancelDialog();
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.cancelDialog();
|
||||
});
|
||||
},
|
||||
|
||||
handleModifyClick(row) {
|
||||
this.modifyDialogVisible = true;
|
||||
this.inputQuery = {
|
||||
id: row.id,
|
||||
remark: row.remark,
|
||||
action: row.action,
|
||||
name: row.name,
|
||||
enable: row.enable,
|
||||
mainAction: row.mainAction,
|
||||
localAction: row.localAction,
|
||||
thirdSysFk: row.thirdSysFk,
|
||||
originAction: row.originAction,
|
||||
advanceType: row.advanceType,
|
||||
changeEnable: row.changeEnable,
|
||||
spUse: row.spUse,
|
||||
};
|
||||
},
|
||||
onModifySubmit() {
|
||||
updateLocalBusType(this.inputQuery)
|
||||
.then((response) => {
|
||||
this.loading = false;
|
||||
this.cancelDialog();
|
||||
this.getList();
|
||||
})
|
||||
.catch(() => {
|
||||
this.loading = false;
|
||||
this.cancelDialog();
|
||||
});
|
||||
},
|
||||
|
||||
handleAddClick() {
|
||||
this.addDialogVisible = true;
|
||||
this.inputQuery = {
|
||||
action: "",
|
||||
name: "",
|
||||
enable: "",
|
||||
remark: "",
|
||||
mainAction: "",
|
||||
thirdSysFk: "",
|
||||
id: "",
|
||||
advanceType: null,
|
||||
localAction: null,
|
||||
changeEnable: null,
|
||||
};
|
||||
},
|
||||
handleModifyClick(row) {
|
||||
this.modifyDialogVisible = true;
|
||||
this.inputQuery = {
|
||||
id: row.id,
|
||||
remark: row.remark,
|
||||
action: row.action,
|
||||
name: row.name,
|
||||
enable: row.enable,
|
||||
mainAction: row.mainAction,
|
||||
localAction: row.localAction,
|
||||
thirdSysFk: row.thirdSysFk,
|
||||
originAction: row.originAction,
|
||||
advanceType: row.advanceType,
|
||||
changeEnable: row.changeEnable,
|
||||
spUse: row.spUse,
|
||||
};
|
||||
},
|
||||
|
||||
deleteDialog(rowId) {
|
||||
this.$confirm("此操作将永久删除该业务类型信息, 是否继续?", "提示", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
})
|
||||
.then(() => {
|
||||
this.deleteOrders(rowId);
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
handleAddClick() {
|
||||
this.addDialogVisible = true;
|
||||
this.inputQuery = {
|
||||
action: "",
|
||||
name: "",
|
||||
enable: "",
|
||||
remark: "",
|
||||
mainAction: "",
|
||||
thirdSysFk: "",
|
||||
id: "",
|
||||
advanceType: null,
|
||||
localAction: null,
|
||||
changeEnable: null,
|
||||
};
|
||||
},
|
||||
|
||||
deleteOrders(data) {
|
||||
this.loading = true;
|
||||
let tquery = {
|
||||
id: data.id + "",
|
||||
};
|
||||
deleteDialog(rowId) {
|
||||
this.$confirm("此操作将永久删除该业务类型信息, 是否继续?", "提示", {
|
||||
confirmButtonText: "确定",
|
||||
cancelButtonText: "取消",
|
||||
type: "warning",
|
||||
})
|
||||
.then(() => {
|
||||
this.deleteOrders(rowId);
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
|
||||
deleteBussinessType(tquery)
|
||||
.then((response) => {
|
||||
this.getList();
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "删除成功!",
|
||||
});
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
deleteOrders(data) {
|
||||
this.loading = true;
|
||||
let tquery = {
|
||||
id: data.id + "",
|
||||
};
|
||||
|
||||
deleteLocalBusType(tquery)
|
||||
.then((response) => {
|
||||
this.getList();
|
||||
if (response.code == 20000) {
|
||||
this.$message({
|
||||
type: "success",
|
||||
message: "删除成功!",
|
||||
});
|
||||
} else {
|
||||
this.$message.error(response.message);
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
});
|
||||
},
|
||||
},
|
||||
components: {
|
||||
modifyDialog,
|
||||
},
|
||||
mounted() {
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
},
|
||||
components: {
|
||||
modifyDialog,
|
||||
},
|
||||
mounted() {
|
||||
},
|
||||
created() {
|
||||
this.getList();
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue