Commit 319f2eaf authored by 黄奎's avatar 黄奎

页面修改

parent 0380317b
<template> <template>
<q-page>
<q-page> <div>
<div> 关于我们
关于我们 </div>
</div> </q-page>
</q-page>
</template> </template>
<script> <script>
export default { export default {
name: "PageAbout", name: "PageAbout",
data() { data() {
return { return {
obj:{}, RB_Group_Id: 0,
AboutData: {},
}; };
}, },
created() {}, created() {
mounted() {}, var jObj = JSON.parse(window.localStorage.getItem('groupinfo'));
this.RB_Group_Id = jObj.GroupId;
},
mounted() {
this.getAbout();
},
methods: { methods: {
getAbout() {
this.apipost(
"ws_get_GetAboutPage", {
RB_Group_Id: this.RB_Group_Id
},
res => {
if (res.data.resultCode == 1) {
if (res.data.data.PlugList) {
this.AboutData = res.data.data.PlugList;
console.log("AboutData", this.AboutData);
}
}
},
err => {}
);
}
}, },
}; };
......
...@@ -13,9 +13,17 @@ const routes = [{ ...@@ -13,9 +13,17 @@ const routes = [{
import('pages/Index.vue') import('pages/Index.vue')
}, },
{ {
path: '/About', path: '/About', //关于我们
component: () => component: () =>
import('pages/About.vue') import('pages/About.vue')
}, {
path: '/contract', //契约管理
component: () =>
import('pages/contract.vue')
}, {
path: '/tour_visa', //签证护照管理
component: () =>
import('pages/tour_visa.vue')
} }
] ]
}, },
......
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