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

页面修改

parent 0380317b
<template>
<q-page>
<div>
关于我们
</div>
</q-page>
<q-page>
<div>
关于我们
</div>
</q-page>
</template>
<script>
export default {
name: "PageAbout",
data() {
return {
obj:{},
RB_Group_Id: 0,
AboutData: {},
};
},
created() {},
mounted() {},
created() {
var jObj = JSON.parse(window.localStorage.getItem('groupinfo'));
this.RB_Group_Id = jObj.GroupId;
},
mounted() {
this.getAbout();
},
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 = [{
import('pages/Index.vue')
},
{
path: '/About',
path: '/About', //关于我们
component: () =>
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