页面容器参数改变

Former-commit-id: 584a9329d7868d9e9aac27af8bb8548899f6bb6a [formerly 584a9329d7868d9e9aac27af8bb8548899f6bb6a [formerly 584a9329d7868d9e9aac27af8bb8548899f6bb6a [formerly 584a9329d7868d9e9aac27af8bb8548899f6bb6a [formerly d9f7b6d61f9bca4dd01d9bdeaa3e05689a4c957b [formerly 685176322dd7a7c07d9adc1afe718ac8769c6e2b]]]]]
Former-commit-id: 88308a03ec90c920658d225ca92d3d44329ae488
Former-commit-id: 658fe4466da6dfac5fca7f4d4f587300c297a6f4
Former-commit-id: e2f583b6a7c845b26d5713ab54427c1a30eae7c0 [formerly 7f060c7800831c725cce856ac0b97e64e8dc7df3]
Former-commit-id: b4a0e21cd492e0c91637c94e9ab9cbf7e896c52d
Former-commit-id: 52a1a9c80a6951a0341fbfe6ca6c748dae876747
Former-commit-id: 508b9083504c48c021f3664bd2f398aacce556f3
Former-commit-id: 5885f81448c937e04528c45ea8bd74f72dac37a9
Former-commit-id: e0337459e2f83705c4cf519840fd9532ed2a43e0
This commit is contained in:
liyang
2018-07-18 08:30:51 +08:00
parent 04f9ef1a19
commit 1f313f18cd
108 changed files with 142 additions and 161 deletions

View File

@@ -1,5 +1,5 @@
<template>
<d2-container type="full">
<d2-container>
<d2-demo-page-cover
title="试验台"
sub-title="在这里可以测试一些 D2Admin 的系统功能">

View File

@@ -1,5 +1,5 @@
<template>
<d2-container type="full">
<d2-container>
<h1 class="d2-mt-0">$route.params.username: {{$route.params.username}}</h1>
<h1>$route.query.userid: {{$route.query.userid}}</h1>
<p>你可以尝试返回发送数据页面修改数据重新发送或者切换到其它页面后刷新浏览器再返回本业观察参数保留</p>

View File

@@ -1,5 +1,5 @@
<template>
<d2-container type="full">
<d2-container>
<el-form :model="sendForm" :rules="rules" label-position="top" ref="sendForm">
<el-form-item label="username 通过动态路由匹配发送" prop="username">
<el-input v-model="sendForm.username"></el-input>

View File

@@ -1,5 +1,5 @@
<template>
<d2-container type="full">
<d2-container>
<template slot="header">这个页面不会被 keep-alive</template>
<p class="d2-mt-0">在下面的输入框输入任意字符后切换到其它页面再回到此页时输入框文字消失证明没有被缓存</p>
<el-input v-model="value" placeholder="input here"></el-input>

View File

@@ -1,5 +1,5 @@
<template>
<d2-container type="full">
<d2-container>
<template slot="header">这个页面会被 keep-alive</template>
<p class="d2-mt-0">在下面的输入框输入任意字符后切换到其它页面再回到此页时输入框文字保留证明被缓存</p>
<el-input v-model="value" placeholder="input here"></el-input>