diff --git a/src/pages/materialsStation/toolsLease/codeOut.vue b/src/pages/materialsStation/toolsLease/codeOut.vue index 01b20fc..a8779c5 100644 --- a/src/pages/materialsStation/toolsLease/codeOut.vue +++ b/src/pages/materialsStation/toolsLease/codeOut.vue @@ -163,7 +163,10 @@ {{ '没有更多数据了~' }} - 添加 + +
+ +
diff --git a/src/pages/my/signature.vue b/src/pages/my/signature.vue index 7d47bae..4e17c0d 100644 --- a/src/pages/my/signature.vue +++ b/src/pages/my/signature.vue @@ -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() })