代码更新

This commit is contained in:
2022-11-28 16:10:29 +08:00
parent 8857845c7e
commit 800eeb8f8a
5 changed files with 46 additions and 33 deletions

View File

@@ -213,7 +213,7 @@ export default {
mater_btn: false,
materType: '',
storlist: [],
billtypelist: [{ 'code': '000101', 'name': '生产入库' }],
billtypelist: [],
rules: {
stor_id: [
{ required: true, message: '仓库不能为空', trigger: 'blur' }
@@ -237,7 +237,7 @@ export default {
methods: {
open() {
// 查询原材料库的仓库
crudStorattr.getStor({ 'is_productstore': '1' }).then(res => {
crudStorattr.getStor({ 'is_virtualstore': '1' }).then(res => {
this.storlist = res.content
})
},