添加银行和政府端小程序
This commit is contained in:
22
government-mini-program/src/pages/approval/approval.vue
Normal file
22
government-mini-program/src/pages/approval/approval.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="approval-page">
|
||||
<Approval />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Approval from '@/components/Approval.vue'
|
||||
|
||||
export default {
|
||||
name: 'ApprovalPage',
|
||||
components: {
|
||||
Approval
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.approval-page {
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
||||
22
government-mini-program/src/pages/dashboard/dashboard.vue
Normal file
22
government-mini-program/src/pages/dashboard/dashboard.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="dashboard-page">
|
||||
<Dashboard />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Dashboard from '@/components/Dashboard.vue'
|
||||
|
||||
export default {
|
||||
name: 'DashboardPage',
|
||||
components: {
|
||||
Dashboard
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.dashboard-page {
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
||||
22
government-mini-program/src/pages/epidemic/epidemic.vue
Normal file
22
government-mini-program/src/pages/epidemic/epidemic.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="epidemic-page">
|
||||
<Epidemic />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Epidemic from '@/components/Epidemic.vue'
|
||||
|
||||
export default {
|
||||
name: 'EpidemicPage',
|
||||
components: {
|
||||
Epidemic
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.epidemic-page {
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
||||
22
government-mini-program/src/pages/index/index.vue
Normal file
22
government-mini-program/src/pages/index/index.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="index-page">
|
||||
<Home />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Home from '@/components/Home.vue'
|
||||
|
||||
export default {
|
||||
name: 'IndexPage',
|
||||
components: {
|
||||
Home
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.index-page {
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
||||
22
government-mini-program/src/pages/login/login.vue
Normal file
22
government-mini-program/src/pages/login/login.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="login-page">
|
||||
<Login />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Login from '@/components/Login.vue'
|
||||
|
||||
export default {
|
||||
name: 'LoginPage',
|
||||
components: {
|
||||
Login
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.login-page {
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
||||
22
government-mini-program/src/pages/personnel/personnel.vue
Normal file
22
government-mini-program/src/pages/personnel/personnel.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="personnel-page">
|
||||
<Personnel />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Personnel from '@/components/Personnel.vue'
|
||||
|
||||
export default {
|
||||
name: 'PersonnelPage',
|
||||
components: {
|
||||
Personnel
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.personnel-page {
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
||||
22
government-mini-program/src/pages/profile/profile.vue
Normal file
22
government-mini-program/src/pages/profile/profile.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="profile-page">
|
||||
<Profile />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Profile from '@/components/Profile.vue'
|
||||
|
||||
export default {
|
||||
name: 'ProfilePage',
|
||||
components: {
|
||||
Profile
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.profile-page {
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
||||
22
government-mini-program/src/pages/service/service.vue
Normal file
22
government-mini-program/src/pages/service/service.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="service-page">
|
||||
<Service />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Service from '@/components/Service.vue'
|
||||
|
||||
export default {
|
||||
name: 'ServicePage',
|
||||
components: {
|
||||
Service
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.service-page {
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
||||
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="supervision-page">
|
||||
<Supervision />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Supervision from '@/components/Supervision.vue'
|
||||
|
||||
export default {
|
||||
name: 'SupervisionPage',
|
||||
components: {
|
||||
Supervision
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.supervision-page {
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
||||
22
government-mini-program/src/pages/warehouse/warehouse.vue
Normal file
22
government-mini-program/src/pages/warehouse/warehouse.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="warehouse-page">
|
||||
<Warehouse />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Warehouse from '@/components/Warehouse.vue'
|
||||
|
||||
export default {
|
||||
name: 'WarehousePage',
|
||||
components: {
|
||||
Warehouse
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.warehouse-page {
|
||||
height: 100vh;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user