Compare commits
No commits in common. "013ce924bb8372aee59ab2e26a8568b67d81958a" and "a77cba4dfe19abb3cae0c48ea5c27a20d9f7c01c" have entirely different histories.
013ce924bb
...
a77cba4dfe
|
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 2.1 KiB |
|
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 2.4 KiB |
|
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 2.0 KiB |
|
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 2.3 KiB |
|
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 2.2 KiB |
@ -550,8 +550,8 @@ export default Vue.extend({
|
||||
}
|
||||
|
||||
.function-icon {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.function-content {
|
||||
|
||||
@ -142,8 +142,8 @@ export default Vue.extend({
|
||||
}
|
||||
},
|
||||
created() {
|
||||
|
||||
this.initMybalance();
|
||||
// 移除 initMybalance 调用,因为现在使用 computed 的 mybalance
|
||||
this.initMybalance(); // ❌ 删除这一行
|
||||
this.getUnreadMsgCount();
|
||||
this.fetchTodoCount();
|
||||
},
|
||||
@ -186,8 +186,8 @@ export default Vue.extend({
|
||||
const iconIndex = index % this.navIcons.length;
|
||||
return this.navIcons[iconIndex];
|
||||
},
|
||||
|
||||
async initMybalance() {
|
||||
// 移除 initMybalance 方法,因为现在使用 computed 的 mybalance
|
||||
async initMybalance() { // ❌ 删除这个方法
|
||||
const res = await editReachargelogAPI()
|
||||
if (res.status) {
|
||||
this.mybalance = res.data
|
||||
|
||||