|
@@ -376,17 +376,17 @@ export default {
|
|
|
},
|
|
|
next() {
|
|
|
// 静默复制
|
|
|
-
|
|
|
if (this.text.next_jump) {
|
|
|
location.href = this.text.next_jump_url;
|
|
|
} else {
|
|
|
if (this.text.next_cid) {
|
|
|
this.$router.replace({
|
|
|
- path: `/reader/${this.getUuid()}`,
|
|
|
+ path: `/reader/${this.getUuid()}/`,
|
|
|
query: {
|
|
|
bid: this.text.bid,
|
|
|
cid: this.text.next_cid,
|
|
|
- uuids: this.uuids
|
|
|
+ uuids: this.uuids,
|
|
|
+ sendid: this.$route.query.sendid
|
|
|
}
|
|
|
});
|
|
|
} else if (this.text.next_cid === 0) {
|
|
@@ -406,7 +406,8 @@ export default {
|
|
|
query: {
|
|
|
bid: this.text.bid,
|
|
|
cid: this.text.prev_cid,
|
|
|
- uuids: this.uuids
|
|
|
+ uuids: this.uuids,
|
|
|
+ sendid: this.$route.query.sendid
|
|
|
},
|
|
|
params: {
|
|
|
jump: -1
|
|
@@ -721,6 +722,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
async created() {
|
|
|
+ localStorage.setItem("sendid", this.$route.query.sendid);
|
|
|
let uuid = localStorage.getItem("uuids");
|
|
|
let { yun, bid, cid, uuids } = this.$route.query;
|
|
|
this.uuids = uuids || uuid;
|