1、新建路由地址:url=xxxx/loanBill?companyId=company0001
2、通过调用save接口,路由地址需要修改成 url=xxxx/loanBill?companyId=company0001&rowId=222
3、使用
this.$replace({
path: 'loanBill',
query: {
companyId: this.$route.query.companyId,
rowId: '222'
}
})
4、页面中有些字段不需要使用绑定到data函数中,所以自定义script的顶部,页面查看更清晰
<script>
let SEARCH_CONFIG,
REF_SEARCH,
BUTTON_TYPE = '',
REPAYMENT_LOAN = [],
initReimburseData = {} // 初始化数据
</script>
一个祖先组件通过设置provide/inject向其所有子孙后代注入一个依赖,不论组件层次有多深
参考地址:https://blog.csdn.net/u012211003/article/details/107567143