這次帶給大家不使用router-link實現頁面跳轉,不使用router-link實現頁面跳轉的注意事項有哪些,下面就是實戰案例,一起來看一下。
1、為父頁跳躍的地方設定事件
//原来的页面上展示的信息 <p v-if="!addShow" class="function"> <el-row> <template slot-scope="scope"> <el-button type="success" size="mini" @click="handleEdit(scope.$index, scope.row)">编辑</el-button> //带参数进行编辑 <el-button type="danger" size="mini" @click="handleDelete(scope.row)">删除</el-button> </template> </el-row> </p> //要跳转过去的页面用隐藏来代替 <p v-if="addShow" class="add-category "> <el-col :span="20" :offset="2"> <el-form :model="formData" :rules="rules" ref="formData" label-position="left"> <el-row> <el-col :span="10"> <el-form-item label="销售区域名称" prop="name"> <el-input v-model="formData.name"></el-input> //v-model绑定formData.name(name为需要的字段,formDataw为表格ref绑定的数据) </el-form-item> </el-col> </el-row> <el-col :span="18"> <el-form-item label="销售区域描述"> <el-input type="textarea" :rows="5" v-model="formData.description"></el-input> </el-form-item> </el-col> <el-col :span="2" :offset="9"> <el-button type="success" @click="handleSubmit('formData')" >确定</el-button> </el-col> <el-col :span="2" :offset="1"> <el-button @click="onCancel">取消</el-button> </el-col> </el-form> </el-col> </p>
2、JS部分
data() { addShow: false //设置要显示的页面部分默认为false,隐藏 checkdDistributor: null, }, methods: { // 编辑按钮 handleEdit(index,row){ this.checkdDistributor = row; //接受传参 this.addShow = true; // addshow为要显示的页面 } } watch: { // 带参数编辑 checkdDistributor(){ for(let attr in this.formData){ this.formData[attr] = ('' + this.checkdDistributor[attr]); //写入参数 } } },
3、最後上效果圖
補充:
vue router- link跳轉傳值範例
1、router-link
<router-link :to="{name:'deitail',params:{freezeMon:'2017-10',owerName:'西安'}}" tag="p" > </router-link>
2、routes路由
export default new Router({ routes: [ { path: '/', name: 'Index', component: Index }, { path: '/deitail', name: 'deitail', component: deitail } ] })
3、取值
<h1>{{$route.params.freezeMon}}</h1>
4、小結:router-link跳轉傳值要注意的地方
* to前面要加:
* to後面{中的name值要與路由中的name值一致
* 下面的這種方式是錯誤的
<router-link to="{path:'/deitail',params:{freezeMon:'2017-10',owerName:'西安'}}" tag="p" > </router-link>
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#以上是不使用router-link實現頁面跳轉的詳細內容。更多資訊請關注PHP中文網其他相關文章!