This commit is contained in:
2025-08-14 16:49:58 +08:00
parent b2009403d8
commit 26c1ac5ced
15 changed files with 1144 additions and 351 deletions

View File

@@ -5,6 +5,8 @@
mode="bottom"
:round="8"
:background="'#fff'"
@close="closeOrderModalShow"
style="background: #fff" backgroundColor="#fff"
>
<view class="orderModalShow popup_box">
@@ -29,7 +31,7 @@
<view class="hb-comment" style="height: 80vh">
<view class="hb-comment" style="max-height: 70vh">
<view class="comment-list" v-if="likeList.length != 0">
<view class="comment-box" v-for="(item, index) in likeList">
<view class="comment-box-item">
@@ -109,6 +111,18 @@ export default {
async onLoad(options) {
},
watch: {
orderModalShow: {
handler(newVal, oldVal) {
this.$emit("show",this.orderModalShow);
},
immediate: true,
},
},
onShow() {
@@ -128,13 +142,16 @@ export default {
this.articleInfo.taihuTalent
);
await this.getMedicalDetail(()=>{
this.orderModalShow = true;
});
},
closeOrderModalShow() {
this.orderModalShow = false;
this.$emit("close",this.articleId);
},
@@ -351,7 +368,7 @@ export default {
}
.comment-main-top {
width: 600rpx;
width: 100%;
padding-top: 12rpx;
display: flex;
justify-content: space-between;