From eaa36dcf4484744fe5ea6b0d21cac90790d76302 Mon Sep 17 00:00:00 2001
From: lifizer <913626195@qq.com>
Date: Wed, 10 Dec 2025 16:57:42 +0800
Subject: [PATCH 01/16] =?UTF-8?q?Fix(=E4=B8=93=E9=A2=98=E9=A1=B5):?=
=?UTF-8?q?=E5=B0=96=E8=B4=A7&=E8=8A=82=E6=97=A5=E5=88=86=E4=BA=AB?=
=?UTF-8?q?=E6=9C=8B=E5=8F=8B=E5=9C=88=E8=BF=9B=E5=85=A5=E5=B0=8F=E7=A8=8B?=
=?UTF-8?q?=E5=BA=8F=E6=B8=B2=E6=9F=93=E9=94=99=E8=AF=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_product/mixins/themeMixins.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg_product/mixins/themeMixins.js b/pkg_product/mixins/themeMixins.js
index 6d99d78..1c3b0f8 100644
--- a/pkg_product/mixins/themeMixins.js
+++ b/pkg_product/mixins/themeMixins.js
@@ -52,7 +52,7 @@ export const themeMixins = {
const title = this.pageData.forwardTitle || this.share.title
return {
title,
- query: `id=${this.pageData.id}`,
+ query: `id=${this.pageData.id}&theme=${this.theme || ''}`,
imageUrl: this.pageData.forwardImage || this.share.imageUrl
}
},
From 1f4ea5c0c89f9e5a2804e5ba08b3df92f1078681 Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Wed, 10 Dec 2025 18:23:12 +0800
Subject: [PATCH 02/16] =?UTF-8?q?Fix=EF=BC=9A=E6=97=85=E5=B1=85=E5=88=86?=
=?UTF-8?q?=E4=BA=AB=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
api/qianxian.js | 7 ++++++
pkg_product/views/famousQianxianShop.vue | 2 ++
pkg_product/views/housekeeperDetail.vue | 28 +++++++++++++++++++++---
pkg_product/views/oldSojumStore.vue | 17 ++++++++++++--
pkg_product/views/sojoumStore.vue | 19 +++++++++++++---
utils/common.js | 2 ++
6 files changed, 67 insertions(+), 8 deletions(-)
diff --git a/api/qianxian.js b/api/qianxian.js
index ae02d43..9da7bd1 100644
--- a/api/qianxian.js
+++ b/api/qianxian.js
@@ -260,3 +260,10 @@ export function getJiaLouNewsList(params) {
export function getShareHousekeeper(id) {
return request.get('/travel/steward/poster/' + id, {login: true})
}
+
+/**
+ * 管家详情
+ */
+export function getJiaLouStewardDetail(id) {
+ return request.get('/travel/steward/' + id, {}, {login: true})
+}
diff --git a/pkg_product/views/famousQianxianShop.vue b/pkg_product/views/famousQianxianShop.vue
index 1c88bd1..3373fa0 100644
--- a/pkg_product/views/famousQianxianShop.vue
+++ b/pkg_product/views/famousQianxianShop.vue
@@ -839,6 +839,7 @@ export default {
onLoad(options) {
const id = options.id || ''
this.id = id
+
if (id) {
this.partnerId = options.partnerId || null
} else {
@@ -847,6 +848,7 @@ export default {
const query = options ? decodeURIComponent(options.scene) : decodeURIComponent(obj.query.scene)
this.partnerId = getUrlParam(query, 'partnerId') || null
this.id = getUrlParam(query, 'id') || null
+
}
}
if (this.partnerId) cookie.set('spread', this.partnerId)
diff --git a/pkg_product/views/housekeeperDetail.vue b/pkg_product/views/housekeeperDetail.vue
index 144e2fa..1ecf647 100644
--- a/pkg_product/views/housekeeperDetail.vue
+++ b/pkg_product/views/housekeeperDetail.vue
@@ -75,8 +75,9 @@
+
+
From 0292dbd0566d60b175f22238dea952c49f4871a2 Mon Sep 17 00:00:00 2001
From: LinCyJang
Date: Sun, 14 Dec 2025 11:34:20 +0800
Subject: [PATCH 07/16] =?UTF-8?q?Feat=EF=BC=9A=E5=8D=83=E5=8E=BF=E5=BA=97?=
=?UTF-8?q?=E9=93=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
api/qianxian.js | 7 ++
pkg_product/views/famousQianxianShop.vue | 83 +++++++++++++++---------
2 files changed, 60 insertions(+), 30 deletions(-)
diff --git a/api/qianxian.js b/api/qianxian.js
index bb2d4c1..5eec447 100644
--- a/api/qianxian.js
+++ b/api/qianxian.js
@@ -282,3 +282,10 @@ export function getCityNewsDetail(id) {
export function getCityNewsCategory() {
return request.get('/countyFamous/newsCategory', {}, {login: true})
}
+
+/**
+ * 获取县城店铺列表
+ */
+export function getCityShopList(params) {
+ return request.get('/countyFamous/hotel', params, {login: true})
+}
diff --git a/pkg_product/views/famousQianxianShop.vue b/pkg_product/views/famousQianxianShop.vue
index 03f12ec..d911b2f 100644
--- a/pkg_product/views/famousQianxianShop.vue
+++ b/pkg_product/views/famousQianxianShop.vue
@@ -532,15 +532,15 @@
@@ -551,41 +551,52 @@
{{ tab.name }}
-
-
-
-
-
- · {{ file.title }}
-
+
+
+
+
+
+
+
+ {{ shop.address }}
+
+
+
+
+
+ {{ shop.content }}
+
+
+
+
+ {{ shop.name }}
+
+
- 暂无招商政策
+ 暂无店铺
-
-
- 更多政策
-
-
-
{
+ this.shopList = res.data.records || []
+ })
+ }
},
fileItemClick(file) {
const url = file.attachment || ''
From 5ec97e99b89859526462461ed5a7ae9ee84699f9 Mon Sep 17 00:00:00 2001
From: LinCyJang
Date: Tue, 16 Dec 2025 19:47:44 +0800
Subject: [PATCH 08/16] =?UTF-8?q?Fix=EF=BC=9A4726=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E7=82=B9=E5=87=BB=E2=80=9C=E4=BA=A7=E5=93=81=E2=80=9D=E7=B1=BB?=
=?UTF-8?q?=E7=9B=AE=E4=B8=8B=E6=96=B9=E5=95=86=E5=93=81=E7=9A=84=E5=8A=A0?=
=?UTF-8?q?=E8=B4=AD=E5=9B=BE=E6=A0=87=E5=90=8E=EF=BC=8C=E5=8D=83=E5=8E=BF?=
=?UTF-8?q?=E6=94=BB=E7=95=A5=E3=80=81=E8=B5=84=E8=AE=AF=E7=B1=BB=E7=9B=AE?=
=?UTF-8?q?=E7=9A=84=E6=95=B0=E6=8D=AE=E5=8A=A0=E8=BD=BD=E5=A4=B1=E8=B4=A5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
mixins/goCartMixins.js | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/mixins/goCartMixins.js b/mixins/goCartMixins.js
index 6b84eef..3ae1a2e 100644
--- a/mixins/goCartMixins.js
+++ b/mixins/goCartMixins.js
@@ -14,7 +14,7 @@ export default {
isOpen: false,
attrTxt: '',
attrValue: '',
- id: null,
+ m_id: null,
productValueArr: [],
attr: {
cartAttr: false,
@@ -51,7 +51,7 @@ export default {
}
},
getSkuActiveStatus(selectedSku) {
- getProductSkuBySelected({ id: this.id, selectedSku }).then(res => {
+ getProductSkuBySelected({ id: this.m_id, selectedSku }).then(res => {
const { success, data } = res
if (success) {
for (const key in data) {
@@ -75,7 +75,7 @@ export default {
})
},
productCon() {
- getProductDetail(this.id).then(res => {
+ getProductDetail(this.m_id).then(res => {
const { data } = res
this.storeInfo = {...data.storeInfo}
if(data.storeInfo.stock === 0) {
@@ -235,7 +235,7 @@ export default {
// 点击加入购物车按钮
addToCart(item, id = 'id') {
console.log(item, 'addToCart --------- item');
- this.id = item[id]
+ this.m_id = item[id]
this.$nextTick(() => {
this.productCon()
@@ -259,7 +259,7 @@ export default {
return
}
const q = {
- productId: this.id,
+ productId: this.m_id,
cartNum: this.attr.productSelect.cart_num,
new: 0,
uniqueId: this.attr.productSelect !== undefined ? this.attr.productSelect.unique : ''
From d2e48bc16fdd5fe9a71aad160c71450a9638cc46 Mon Sep 17 00:00:00 2001
From: LinCyJang
Date: Tue, 16 Dec 2025 19:52:09 +0800
Subject: [PATCH 09/16] =?UTF-8?q?Fix=EF=BC=9A4725=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E4=BA=92=E5=8A=A8=E6=B6=88=E6=81=AF=E7=95=8C=E9=9D=A2=EF=BC=8C?=
=?UTF-8?q?=E5=9B=9E=E5=A4=8D=E5=86=85=E5=AE=B9=E4=B8=8E=E8=A2=AB=E5=9B=9E?=
=?UTF-8?q?=E5=A4=8D=E5=86=85=E5=AE=B9=E4=BA=A4=E6=8D=A2=E4=BD=8D=E7=BD=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_common/views/message.vue | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/pkg_common/views/message.vue b/pkg_common/views/message.vue
index 4f98a0c..fe979d3 100644
--- a/pkg_common/views/message.vue
+++ b/pkg_common/views/message.vue
@@ -34,20 +34,21 @@
- {{ comment.parentReply }}
-
-
- {{ "@" + comment.replyAt.atNickName + ' ' }}
{{ comment.reply }}
+
+ {{ comment.parentReply }}
+
+
Date: Tue, 16 Dec 2025 19:56:48 +0800
Subject: [PATCH 10/16] =?UTF-8?q?Fix=EF=BC=9A4722=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E5=8D=83=E5=8E=BF=E8=B5=84=E8=AE=AF-=E7=82=B9=E5=87=BB?=
=?UTF-8?q?=E8=AF=84=E8=AE=BA=E5=9B=BE=E6=A0=87=E6=B2=A1=E6=9C=89=E8=B7=B3?=
=?UTF-8?q?=E8=BD=AC=E5=88=B0=E8=B5=84=E8=AE=AF=E8=AF=A6=E6=83=85=E9=A1=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_product/views/famousQianxianShop.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg_product/views/famousQianxianShop.vue b/pkg_product/views/famousQianxianShop.vue
index d911b2f..45d2851 100644
--- a/pkg_product/views/famousQianxianShop.vue
+++ b/pkg_product/views/famousQianxianShop.vue
@@ -239,7 +239,7 @@
>{{ item.zan }}
-
+
{{ item.replyCount || 0}}
From 0fd11fe68d6cb0c730982f46196be1b06b9fe0a4 Mon Sep 17 00:00:00 2001
From: LinCyJang
Date: Tue, 16 Dec 2025 20:06:59 +0800
Subject: [PATCH 11/16] =?UTF-8?q?Fix=EF=BC=9A4721=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E5=B7=B2=E8=A2=AB=E9=A2=86=E5=8F=96=E7=9A=84=E7=A4=BC=E5=8C=85?=
=?UTF-8?q?=E5=9C=A824=E5=B0=8F=E6=97=B6=E5=90=8E=E6=9F=A5=E7=9C=8B?=
=?UTF-8?q?=E9=A2=86=E5=8F=96=E9=A1=B5=E9=9D=A2=E4=BC=9A=E6=98=BE=E7=A4=BA?=
=?UTF-8?q?=E4=B8=BA=E7=A4=BC=E5=8C=85=E5=B7=B2=E5=A4=B1=E6=95=88=EF=BC=88?=
=?UTF-8?q?=E5=BA=94=E8=AF=A5=E6=98=BE=E7=A4=BA=E4=B8=BA=E5=B7=B2=E9=A2=86?=
=?UTF-8?q?=E5=8F=96=E7=9A=84=E6=95=88=E6=9E=9C=EF=BC=89?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_user/views/gift/receive.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg_user/views/gift/receive.vue b/pkg_user/views/gift/receive.vue
index dad9485..1580ff4 100644
--- a/pkg_user/views/gift/receive.vue
+++ b/pkg_user/views/gift/receive.vue
@@ -45,7 +45,7 @@ export default {
},
computed: {
showGift() {
- return !this.giftCard.isExpire || !!this.giftCard.isUserReceive
+ return !!this.giftCard.isUserReceive
}
},
onShow() {
From 00d630377ef096688aba0e6b51650f42d512f8d1 Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Mon, 22 Dec 2025 09:21:39 +0800
Subject: [PATCH 12/16] =?UTF-8?q?Fix=EF=BC=9A4729=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E5=88=86=E7=B1=BB=E6=80=BB=E9=95=BF=E5=BA=A6=E8=B6=85=E5=87=BA?=
=?UTF-8?q?=E9=A1=B5=E9=9D=A2=E6=97=B6=EF=BC=8C=E5=9C=A8=E4=B8=8D=E5=88=92?=
=?UTF-8?q?=E5=8A=A8=E7=9A=84=E6=83=85=E5=86=B5=E4=B8=8B=EF=BC=8C=E6=9C=80?=
=?UTF-8?q?=E5=B7=A6=E4=BE=A7=E6=96=87=E6=9C=AC=E4=B9=9F=E4=BC=9A=E8=A2=AB?=
=?UTF-8?q?=E9=A1=B6=E5=87=BA=E9=A1=B5=E9=9D=A2=EF=BC=88=E6=9C=BA=E5=9E=8B?=
=?UTF-8?q?=EF=BC=9A=E8=8B=B9=E6=9E=9C12=EF=BC=8C=E5=9C=A8=E4=B8=8D?=
=?UTF-8?q?=E5=88=92=E5=8A=A8=E5=88=86=E7=B1=BB=E7=9A=84=E6=83=85=E5=86=B5?=
=?UTF-8?q?=E4=B8=8B=EF=BC=8C=E6=9C=80=E5=B7=A6=E4=BE=A7=E6=96=87=E6=9C=AC?=
=?UTF-8?q?=E5=BA=94=E9=A1=B6=E6=A0=BC=E6=98=BE=E7=A4=BA=EF=BC=89?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_product/views/famousQianxianShop.vue | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/pkg_product/views/famousQianxianShop.vue b/pkg_product/views/famousQianxianShop.vue
index 45d2851..4c5924e 100644
--- a/pkg_product/views/famousQianxianShop.vue
+++ b/pkg_product/views/famousQianxianShop.vue
@@ -149,19 +149,19 @@
class="info-section"
>
-
+
{{ item.name }}
-
+
@@ -2075,8 +2075,9 @@ export default {
width: 100%;
}
.news-category-wrapper {
+ overflow: scroll;
display: flex;
- justify-content: space-evenly;
+ justify-content: space-between;
}
.category-item {
display: inline-block;
From e269a3a7af3f4b63aee3cb29bdd99778f5f6a3a0 Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Mon, 22 Dec 2025 10:38:29 +0800
Subject: [PATCH 13/16] =?UTF-8?q?Fix=EF=BC=9A4733=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E6=8A=8A=E5=8E=BF=E5=9F=8E=E4=BA=A7=E4=B8=9A=E9=A1=B9=E7=9B=AE?=
=?UTF-8?q?=E6=9D=BF=E5=9D=97=E9=9A=90=E8=97=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_product/views/famousQianxianShop.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pkg_product/views/famousQianxianShop.vue b/pkg_product/views/famousQianxianShop.vue
index 4c5924e..29bbd81 100644
--- a/pkg_product/views/famousQianxianShop.vue
+++ b/pkg_product/views/famousQianxianShop.vue
@@ -504,7 +504,7 @@
-
+
From 2512db3e0814a9d2ba36a0bd66e2bff55bbfe05b Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Mon, 22 Dec 2025 10:44:37 +0800
Subject: [PATCH 14/16] =?UTF-8?q?Fix=EF=BC=9A4731=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E5=8D=83=E5=8E=BF=E8=B5=84=E8=AE=AF=E5=B7=B2=E7=82=B9=E8=B5=9E?=
=?UTF-8?q?=E7=9A=84=E6=83=85=E5=86=B5=E4=B8=8B=EF=BC=8C=E8=B5=84=E8=AE=AF?=
=?UTF-8?q?=E8=AF=A6=E6=83=85=E9=A1=B5=E7=9A=84=E7=82=B9=E8=B5=9E=E6=8C=89?=
=?UTF-8?q?=E9=92=AE=E9=A2=9C=E8=89=B2=E4=B8=8E=E5=88=97=E8=A1=A8=E7=9A=84?=
=?UTF-8?q?=E4=B8=8D=E4=B8=80=E8=87=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_product/views/newsInfo.vue | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/pkg_product/views/newsInfo.vue b/pkg_product/views/newsInfo.vue
index 008bb87..1705ea6 100644
--- a/pkg_product/views/newsInfo.vue
+++ b/pkg_product/views/newsInfo.vue
@@ -53,7 +53,7 @@
import { getCommentList, addComment } from "@/api/inn"
-import { getCityNewsDetail, postCountyFamousShopZan } from "@/api/qianxian"
+import { getCityNewsDetail, postCountyFamousNewsZan } from "@/api/qianxian"
import imgBox from '@/components/imageTypeSet/imagebox.vue'
export default {
components: {
@@ -341,7 +341,7 @@ export default {
uni.showLoading({
mask: true
})
- postCountyFamousShopZan({ countyFamousDataId: this.id }).then((res) => {
+ postCountyFamousNewsZan({ countyFamousNewsId: this.id }).then((res) => {
uni.hideLoading()
getCityNewsDetail(this.id).then(({ data }) => (this.item = data))
})
From 93c59abe133a52a4c327a84932ecaf37b1b0690f Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Mon, 22 Dec 2025 15:15:06 +0800
Subject: [PATCH 15/16] =?UTF-8?q?Fix=EF=BC=9A=E7=A4=BC=E5=8C=85=E9=A1=B5?=
=?UTF-8?q?=E4=B8=8D=E6=98=BE=E7=A4=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_user/views/gift/receive.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pkg_user/views/gift/receive.vue b/pkg_user/views/gift/receive.vue
index 1580ff4..dad9485 100644
--- a/pkg_user/views/gift/receive.vue
+++ b/pkg_user/views/gift/receive.vue
@@ -45,7 +45,7 @@ export default {
},
computed: {
showGift() {
- return !!this.giftCard.isUserReceive
+ return !this.giftCard.isExpire || !!this.giftCard.isUserReceive
}
},
onShow() {
From 84b8b21799e1ffe665eb80c92c49f16887aa92a7 Mon Sep 17 00:00:00 2001
From: linxi <957440651@qq.com>
Date: Mon, 22 Dec 2025 15:22:21 +0800
Subject: [PATCH 16/16] =?UTF-8?q?Fix=EF=BC=9A4732=20=E3=80=90=E6=97=85?=
=?UTF-8?q?=E5=B1=85=E5=95=86=E5=9F=8E=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91?=
=?UTF-8?q?=E7=94=A8=E6=88=B7=E8=AF=84=E8=AE=BA=E4=BE=9B=E5=BA=94=E5=95=86?=
=?UTF-8?q?=E3=80=81=E7=89=B9=E8=89=B2=E5=BA=97=E9=93=BA=E7=9A=84=E8=B5=84?=
=?UTF-8?q?=E8=AE=AF=EF=BC=8C=E5=BA=97=E4=B8=BB=E6=94=B6=E5=88=B0=E7=9A=84?=
=?UTF-8?q?=E7=94=A8=E6=88=B7=E8=AF=84=E8=AE=BA=E5=86=85=E5=AE=B9=E4=BC=9A?=
=?UTF-8?q?=E6=98=BE=E7=A4=BAnull?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pkg_common/views/message.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/pkg_common/views/message.vue b/pkg_common/views/message.vue
index fe979d3..9ea2599 100644
--- a/pkg_common/views/message.vue
+++ b/pkg_common/views/message.vue
@@ -33,7 +33,7 @@
@@ -45,7 +45,7 @@
>{{ "@" + comment.replyAt.atNickName + ' ' }}
{{ comment.reply }}
-
+
{{ comment.parentReply }}