@jx3box/jx3box-vue3-ui 0.6.6 → 0.6.7

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jx3box/jx3box-vue3-ui",
3
- "version": "0.6.6",
3
+ "version": "0.6.7",
4
4
  "description": "JX3BOX Vue3 UI",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -115,7 +115,7 @@ export default {
115
115
  methods: {
116
116
  loadData: function () {
117
117
  getPostBoxcoinRecords(this.postType, this.postId, this.params).then((res) => {
118
- this.list = res.data.data.list;
118
+ this.list = res.data.data?.list || [];
119
119
  this.total = res.data.data.page.total;
120
120
  this.boxcoin = res.data.data.fromManager + res.data.data.fromUser;
121
121
  this.$emit("update:boxcoin", this.boxcoin);