Commit 720c28f3 by LJM

add

parent 92e630e5
...@@ -86,11 +86,11 @@ ...@@ -86,11 +86,11 @@
</view> </view>
<view class="input-box row verCenter" style="flex: 0 0 100%;"> <view class="input-box row verCenter" style="flex: 0 0 100%;">
<text class="label">创建时间:</text> <text class="label">创建时间:</text>
<text class="text">{{item.create_time_val}}</text> <text class="text">{{item.create_time}}</text>
</view> </view>
<view class="input-box row verCenter" style="flex: 0 0 100%;"> <view class="input-box row verCenter" style="flex: 0 0 100%;">
<text class="label">回复时间:</text> <text class="label">回复时间:</text>
<text class="text">{{item.salesman_handle_time_val}}</text> <text class="text">{{item.salesman_handle_time}}</text>
</view> </view>
<view class="input-box row" style="flex: 0 0 100%;"> <view class="input-box row" style="flex: 0 0 100%;">
<text class="label">理货照片:</text> <text class="label">理货照片:</text>
......
...@@ -390,8 +390,8 @@ ...@@ -390,8 +390,8 @@
//获取异常数量 //获取异常数量
this.getStayHandleCount(); this.getStayHandleCount();
if (this.box_sn && this.erp_order_sn) { if (this.box_sn && this.erp_order_sn && this.noexebshowFalg) {
this.getTallyList(); this.getTallyData();
} }
}, },
......
...@@ -257,7 +257,14 @@ ...@@ -257,7 +257,14 @@
if (res.confirm) { if (res.confirm) {
this.request(API.cancelTallyDetail, 'POST', { wstydl_id: item.wstydl_id, wsty_id: item.wsty_id }, true).then(res => { this.request(API.cancelTallyDetail, 'POST', { wstydl_id: item.wstydl_id, wsty_id: item.wsty_id }, true).then(res => {
if (res.err_code === 0) { if (res.err_code === 0) {
this.getData(); uni.showToast({
title: '操作成功',
icon: 'success'
});
setTimeout(() => {
this.resetChange();
this.getData();
}, 2000)
} else { } else {
uni.showToast({ uni.showToast({
title: res.err_msg, title: res.err_msg,
...@@ -278,7 +285,14 @@ ...@@ -278,7 +285,14 @@
if (res.confirm) { if (res.confirm) {
this.request(API.cancelTallyDetail, 'POST', { wstydl_id: item.wstydl_id, wsty_id: item.wsty_id }, true).then(res => { this.request(API.cancelTallyDetail, 'POST', { wstydl_id: item.wstydl_id, wsty_id: item.wsty_id }, true).then(res => {
if (res.err_code === 0) { if (res.err_code === 0) {
this.getData(); uni.showToast({
title: '操作成功',
icon: 'success'
});
setTimeout(() => {
this.resetChange();
this.getData();
}, 2000)
} else { } else {
uni.showToast({ uni.showToast({
title: res.err_msg, 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