您好,登錄后才能下訂單哦!
這篇文章主要介紹“vue怎么使用router-view調用頁面”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“vue怎么使用router-view調用頁面”文章能幫助大家解決問題。
在項目中,需要在其中一個頁面,調用很多其他頁面的表單,所以使用router來實現頁面的調用。
vue-router有傳遞參數的兩種方式,get和post。
頁面跳轉
this.$router.push({path:'/xxx',query:{id:1}});//類似get傳參,通過URL傳遞參數
新頁面接收參數
this.$route.query.id
頁面跳轉
//由于動態路由也是傳遞params的,所以在 this.$router.push() 方法中 path不能和params一起使用 //否則params將無效。 //需要用name來指定頁面。 this.$router.push({name:'page2',params:{id:1}});//類似post傳參
新頁面接收參數
this.$route.params.id
注意:在頁面進行刷新的時候經常會遇到參數變了,但是新頁面接受的參數沒有變化。這種問題可以通過加watch解決。
watch: { '$route'(to, from){ //在這里重新刷新一下 this.getParams(); } }
首先,我們的頁面是wfqlc.vue(我的申請),被調用的頁面為pjzydgl.vue(票據準印單管理)。
1.在router的index.js文件里,給我的申請頁面加children。
2.在需要跳轉的地方添加router-view。
<!-- 附加單據 --> <Modal title="附加單據" v-model="fjdjModal" :mask-closable="false" :transfer="false" width="600" > <div class="modal-wrap"> <router-view></router-view> </div> </Modal>
3.在我的申請wfqlc.vue頁面,把請求發送出去。
// 附加單據 getAdditionalDocument (row) { this.fjdjModal = true this.$router.push({ // path: `/wfqlcfjdj/${row.webUnitUrl}`, path: `/wfqlcfjdj/pjzydgl`, query: { // businessIndex: row.businessId businessIndex: '6883a5c4-b706-424e-ba88-4acc83eded2f' } }) },
4.請求會拼在地址欄發送過去
path傳的參數跳轉到了對應的頁面,businessIndex獲取到了對應的值。
5.跳轉到票據準印單管理pjzydgl.vue頁面。
mounted () { if (this.$route.query.businessIndex) { this.tzdetail(this.$route.query) } }
6.根據 businessIndex獲取到對應的值。
methods { tzdetail (data) { this.detail(data.businessIndex, 'detail') }, detail (row) { const url = `${window.zvconfig.url.pjsyDetail}?id=${row}` this.$axios.get(url).then(res => { if (res.data.status === '00000') { this.detailForm = res.data.data this.childTableData = res.data.data.detailList } else { this.$Message.error(res.data.msg) } }) }, // 關閉彈窗回到我的申請頁面 cancelModal () { if (this.$route.path.indexOf('/wfqlcfjdj/') > -1) { this.$router.push({ path: '/wfqlc' }) } }, }
關于“vue怎么使用router-view調用頁面”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。