This commit is contained in:
liuye
2024-06-27 16:19:52 +08:00
parent a759c7aacf
commit 42f26c92c1
3 changed files with 6 additions and 7 deletions

View File

@@ -101,7 +101,7 @@ export default {
const id = this.notices[val]["id"];
if (id) {
uni.navigateTo({
url: "../AppNotice/AppNotice?id=" + id
url: "/mods/AppNotice/AppNotice?id=" + id
})
}
},

View File

@@ -20,7 +20,7 @@
<div class="item">
<div class="line-flex">
<div class="label">经营类型</div>
<div class="value">
<div class="value" @click="showOperatorType=true">
{{ $dict.getLabel('operatorType', detailInfo.operatorType) }}<u-icon name="arrow-right" color="#999" size="22"></u-icon>
</div>
</div>

View File

@@ -45,11 +45,10 @@ export default {
this.tabIndex = e.tabIndex
}
let info = uni.createSelectorQuery().select(".tab");
info.boundingClientRect((data)=> { //data - 各种参数
this.tabHeight = data.height
console.log(this.tabHeight)
}).exec()
info.boundingClientRect((data)=> { //data - 各种参数
this.tabHeight = data.height
console.log(this.tabHeight)
}).exec()
},
onShow() {