Commit 720c28f3 by LJM

add

parent 92e630e5
......@@ -86,11 +86,11 @@
</view>
<view class="input-box row verCenter" style="flex: 0 0 100%;">
<text class="label">创建时间:</text>
<text class="text">{{item.create_time_val}}</text>
<text class="text">{{item.create_time}}</text>
</view>
<view class="input-box row verCenter" style="flex: 0 0 100%;">
<text class="label">回复时间:</text>
<text class="text">{{item.salesman_handle_time_val}}</text>
<text class="text">{{item.salesman_handle_time}}</text>
</view>
<view class="input-box row" style="flex: 0 0 100%;">
<text class="label">理货照片:</text>
......
......@@ -390,8 +390,8 @@
//获取异常数量
this.getStayHandleCount();
if (this.box_sn && this.erp_order_sn) {
this.getTallyList();
if (this.box_sn && this.erp_order_sn && this.noexebshowFalg) {
this.getTallyData();
}
},
......
......@@ -257,7 +257,14 @@
if (res.confirm) {
this.request(API.cancelTallyDetail, 'POST', { wstydl_id: item.wstydl_id, wsty_id: item.wsty_id }, true).then(res => {
if (res.err_code === 0) {
this.getData();
uni.showToast({
title: '操作成功',
icon: 'success'
});
setTimeout(() => {
this.resetChange();
this.getData();
}, 2000)
} else {
uni.showToast({
title: res.err_msg,
......@@ -278,7 +285,14 @@
if (res.confirm) {
this.request(API.cancelTallyDetail, 'POST', { wstydl_id: item.wstydl_id, wsty_id: item.wsty_id }, true).then(res => {
if (res.err_code === 0) {
this.getData();
uni.showToast({
title: '操作成功',
icon: 'success'
});
setTimeout(() => {
this.resetChange();
this.getData();
}, 2000)
} else {
uni.showToast({
title: res.err_msg,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment