Fox-33 1 week ago
parent
commit
8e7b0e4ca6
7 changed files with 33 additions and 3 deletions
  1. +1
    -1
      pages_order/record/articleSharing.vue
  2. +1
    -1
      pages_order/record/groupSharing.vue
  3. +1
    -1
      pages_order/record/videoSharing.vue
  4. +6
    -0
      pages_order/sharing/article.vue
  5. +10
    -0
      pages_order/sharing/group.vue
  6. +7
    -0
      pages_order/sharing/personal.vue
  7. +7
    -0
      pages_order/sharing/video.vue

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

@ -181,7 +181,7 @@
//
const params = {
id:this.id,
state:"4",
state:"3",
}
this.$fetch('addLogShareInfo', params)
// todo: get times and check is unlocked


+ 1
- 1
pages_order/record/groupSharing.vue View File

@ -241,7 +241,7 @@
//
const params = {
id:this.id,
state:"3",
state:"2",
}
this.$fetch('addLogShareInfo', params)


+ 1
- 1
pages_order/record/videoSharing.vue View File

@ -231,7 +231,7 @@
//
const params = {
id:this.id,
state:"2",
state:"1",
}
this.$fetch('addLogShareInfo', params)
// todo: get times and check is unlocked


+ 6
- 0
pages_order/sharing/article.vue View File

@ -96,6 +96,12 @@
query: `id=${this.id}&state=3&shareId=${this.userInfo.id}`,
}
//
const params = {
id:this.id,
state:"3",
}
this.$fetch('addLogShareInfo', params)
this.refreshLockStatus()
this.closePopup()


+ 10
- 0
pages_order/sharing/group.vue View File

@ -88,6 +88,16 @@
imageUrl: indexImage,
query: `id=${this.id}&state=2&shareId=${this.userInfo.id}`,
}
//
const params = {
id:this.id,
state:"2",
}
this.$fetch('addLogShareInfo', params)
this.refreshLockStatus()


+ 7
- 0
pages_order/sharing/personal.vue View File

@ -89,6 +89,13 @@
query: `id=${this.id}&state=0&shareId=${this.userInfo.id}`,
}
//
const params = {
id:this.id,
state:"0",
}
this.$fetch('addLogShareInfo', params)
this.refreshLockStatus()
return o


+ 7
- 0
pages_order/sharing/video.vue View File

@ -102,6 +102,13 @@
imageUrl: indexImage,
query: `id=${this.id}&state=1&shareId=${this.userInfo.id}`,
}
//
const params = {
id:this.id,
state:"1",
}
this.$fetch('addLogShareInfo', params)
this.refreshLockStatus()


Loading…
Cancel
Save