第一次

main
史建月 2023-10-14 08:21:22 +08:00
commit efaeecb0b8
82 changed files with 18287 additions and 0 deletions

23
.gitignore vendored 100644
View File

@ -0,0 +1,23 @@
.DS_Store
node_modules
/dist
# local env files
.env.local
.env.*.local
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

19
README.md 100644
View File

@ -0,0 +1,19 @@
# app
## Project setup
```
yarn install
```
### Compiles and hot-reloads for development
```
yarn serve
```
### Compiles and minifies for production
```
yarn build
```
### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).

5
babel.config.js 100644
View File

@ -0,0 +1,5 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}

19
jsconfig.json 100644
View File

@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"baseUrl": "./",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}

10929
package-lock.json generated 100644

File diff suppressed because it is too large Load Diff

33
package.json 100644
View File

@ -0,0 +1,33 @@
{
"name": "app",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build"
},
"dependencies": {
"axios": "^1.5.1",
"core-js": "^3.8.3",
"normalize.css": "^8.0.1",
"postcss-pxtorem": "^6.0.0",
"vant": "^2.13.1",
"vue": "^2.6.14",
"vue-router": "^3.5.1",
"vuex": "^3.6.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-router": "~5.0.0",
"@vue/cli-plugin-vuex": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"sass": "^1.32.7",
"sass-loader": "^12.0.0",
"vue-template-compiler": "^2.6.14"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}

11
postcss.config.js 100644
View File

@ -0,0 +1,11 @@
module.exports = {
'plugins': {
// to edit target browsers: use "browserslist" field in package.json
'autoprefixer': {},
'postcss-pxtorem': {
rootValue: 16, // 结果为:设计稿元素尺寸/16比如元素宽320px,最终页面会换算成 20rem
propList: ['*']
}
}
}

BIN
public/favicon.ico 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

17
public/index.html 100644
View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title><%= htmlWebpackPlugin.options.title %></title>
</head>
<body>
<noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>

30
src/App.vue 100644
View File

@ -0,0 +1,30 @@
<template>
<div id="app">
<router-view></router-view>
</div>
</template>
<script src="./libs/flexible"></script>
<script src="./libs/touch.js"></script>
<style lang="scss" >
*{
padding:0 ;
margin: 0;
list-style: none;
box-sizing: border-box;
}
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
</style>

BIN
src/assets/logo.png 100644

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

View File

@ -0,0 +1,59 @@
<template>
<div class="hello">
<h1>{{ msg }}</h1>
<p>
For a guide and recipes on how to configure / customize this project,<br>
check out the
<a href="https://cli.vuejs.org" target="_blank" rel="noopener">vue-cli documentation</a>.
</p>
<h3>Installed CLI Plugins</h3>
<ul>
<li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-babel" target="_blank" rel="noopener">babel</a></li>
<li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-router" target="_blank" rel="noopener">router</a></li>
<li><a href="https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-vuex" target="_blank" rel="noopener">vuex</a></li>
</ul>
<h3>Essential Links</h3>
<ul>
<li><a href="https://vuejs.org" target="_blank" rel="noopener">Core Docs</a></li>
<li><a href="https://forum.vuejs.org" target="_blank" rel="noopener">Forum</a></li>
<li><a href="https://chat.vuejs.org" target="_blank" rel="noopener">Community Chat</a></li>
<li><a href="https://twitter.com/vuejs" target="_blank" rel="noopener">Twitter</a></li>
<li><a href="https://news.vuejs.org" target="_blank" rel="noopener">News</a></li>
</ul>
<h3>Ecosystem</h3>
<ul>
<li><a href="https://router.vuejs.org" target="_blank" rel="noopener">vue-router</a></li>
<li><a href="https://vuex.vuejs.org" target="_blank" rel="noopener">vuex</a></li>
<li><a href="https://github.com/vuejs/vue-devtools#vue-devtools" target="_blank" rel="noopener">vue-devtools</a></li>
<li><a href="https://vue-loader.vuejs.org" target="_blank" rel="noopener">vue-loader</a></li>
<li><a href="https://github.com/vuejs/awesome-vue" target="_blank" rel="noopener">awesome-vue</a></li>
</ul>
</div>
</template>
<script>
export default {
name: 'HelloWorld',
props: {
msg: String
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped lang="scss">
h3 {
margin: 40px 0 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}
</style>

24
src/http/index.js 100644
View File

@ -0,0 +1,24 @@
import axios from "axios";
const http = axios.create({
baseURL: 'https://some-domain.com/api/',
timeout: 1000,
headers: {'X-Custom-Header': 'foobar'}
});
// 添加请求拦截器
http.interceptors.request.use(function (config) {
// 在发送请求之前做些什么
return config;
}, function (error) {
// 对请求错误做些什么
return Promise.reject(error);
});
// 添加响应拦截器
http.interceptors.response.use(function (response) {
// 对响应数据做点什么
return response;
}, function (error) {
// 对响应错误做点什么
return Promise.reject(error);
});
export default http

18
src/main.js 100644
View File

@ -0,0 +1,18 @@
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import store from './store'
import Vant from 'vant';
import 'vant/lib/index.css';
import "normalize.css/normalize.css"
import instance from "./http/index"
Vue.prototype.$http=instance
Vue.use(Vant);
Vue.config.productionTip = false
new Vue({
router,
store,
render: h => h(App)
}).$mount('#app')

359
src/router/index.js 100644
View File

@ -0,0 +1,359 @@
import Vue from 'vue'
import VueRouter from 'vue-router'
Vue.use(VueRouter)
const routes = [
{
path: '/',
redirect: '/home'
},
// -------------------------首页--------------------------
// 一级home页面
{
path: '/home',
name: 'home',
component: () => import('../views/home/home.vue'),
children: [{
path: 'information',
name: 'information',
component: () => import('../views/home/information/information.vue'),
children: [{
path: 'informationDetail',
name: 'informationDetail',
component: () => import('../views/home/information/detail/detail.vue'),
}]
},
{
path: 'knowledgeBase',
name: 'knowledgeBase',
component: () => import('../views/home/knowledgeBase/knowledgeBase.vue'),
children: [{
path: 'knowledgeDetail',
name: 'knowledgeDetail',
component: () => import('../views/home/knowledgeBase/detail/detail.vue'),
}]
},
{
path: 'search',
name: 'search',
component: () => import('../views/home/search/search.vue')
},
]
},
// ---------------------------问诊---------------------------
{
path: '/consultation',
name: 'consultation',
component: () => import('../views/consultation/consultation.vue'),
children: [{
path: 'consultationServer',
name: 'consultationServer',
component: () => import('../views/consultation/consultationServer/consultationServer.vue'),
children: [{
path: 'consultationChat',
name: 'consultationChat',
component: () => import('../views/consultation/consultationServer/chat/chat.vue')
},
{
path: 'consultationCommentList',
name: 'consultationCommentList',
component: () => import('../views/consultation/consultationServer/commentList/commentList.vue')
},
{
path: 'consultationDoctorList',
name: 'consultationDoctorList',
component: () => import('../views/consultation/consultationServer/doctorList/doctorList.vue')
},
{
path: 'consultationCDetail',
name: 'consultationCDetail',
component: () => import('../views/consultation/consultationServer/detail/detail.vue')
},
]
},
{
path: 'myConsultation',
name: 'myConsultation',
component: () => import('../views/consultation/myConsultation/myConsultation.vue'),
children: [{
path: 'MyConsultationComment',
name: 'MyConsultationComment',
component: () => import('../views/consultation/myConsultation/comment/comment.vue')
},
{
path: 'MyConsultationCurrent',
name: 'MyConsultationCurrent',
component: () => import('../views/consultation/myConsultation/current/current.vue')
},
{
path: 'MyConsultationHistory',
name: 'MyConsultationHistory',
component: () => import('../views/consultation/myConsultation/history/history.vue')
},
{
path: 'MyConsultationQueryComment',
name: 'MyConsultationQueryComment',
component: () => import('../views/consultation/myConsultation/queryComment/queryComment.vue')
},
{
path: 'MyConsultationResult',
name: 'MyConsultationResult',
component: () => import('../views/consultation/myConsultation/result/result.vue')
}]
}]
},
// -------------------------钱包-------------------------
{
path: '/wallet',
name: 'wallet',
component: () => import('../views/wallet/wallet.vue'),
children: [{
path: 'myWallet',
name: 'myWallet',
component: () => import('../views/wallet/myWallet/myWallet.vue')
}, {
path: 'recharge',
name: 'recharge',
component: () => import('../views/wallet/recharge/recharge.vue')
}, {
path: 'withdrawal',
name: 'withdrawal',
component: () => import('../views/wallet/withdrawal/withdrawal.vue')
}, {
path: 'rechargeSuccess',
name: 'rechargeSuccess',
component: () => import('../views/wallet/rechargeSuccess/rechargeSuccess.vue')
}, {
path: 'withdrawaling',
name: 'withdrawaling',
component: () => import('../views/wallet/withdrawaling/withdrawaling.vue')
}, {
path: 'withdrawalRecords',
name: 'withdrawalRecords',
component: () => import('../views/wallet/withdrawalRecords/withdrawalRecords.vue')
},
]
},
// -------------------------病友圈-------------------------
{
path: '/patientCircle',
name: 'patientCircle',
component: () => import('../views/patientCircle/patientCircle.vue'),
children: [{
path: 'patientDetail',
name: 'patientDetail',
component: () => import('../views/patientCircle/detail/detail.vue')
}, {
path: 'patientSearch',
name: 'patientSearch',
component: () => import('../views/patientCircle/search/search.vue'),
children: [{
path: 'patientResult',
name: 'patientResult',
component: () => import('../views/patientCircle/search/result/result.vue'),
}]
}, {
path: 'patientWrite',
name: 'patientWrite',
component: () => import('../views/patientCircle/write/write.vue')
}
]
},
// -------------------------视频-------------------------
{
path: 'vedio',
name: 'vedio',
component: () => import('../views/vedio/vedio.vue')
},
// -------------------------我的-------------------------
{
path: '/my',
name: 'my',
children: [{
path: 'myAdoptIdea',
name: 'myAdoptIdea',
component: () => import('../views/my/adoptIdea/adoptIdea.vue')
}, {
path: 'myAttention',
name: 'myAttention',
component: () => import('../views/my/attention/attention.vue')
}, {
path: 'myCollection',
name: 'myCollection',
component: () => import('../views/my/collection/collection.vue')
}, {
path: 'myForgetPassword1',
name: 'myForgetPassword1',
component: () => import('../views/my/forgetPassword1/forgetPassword1.vue')
}, {
path: 'myForgetPassword2',
name: 'myForgetPassword2',
component: () => import('../views/my/forgetPassword2/forgetPassword2.vue')
}, {
path: 'myIndex',
name: 'myIndex',
component: () => import('../views/my/index/index.vue')
}, {
path: 'myLogin',
name: 'myLogin',
component: () => import('../views/my/login/login.vue')
}, {
path: 'myPayVideo',
name: 'myPayVideo',
component: () => import('../views/my/payVideo/payVideo.vue')
}, {
path: 'register',
name: 'register',
component: () => import('../views/my/register/register.vue')
}, {
path: 'sign',
name: 'sign',
component: () => import('../views/my/sign/sign.vue')
},
{
path: 'myMessage',
name: 'myMessage',
children: [{
path: 'myMessageDetail',
name: 'myMessageDetail',
component: () => import('../views/my/message/detail/detail.vue')
},
{
path: 'myMessageMy',
name: 'myMessageMy',
component: () => import('../views/my/message/my/my.vue')
},
]
},
{
path: 'myPatientCircle',
name: 'myPatientCircle',
children: [{
path: 'myPatientCommentList',
name: 'myPatientCommentList',
component: () => import('../views/my/myPatientCircle/commentList/commentList.vue')
},
{
path: 'myPatientIndex',
name: 'myPatientIndex',
component: () => import('../views/my/myPatientCircle/index/index.vue')
},
]
},
{
path: 'myProFile',
name: 'myProFile',
children: [{
path: 'myProFileAddModifyProfile',
name: 'myProFileAddModifyProfile',
component: () => import('../views/my/proFile/addModifyProfile/addModifyProfile.vue')
},
{
path: 'myProFileIndex',
name: 'myProFileIndex',
component: () => import('../views/my/proFile/index/index.vue')
},
]
},
]
},
// -------------------------设置-------------------------
{
path: '/set',
name: 'set',
component: () => import('../views/set/set.vue'),
children: [{
path: 'bindBankCard',
name: 'bindBankCard',
component: () => import('../views/set/bindBankCard/bindBankCard.vue')
},
{
path: 'bindConfirm',
name: 'bindConfirm',
component: () => import('../views/set/bindConfirm/bindConfirm.vue')
}, {
path: 'changePassword',
name: 'changePassword',
component: () => import('../views/set/changePassword/changePassword.vue')
}, {
path: 'chooseGender',
name: 'chooseGender',
component: () => import('../views/set/chooseGender/chooseGender.vue')
}, {
path: 'index',
name: 'index',
component: () => import('../views/set/index/index.vue')
}, {
path: 'inviteFriends',
name: 'inviteFriends',
component: () => import('../views/set/inviteFriends/inviteFriends.vue')
}, {
path: 'myPhysicalSigns',
name: 'myPhysicalSigns',
component: () => import('../views/set/myPhysicalSigns/myPhysicalSigns.vue')
}, {
path: 'personInfomation',
name: 'personInfomation',
component: () => import('../views/set/personInfomation/personInfomation.vue')
}, {
path: 'realNameAuthentication',
name: 'realNameAuthentication',
component: () => import('../views/set/realNameAuthentication/realNameAuthentication.vue')
}, {
path: 'screenBrightness',
name: 'screenBrightness',
component: () => import('../views/set/screenBrightness/screenBrightness.vue')
}, {
path: 'setNickname',
name: 'setNickname',
component: () => import('../views/set/setNickname/setNickname.vue')
}, {
path: 'versionDetection',
name: 'versionDetection',
component: () => import('../views/set/versionDetection/versionDetection.vue')
}, {
path: 'viewBankCards',
name: 'viewBankCards',
component: () => import('../views/set/viewBankCards/viewBankCards.vue')
},
{
path: 'viewAuthenticationInformation',
name: 'viewAuthenticationInformation',
component: () => import('../views/set/viewAuthenticationInformation/viewAuthenticationInformation.vue')
},
]
}
]
const router = new VueRouter({
mode: 'history',
base: process.env.BASE_URL,
routes
})
// 路由守卫
// router.beforeEach((to, from, next) => {
// if (to.path === '/login') {
// return next()
// }
// if (!localStorage.getItem('token')) {
// return next('/login')
// }
// next()
// })
export default router

17
src/store/index.js 100644
View File

@ -0,0 +1,17 @@
import Vue from 'vue'
import Vuex from 'vuex'
Vue.use(Vuex)
export default new Vuex.Store({
state: {
},
getters: {
},
mutations: {
},
actions: {
},
modules: {
}
})

View File

@ -0,0 +1,15 @@
<template>
<div>
chat
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
consultation<router-view></router-view>
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,13 @@
<template>
<div>chat</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
commentList
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,13 @@
<template>
<div>ftgbjnkml,<router-view></router-view></div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,13 @@
<template>
<div>cons detail</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
doctorList
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,13 @@
<template>
<div>comment</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
current
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,13 @@
<template>
<div>history</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
myConsultation<router-view></router-view>
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
queryComment
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
result
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
<router-view></router-view>
</div>
</template>
<script>
export default {};
</script>
<style lang="scss" >
</style>

View File

@ -0,0 +1,13 @@
<template>
<div>detail</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,13 @@
<template>
<div>infomationsearch<router-view></router-view></div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,13 @@
<template>
<div>infor detail</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,13 @@
<template>
<div>knowledgeBasesearchz,<router-view></router-view></div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,13 @@
<template>
<div>search</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
adoptIdea
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
attention
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
collection
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
forgetPassword1
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
forgetPassword2
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
index
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
login
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
my detail
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
my my
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
commentList
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
index
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
payVideo
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
addModifyProfile
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
index
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
register
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
sign
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
detail
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
patientCircle<router-view></router-view>
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
search result
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
search<router-view></router-view>
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
userInfo
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
write
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
bindBankCard
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
bindConfirm
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
changePassword
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
chooseGender
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
index
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
inviteFriends
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
myPhysicalSigns
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
personInfomation
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
realNameAuthentication
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
screenBrightness
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
<router-view></router-view>
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
setNickname
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
versionDetection
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
viewAuthenticationInformation
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
viewBankCards
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
vedio
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,13 @@
<template>
<div>myWallet</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
recharge
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
rechargeSuccess
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
wallet<router-view></router-view>
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
withdrawal
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
withdrawalRecords
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

View File

@ -0,0 +1,15 @@
<template>
<div>
withdrawaling
</div>
</template>
<script>
export default {
}
</script>
<style>
</style>

7
vue.config.js 100644
View File

@ -0,0 +1,7 @@
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave:false
})

5779
yarn.lock 100644

File diff suppressed because it is too large Load Diff