This commit is contained in:
bb_pan 2025-08-11 09:43:15 +08:00
parent 80e76e6c80
commit 68db9d46b5
2 changed files with 6 additions and 3 deletions

View File

@ -163,7 +163,10 @@
<view class="loading-text">
{{ '没有更多数据了~' }}
</view>
<view v-if="codeDeviceList.length > 0" class="outbound-btn" @tap="onHandleOutbound"> 添加 </view>
<div v-if="codeDeviceList.length > 0">
<button type="primary" @click="onHandleOutbound">添加</button>
</div>
</scroll-view>
</scroll-view>
</view>

View File

@ -39,7 +39,7 @@ onLoad((opt) => {
// console.log('🚀 ~ onLoad ~ opt:', opt)
const params = opt.params ? JSON.parse(opt.params) : {}
Object.assign(opts, params)
if (opts.isLease) {
if (opts.isLease || opts.isToolsLease) {
signType.value = opts.leaseSignType
imgPath.value = opts.leaseSignUrl
}
@ -57,7 +57,7 @@ onLoad((opt) => {
})
onMounted(() => {
if (opts.isLease || opts.isBack || opts.isAuthorize) return
if (opts.isLease || opts.isBack || opts.isAuthorize || opts.isToolsLease) return
getSignData()
})