修改bug

ww
wangwei 3 years ago
parent 70255f185d
commit 8df20c2c7f

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

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

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

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

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

Loading…
Cancel
Save