From 4e3111305f54f518ea538f671b602283974e7a59 Mon Sep 17 00:00:00 2001 From: yujialong <479214531@qq.com> Date: Thu, 16 Feb 2023 09:54:17 +0800 Subject: [PATCH] fix --- App.vue | 13 +------------ order/orderDetail/orderDetail.vue | 8 ++++++++ pages/send/send.vue | 7 +++++++ 3 files changed, 16 insertions(+), 12 deletions(-) diff --git a/App.vue b/App.vue index 39a5cae..55be1b2 100644 --- a/App.vue +++ b/App.vue @@ -16,18 +16,7 @@ // 小程序有新版本,则静默下载新版本,做好更新准备 updateManager.onUpdateReady(function (res) { - console.log('onUpdateReady', res); - uni.showModal({ - title: '更新提示', - content: '新版本已经准备好,点击确定重新启动', - showCancel:false, - success(res) { - if (res.confirm) { - // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启 - updateManager.applyUpdate(); - } - } - }); + updateManager.applyUpdate() }); updateManager.onUpdateFailed(function (res) { diff --git a/order/orderDetail/orderDetail.vue b/order/orderDetail/orderDetail.vue index 1a850c8..39a8e04 100644 --- a/order/orderDetail/orderDetail.vue +++ b/order/orderDetail/orderDetail.vue @@ -189,6 +189,14 @@ err: '' } }, + watch: { + keyword () { + clearTimeout(this.searchTimer) + this.searchTimer = setTimeout(() => { + this.filterCustomer() + }, 500) + } + }, onShow() { const pages = getCurrentPages() const { options } = pages[pages.length - 1] diff --git a/pages/send/send.vue b/pages/send/send.vue index d240ae0..fe861e4 100644 --- a/pages/send/send.vue +++ b/pages/send/send.vue @@ -6,6 +6,7 @@ 我的邮箱 + 绑定 @@ -95,4 +96,10 @@ margin: 0 10px 0 -20px; } } +.bind { + margin-left: 20rpx; + font-size: 26rpx; + color: #1f83ff; + white-space: nowrap; +}