Fox-33 1 week ago
parent
commit
5a32d504c9
2 changed files with 13 additions and 7 deletions
  1. +6
    -1
      pages_order/record/articleSharing.vue
  2. +7
    -6
      pages_order/record/videoSharing.vue

+ 6
- 1
pages_order/record/articleSharing.vue View File

@ -178,7 +178,12 @@
imageUrl: headImage,
path: `/pages_order/sharing/article?id=${this.id}&state=3&shareId=${this.userInfo.id}`
}
//
const params = {
id:this.id,
state:"4",
}
this.$fetch('addLogShareInfo', params)
// todo: get times and check is unlocked
this.isLocked = false


+ 7
- 6
pages_order/record/videoSharing.vue View File

@ -228,12 +228,13 @@
path: `/pages_order/sharing/video?id=${this.id}&state=1&shareId=${this.userInfo.id}`
}
//
const params = {
id:this.id,
state:"0",
}
this.$fetch('addLogShareInfo', params)
//
const params = {
id:this.id,
state:"2",
}
this.$fetch('addLogShareInfo', params)
// todo: get times and check is unlocked
this.isLocked = false


Loading…
Cancel
Save