@jx3box/jx3box-common-ui 5.8.9 → 5.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -68,7 +68,7 @@ import { showAvatar, authorLink } from "@jx3box/jx3box-common/js/utils";
|
|
|
68
68
|
import { showTime } from "@jx3box/jx3box-common/js/moment";
|
|
69
69
|
export default {
|
|
70
70
|
name: "BoxcoinRecords",
|
|
71
|
-
props: ["postType", "postId", "cacheRecord",'mode'],
|
|
71
|
+
props: ["postType", "postId", "cacheRecord",'postClient','mode'],
|
|
72
72
|
components: {},
|
|
73
73
|
data: function () {
|
|
74
74
|
return {
|
|
@@ -89,6 +89,7 @@ export default {
|
|
|
89
89
|
return {
|
|
90
90
|
pageSize: this.per,
|
|
91
91
|
pageIndex: this.page,
|
|
92
|
+
client : this.postClient,
|
|
92
93
|
};
|
|
93
94
|
},
|
|
94
95
|
},
|
package/src/single/Thx.vue
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
<Share :postId="postId" :postType="postType" :client="client" />
|
|
9
9
|
</div>
|
|
10
10
|
<div class="w-thx-records">
|
|
11
|
-
<boxcoin-records :postId="postId" :postType="postType" :cacheRecord="cacheRecord" :mode="mode"/>
|
|
11
|
+
<boxcoin-records :postId="postId" :postType="postType" :postClient="client" :cacheRecord="cacheRecord" :mode="mode"/>
|
|
12
12
|
</div>
|
|
13
13
|
<div class="w-thx-copyright">
|
|
14
14
|
© 所有原创作品,著作权归作者所有,所有未经授权的非署名转载或抄袭将有权追究法律责任,所有法律事务由专聘律师代理。<br>
|