1.添加系统版本号信息

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

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

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

@ -62,7 +62,7 @@
</el-col>
<el-col :span="7">
<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>
</el-form-item>
</el-col>
@ -91,14 +91,14 @@
<el-col :span="3">
<div class="ao-text">
<span>当前</span>
<span>当前</span>
</div>
</el-col>
<el-col :span="7">
<el-form-item prop="invWarehouseCode">
<el-select v-model="formData.invWarehouseCode" disabled
placeholder="当前库信息"
placeholder="当前库信息"
clearable>
<el-option
v-for="item in subInvList"

Loading…
Cancel
Save