Commit c86dc207 authored by RuoYi's avatar RuoYi

移除path-to-regexp正则匹配插件

parent ecc7a8be
...@@ -49,7 +49,6 @@ ...@@ -49,7 +49,6 @@
"js-cookie": "2.2.1", "js-cookie": "2.2.1",
"jsencrypt": "3.0.0-rc.1", "jsencrypt": "3.0.0-rc.1",
"nprogress": "0.2.0", "nprogress": "0.2.0",
"path-to-regexp": "6.2.0",
"quill": "1.3.7", "quill": "1.3.7",
"screenfull": "5.0.2", "screenfull": "5.0.2",
"sortablejs": "1.10.2", "sortablejs": "1.10.2",
......
...@@ -10,8 +10,6 @@ ...@@ -10,8 +10,6 @@
</template> </template>
<script> <script>
import pathToRegexp from 'path-to-regexp'
export default { export default {
data() { data() {
return { return {
...@@ -49,18 +47,13 @@ export default { ...@@ -49,18 +47,13 @@ export default {
} }
return name.trim() === '首页' return name.trim() === '首页'
}, },
pathCompile(path) {
const { params } = this.$route
var toPath = pathToRegexp.compile(path)
return toPath(params)
},
handleLink(item) { handleLink(item) {
const { redirect, path } = item const { redirect, path } = item
if (redirect) { if (redirect) {
this.$router.push(redirect) this.$router.push(redirect)
return return
} }
this.$router.push(this.pathCompile(path)) this.$router.push(path)
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment