修改bug

ww
wangwei 3 years ago
parent 70255f185d
commit 8df20c2c7f

@ -1,7 +1,7 @@
{ {
"BASE_URL": "http://192.168.1.20:9906", "BASE_URL": "http://127.0.0.1:9906",
"SERVER_IP": "http://192.168.1.20:9906", "SERVER_IP": "http://127.0.0.1:9906",
"hosp_name": "福建省XX市医院", "hosp_name": "福建省XX市医院"
"version": "V2.0"
} }

@ -150,6 +150,7 @@ import {getBussinessType} from "../../api/basic/bussinessType";
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain"; import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
import {filterAllByUser, filterUplLocInv} from "@/api/basic/invWarehouse"; import {filterAllByUser, filterUplLocInv} from "@/api/basic/invWarehouse";
import {filterSubByInv} from "@/api/basic/invSubWarehouse"; import {filterSubByInv} from "@/api/basic/invSubWarehouse";
import {filterProducts} from "@/api/inventory/InvProducts";
export default { export default {
@ -261,7 +262,7 @@ export default {
getList() { getList() {
this.loading = true; this.loading = true;
this.filterQuery.customerId = store.getters.customerId; this.filterQuery.customerId = store.getters.customerId;
stockStatistics(this.filterQuery) filterProducts(this.filterQuery)
.then((response) => { .then((response) => {
this.showSup = response.data.showSup; this.showSup = response.data.showSup;
this.loading = false; this.loading = false;

@ -502,13 +502,13 @@ export default {
, ,
getCompanyCertList() { getCompanyCertList() {
this.certLoading = true; this.certLoading = true;
this.certQuery.customerId = this.inputQuery.customerId; this.certQuery.customerId = this.inputQuery.customerId;
this.certQuery.type = 1; this.certQuery.type = 1;
this.certQuery.auditStatus=25; this.certQuery.auditStatus=25;
filterCompanyCert(this.certQuery) filterCompanyCert(this.certQuery)
.then((response) => { .then((response) => {
this.certLoading = false; this.certLoading = false;

@ -441,7 +441,6 @@ export default {
companyAddCert, companyAddCert,
}, },
methods: { methods: {
onPassSubmit(val) { onPassSubmit(val) {
this.inputQuery.auditStatus = 1; this.inputQuery.auditStatus = 1;
this.$confirm("是否审核通过?", "提示", { this.$confirm("是否审核通过?", "提示", {

@ -580,6 +580,7 @@ export default {
detailHandleCurrentChange(val) { detailHandleCurrentChange(val) {
this.detailQuery.page = val; this.detailQuery.page = val;
this.getStockOrderDetailList(); this.getStockOrderDetailList();
this.detailQuery.page = 1;
}, },
// //
resetForm() { resetForm() {

Loading…
Cancel
Save