切换导航条
此项目
正在载入...
登录
朱兆平
/
vue_cli
·
提交
转到一个项目
GitLab
转到仪表盘
项目
活动
文件
提交
管道
0
构建
0
图表
里程碑
问题
0
合并请求
0
成员
标记
维基
派生
网络
创建新的问题
下载为
邮件补丁
差异文件
浏览文件
作者
朱兆平
2024-08-29 11:09:38 +0800
提交
6bff7b2a27362074ba646d9d0e8bc9c531feb0a8
1 个父辈
5cc9c0da
bug-fix:
1. 修复仓库管理-库位管理列表双击时弹出的窗口显示的不是库位的库存信息.
显示空白字符变更
内嵌
并排对比
正在显示
3 个修改的文件
包含
6 行增加
和
5 行删除
src/views/deploy/inventroy.vue
src/views/deploy/locations.vue
src/views/deploy/tabulation.vue
src/views/deploy/inventroy.vue
查看文件 @
6bff7b2
...
...
@@ -1164,7 +1164,7 @@
this.$message.success(res.msg)
this.getList()
}).catch(error => {
this.$message.error(
res.msg
)
this.$message.error(
error
)
})
}).catch(() => {
})
...
...
@@ -1180,11 +1180,12 @@
},
watch: {
parentLoId(value) {
if (jsutil.checkNull(this.parentLoId)){
if (
value &&
jsutil.checkNull(this.parentLoId)){
this.queryInfo.locationno = this.parentLoId;
}
this.getList();
}
}
}
}
...
...
src/views/deploy/locations.vue
查看文件 @
6bff7b2
...
...
@@ -231,7 +231,7 @@
</el-row>
</el-card>
<el-dialog title="库存" :visible.sync="dialogVisible" fullscreen >
<INVENTROY :parent
-locations-i
d="selectedLoId" />
<INVENTROY :parent
LoI
d="selectedLoId" />
<span slot="footer" class="dialog-footer">
<el-button type="info" @click="dialogVisible = false">关 闭</el-button>
</span>
...
...
src/views/deploy/tabulation.vue
查看文件 @
6bff7b2
...
...
@@ -191,7 +191,7 @@
</el-table-column>
<el-table-column
prop="opter"
label="入库经办人"
label="
出
入库经办人"
width="100">
</el-table-column>
<el-table-column
...
...
请
注册
或
登录
后发表评论