dev #1

Open
zly wants to merge 52 commits from dev into master
2 changed files with 5 additions and 1 deletions
Showing only changes of commit 51a50fcd8d - Show all commits

View File

@@ -85,6 +85,10 @@ onMenuSelect(e) {
this.handleDoNotice(id);
break;
}
},
handleDoNoticeBtn(e) {
const id = e.currentTarget.dataset.id;
this.handleDoNotice(id)
},
async handleDoNotice(id) {
const { code, message } = await doNoticeFlow(id)

View File

@@ -64,7 +64,7 @@
class="primaryTextBtn"
wx:if="{{item.flow_status === 1}}"
data-id="{{item.id}}"
bind:tap="handleDoNotice"
bind:tap="handleDoNoticeBtn"
> 确认 </view>
<view wx:else> 已确认 </view>
</view>