Skip to content
This repository has been archived by the owner on Nov 15, 2018. It is now read-only.

Commit

Permalink
fix: 改用签到新接口
Browse files Browse the repository at this point in the history
  • Loading branch information
jsonleex committed May 5, 2018
1 parent 1b9612d commit 0db2d64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/page/checkin/CheckIn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
v-if="user.id"
:key="user.id"
v-for="(user, index) in rank_users"
class="m-box-model m-aln-center">
class="m-box-model m-aln-center" @click="cancel">
<avatar size="tiny" :user="user" />
<span>{{ index + 1 }}</span>
</li>
Expand Down Expand Up @@ -92,7 +92,7 @@ export default {
fetchCheckIn() {
if (this.checked_in) return;
this.$http
.put("/user/checkin", {
.put("/user/checkin/currency", {
validateStatus: s => s === 204
})
.then(() => {
Expand Down

0 comments on commit 0db2d64

Please sign in to comment.