Commit f4b659ad authored by Tang Xinwei's avatar Tang Xinwei

Merge branch 'add_genesis' into 'master'

Add world boss genesis battle info

See merge request !5
parents 1901ebc7 5d9214e4
Pipeline #25495 passed with stages
in 1 minute and 4 seconds
......@@ -11,6 +11,7 @@
<!-- <p class="text-muted" v-if="showActivity" style="font-size:20px;">{{ activity.name }}首胜:
{{ activity.total }}/{{ activity.max }} </p> -->
<p class="text-muted" style="font-size:20px;">VS发牌姬:胜{{ vsDealerStats.win }}/负{{ vsDealerStats.lose }}/总{{ vsDealerStats.total }}</p>
<p class="text-muted" style="font-size:20px;">VS深渊代码:胜{{ vsGenesisStats.win }}/负{{ vsGenesisStats.lose }}/总{{ vsGenesisStats.total }}</p>
</div>
</div>
</div>
......@@ -197,6 +198,11 @@ export default {
win: 0,
lose: 0,
total: 0
},
vsGenesisStats: { //VS深渊代码战绩
win: 0,
lose: 0,
total: 0
}
}
},
......@@ -242,6 +248,10 @@ export default {
this.vsDealerStats = vsDealerStats;
});
this.fetchVsGenesisStats().then(vsGenesisStats => {
this.vsGenesisStats = vsGenesisStats;
});
API.getUserInfo(opt).then((res) => {
this.user_info = res.data
// console.log('%c ---------------------src' + '\\' + 'components' + '\\' + 'Profile.vue---------------------%c:219', 'background:#ed162b', 'background:#7d382d',
......@@ -268,6 +278,22 @@ export default {
}
},
// VS深渊代码成绩
async fetchVsGenesisStats() {
try {
const apiUrl = 'https://sapi.moecube.com:444/dealer2/api/user';
const url = `${apiUrl}/${this.user.username}`;
console.log('深渊代码API', url);
const response = await Vue.http.get(url);
const jsonData = await response.json();
console.log('深渊代码response', jsonData.data);
return jsonData.data;
} catch (error) {
console.error('Error fetching user stats:', error);
throw error;
}
},
exchangeUserInfo(info) {
let userName = this.user.username
......
......@@ -28,6 +28,7 @@
<p class="text-muted" style="font-size:20px;">今日首胜: {{activity.today}}/1 </p>
<!-- <p class="text-muted" v-if="showActivity" style="font-size:20px;">{{activity.name}}首胜: {{activity.total}}/{{activity.max}} </p> -->
<p class="text-muted" style="font-size:20px;">VS发牌姬: 胜{{ vsDealerStats.win }}/负{{ vsDealerStats.lose }}/总{{ vsDealerStats.total }}</p>
<p class="text-muted" style="font-size:20px;">VS深渊代码:胜{{ vsGenesisStats.win }}/负{{ vsGenesisStats.lose }}/总{{ vsGenesisStats.total }}</p>
</div>
</div>
</div>
......@@ -206,6 +207,11 @@
win: 0,
lose: 0,
total: 0
},
vsGenesisStats: { //VS深渊代码战绩
win: 0,
lose: 0,
total: 0
}
}
},
......@@ -228,6 +234,10 @@
this.vsDealerStats = vsDealerStats;
});
this.fetchVsGenesisStats().then(vsGenesisStats => {
this.vsGenesisStats = vsGenesisStats;
});
},
watch: {
......@@ -294,7 +304,7 @@
// VS发牌姬成绩
async fetchVsDealerStats() {
const username = querystring.parse(location.hash.slice(11)).username
const username = querystring.parse(location.hash.slice(11)).username
try {
const apiUrl = 'https://sapi.moecube.com:444/dealer/api/user';
const url = `${apiUrl}/${username}`;
......@@ -309,6 +319,23 @@
}
},
// VS深渊代码成绩
async fetchVsGenesisStats() {
const username = querystring.parse(location.hash.slice(11)).username
try {
const apiUrl = 'https://sapi.moecube.com:444/dealer2/api/user';
const url = `${apiUrl}/${username}`;
console.log('深渊代码API', url);
const response = await Vue.http.get(url);
const jsonData = await response.json();
console.log('深渊代码response', jsonData.data);
return jsonData.data;
} catch (error) {
console.error('Error fetching user stats:', error);
throw error;
}
},
renderPage: function () {
if (rankTable) {
rankTable.destroy();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment