1.添加系统版本号信息

2.修复仓库和配货管理页面的bug
zhairh
x_z 3 years ago
parent e78c684357
commit 9dc5519a86

@ -388,7 +388,7 @@
</el-button </el-button
> >
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<div slot="footer" class="dialog-footer"> <div slot="footer" class="dialog-footer">
@ -899,6 +899,7 @@ export default {
thirdQuery: { thirdQuery: {
key: null, key: null,
page: 1, page: 1,
status: 1,
limit: 10, limit: 10,
thirdSysFk: "thirdId", thirdSysFk: "thirdId",
}, },
@ -1455,7 +1456,7 @@ export default {
var action=obj.toString(); var action=obj.toString();
this.bussinessTypeQuery.ids=action; this.bussinessTypeQuery.ids=action;
} }
this.bussinessTypeQuery.code=this.busQuery.code; this.bussinessTypeQuery.code=this.busQuery.code;
getJoinBussinessType(this.bussinessTypeQuery).then((res) => { getJoinBussinessType(this.bussinessTypeQuery).then((res) => {
this.selectBussinessTypeList = []; this.selectBussinessTypeList = [];
@ -1466,7 +1467,7 @@ export default {
if (that.$refs.typeList) { if (that.$refs.typeList) {
that.$refs.typeList.clearSelection(); that.$refs.typeList.clearSelection();
} }
that.bussinessTypeList.forEach(row => { that.bussinessTypeList.forEach(row => {
if (row.checkSelect==true) { if (row.checkSelect==true) {
that.$refs.typeList.toggleRowSelection(row, true); that.$refs.typeList.toggleRowSelection(row, true);
@ -1558,7 +1559,7 @@ export default {
this.getBussinessType(1,action); this.getBussinessType(1,action);
}, },
selsectBussinessType(row){ selsectBussinessType(row){
// if(row==null || row==undefined){ // if(row==null || row==undefined){
// this.$message.info(""); // this.$message.info("");
// return; // return;
@ -1601,12 +1602,12 @@ export default {
this.busTotal = 0; this.busTotal = 0;
}); });
this.selectWhouseBussinessType(); this.selectWhouseBussinessType();
} else { } else {
this.$message.error(res.message); this.$message.error(res.message);
} }
}).catch((error) => { }).catch((error) => {
}); });

@ -13,7 +13,9 @@
src="../../assets/logo.png" src="../../assets/logo.png"
/> />
<!--文字logo--> <!--文字logo-->
<span>医院供应商自助平台</span> <div style="height: 50px;">
<span style="display: block; color: #1e6abc; font-size: 20px;">{{version}}</span>
</div>
</div> </div>
<el-menu <el-menu
class="menu" class="menu"
@ -332,6 +334,7 @@ export default {
true: "请选择送货仓库和分库", true: "请选择送货仓库和分库",
false: "请选择当前仓库和分库", false: "请选择当前仓库和分库",
}, },
version: null,
}; };
}, },
components: { components: {
@ -398,7 +401,7 @@ export default {
this.company = response.data; this.company = response.data;
}); });
}, },
locCHange() { locCHange() {
@ -446,7 +449,7 @@ export default {
this.$store.commit(types.RECEIVE_LOCSUBINVNAME, this.locSubInvName); this.$store.commit(types.RECEIVE_LOCSUBINVNAME, this.locSubInvName);
} }
} }
}) })
.catch(() => { .catch(() => {
@ -537,7 +540,6 @@ export default {
}, },
}, },
created() { created() {
this.getBreadcrumb(); this.getBreadcrumb();
this.getCompanyData(); this.getCompanyData();
// this.getStorage(); // this.getStorage();
@ -560,6 +562,7 @@ export default {
axios.get("./config.json").then(res => { axios.get("./config.json").then(res => {
// //
this.hospitalName = res.data.hosp_name; this.hospitalName = res.data.hosp_name;
this.version = res.data.version;
}); });
}, },
@ -830,5 +833,6 @@ export default {
.slide-toggle { .slide-toggle {
display: none; display: none;
} }
} }
</style> </style>

@ -62,7 +62,7 @@
</el-col> </el-col>
<el-col :span="7"> <el-col :span="7">
<el-form-item prop="corpName"> <el-form-item prop="corpName">
<el-input v-if="formData.fromSubInvName !=null" v-model="formData.fromSubInvName" <el-input v-if="formData.corpName !=null" v-model="formData.corpName"
auto-complete="off" :disabled="true"></el-input> auto-complete="off" :disabled="true"></el-input>
</el-form-item> </el-form-item>
</el-col> </el-col>
@ -91,14 +91,14 @@
<el-col :span="3"> <el-col :span="3">
<div class="ao-text"> <div class="ao-text">
<span>当前</span> <span>当前</span>
</div> </div>
</el-col> </el-col>
<el-col :span="7"> <el-col :span="7">
<el-form-item prop="invWarehouseCode"> <el-form-item prop="invWarehouseCode">
<el-select v-model="formData.invWarehouseCode" disabled <el-select v-model="formData.invWarehouseCode" disabled
placeholder="当前库信息" placeholder="当前库信息"
clearable> clearable>
<el-option <el-option
v-for="item in subInvList" v-for="item in subInvList"

Loading…
Cancel
Save