From b87f69b81aada2fddfc1eb903a7a827f8c35675f Mon Sep 17 00:00:00 2001 From: liyanqi <15181887205@163.com> Date: 星期二, 01 十一月 2022 16:12:58 +0800 Subject: [PATCH] fix bug --- src/views/video/index.vue | 27 ++++++++++++++++++++++----- 1 files changed, 22 insertions(+), 5 deletions(-) diff --git a/src/views/video/index.vue b/src/views/video/index.vue index 8cfe998..995f959 100644 --- a/src/views/video/index.vue +++ b/src/views/video/index.vue @@ -1,15 +1,32 @@ <template> - <div>瑙嗛宸℃煡</div> + <div> + <el-button @click="getRegion">1111111</el-button> + </div> </template> <script> export default { + data(){ + return{ + } + }, + methods:{ + getRegion(){ + // this.$axios.get('sccg/sccg-region/getTree').then(res=>{ + // console.log(res); + // }) + this.$axios({ + method:'get', + url:'sccg/sccg-region/getTree', + }) + .then(res=>{ + console.log(res); + }) + } + } } </script> -<style> -div{ - color: white; -} +<style lang="scss" scoped> </style> \ No newline at end of file -- Gitblit v1.8.0