4.7提交
This commit is contained in:
parent
7ae2198a64
commit
1420c69284
|
|
@ -64,6 +64,7 @@ class Http{
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
fail(err) {
|
fail(err) {
|
||||||
|
// console.log(err);
|
||||||
reject(err)
|
reject(err)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@
|
||||||
"name" : "智慧仓储",
|
"name" : "智慧仓储",
|
||||||
"appid" : "__UNI__9D122E1",
|
"appid" : "__UNI__9D122E1",
|
||||||
"description" : "",
|
"description" : "",
|
||||||
"versionName" : "1.0.4",
|
"versionName" : "1.0.5",
|
||||||
"versionCode" : 104,
|
"versionCode" : 105,
|
||||||
"transformPx" : false,
|
"transformPx" : false,
|
||||||
/* 5+App特有相关 */
|
/* 5+App特有相关 */
|
||||||
"app-plus" : {
|
"app-plus" : {
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@
|
||||||
<checkbox :checked="fetch.checked" />
|
<checkbox :checked="fetch.checked" />
|
||||||
</checkbox-group> -->
|
</checkbox-group> -->
|
||||||
<view class="upper-lef">
|
<view class="upper-lef">
|
||||||
{{ fetch.backPerson.slice(0, 1) }}
|
{{ fetch.backPerson == null ? '' : fetch.backPerson.slice(0, 1) }}
|
||||||
</view>
|
</view>
|
||||||
<view class="upper-rig">
|
<view class="upper-rig">
|
||||||
<h4 style="font-size: 16px;">{{ fetch.backPerson }}</h4>
|
<h4 style="font-size: 16px;">{{ fetch.backPerson }}</h4>
|
||||||
|
|
@ -239,10 +239,10 @@ import { basePath } from '../../public'
|
||||||
onShow() {
|
onShow() {
|
||||||
let that = this
|
let that = this
|
||||||
// console.log(uni.getStorageSync('userInfo').sysUser.companyId);
|
// console.log(uni.getStorageSync('userInfo').sysUser.companyId);
|
||||||
// 获取领料出库数据
|
// 获取退料接收列表
|
||||||
|
|
||||||
that.$api.backMaterialReceive.backMaterialReceiveList({
|
that.$api.backMaterialReceive.backMaterialReceiveList({
|
||||||
companyId: uni.getStorageSync('userInfo').sysUser.companyId
|
companyId: uni.getStorageSync('userInfo').sysUser.companyId,
|
||||||
|
flag: 0
|
||||||
// companyId:'101'
|
// companyId:'101'
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
console.log(res);
|
console.log(res);
|
||||||
|
|
|
||||||
|
|
@ -300,6 +300,7 @@
|
||||||
taskId: that.taskId,
|
taskId: that.taskId,
|
||||||
parentId: that.detailsId
|
parentId: that.detailsId
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
|
console.log(res)
|
||||||
if (res.data.code == 200) {
|
if (res.data.code == 200) {
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
icon: 'none',
|
icon: 'none',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue