const newUrl = this.$route.path + `?id=${this.id}&kjStatus=1`
window.history.replaceState('', '', newUrl) // 会直接替换掉当前url 不会在history中留下记录
或者
window.history.pushState('', '', newUrl) // 会在history中留下记录
const newUrl = this.$route.path + `?id=${this.id}&kjStatus=1`
window.history.replaceState('', '', newUrl) // 会直接替换掉当前url 不会在history中留下记录
或者
window.history.pushState('', '', newUrl) // 会在history中留下记录