├── README.md ├── babel.config.js ├── doc ├── admin │ ├── 发布文章.png │ ├── 咨询师管理.png │ ├── 咨询师管理页面.png │ ├── 在线咨询页面.png │ ├── 添加问卷.png │ ├── 用户管理.png │ ├── 管理员登录页面.png │ └── 管理员管理页面.png ├── user │ ├── 咨询师页面.png │ ├── 在线测评.png │ ├── 心理调查问卷.png │ ├── 文章.png │ ├── 用户中心.png │ ├── 用户在线咨询.png │ ├── 用户登录.png │ └── 用户首页.png └── wx.jpg ├── package.json ├── public ├── favicon.ico └── index.html ├── src ├── App.vue ├── api │ ├── index.js │ └── request.js ├── assets │ ├── 123.svg │ ├── background.svg │ └── logo.png ├── common │ └── js │ │ └── dateformat.js ├── components │ ├── Logo.vue │ ├── TopMenu.vue │ ├── board │ │ ├── BoardView.vue │ │ └── BoardView1.vue │ ├── exception │ │ ├── ExceptionView.vue │ │ ├── View404.vue │ │ ├── View500.vue │ │ └── types.js │ ├── message │ │ ├── MessageView.vue │ │ └── MsgItem.vue │ ├── page │ │ ├── AdminLayout.vue │ │ ├── LoginPage.vue │ │ ├── RegisterPage.vue │ │ ├── UserLayout.vue │ │ └── UserLogin.vue │ ├── post │ │ ├── DetailView.vue │ │ ├── PostsView.vue │ │ └── PostsView1.vue │ ├── talk │ │ ├── TalkView.vue │ │ └── TalkView1.vue │ ├── test │ │ ├── IntroView.vue │ │ ├── IntroView1.vue │ │ ├── TestView.vue │ │ └── TestView1.vue │ └── user │ │ ├── MsgItem.vue │ │ ├── ProfileView.vue │ │ ├── UserMessageView.vue │ │ ├── UserNav.vue │ │ └── UserSecurityView.vue ├── main.js └── router.js └── vue.config.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/babel.config.js -------------------------------------------------------------------------------- /doc/admin/发布文章.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/admin/发布文章.png -------------------------------------------------------------------------------- /doc/admin/咨询师管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/admin/咨询师管理.png -------------------------------------------------------------------------------- /doc/admin/咨询师管理页面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/admin/咨询师管理页面.png -------------------------------------------------------------------------------- /doc/admin/在线咨询页面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/admin/在线咨询页面.png -------------------------------------------------------------------------------- /doc/admin/添加问卷.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/admin/添加问卷.png -------------------------------------------------------------------------------- /doc/admin/用户管理.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/admin/用户管理.png -------------------------------------------------------------------------------- /doc/admin/管理员登录页面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/admin/管理员登录页面.png -------------------------------------------------------------------------------- /doc/admin/管理员管理页面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/admin/管理员管理页面.png -------------------------------------------------------------------------------- /doc/user/咨询师页面.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/user/咨询师页面.png -------------------------------------------------------------------------------- /doc/user/在线测评.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/user/在线测评.png -------------------------------------------------------------------------------- /doc/user/心理调查问卷.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/user/心理调查问卷.png -------------------------------------------------------------------------------- /doc/user/文章.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/user/文章.png -------------------------------------------------------------------------------- /doc/user/用户中心.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/user/用户中心.png -------------------------------------------------------------------------------- /doc/user/用户在线咨询.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/user/用户在线咨询.png -------------------------------------------------------------------------------- /doc/user/用户登录.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/user/用户登录.png -------------------------------------------------------------------------------- /doc/user/用户首页.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/user/用户首页.png -------------------------------------------------------------------------------- /doc/wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/doc/wx.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/api/index.js -------------------------------------------------------------------------------- /src/api/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/api/request.js -------------------------------------------------------------------------------- /src/assets/123.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/assets/123.svg -------------------------------------------------------------------------------- /src/assets/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/assets/background.svg -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/common/js/dateformat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/common/js/dateformat.js -------------------------------------------------------------------------------- /src/components/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/Logo.vue -------------------------------------------------------------------------------- /src/components/TopMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/TopMenu.vue -------------------------------------------------------------------------------- /src/components/board/BoardView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/board/BoardView.vue -------------------------------------------------------------------------------- /src/components/board/BoardView1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/board/BoardView1.vue -------------------------------------------------------------------------------- /src/components/exception/ExceptionView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/exception/ExceptionView.vue -------------------------------------------------------------------------------- /src/components/exception/View404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/exception/View404.vue -------------------------------------------------------------------------------- /src/components/exception/View500.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/exception/View500.vue -------------------------------------------------------------------------------- /src/components/exception/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/exception/types.js -------------------------------------------------------------------------------- /src/components/message/MessageView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/message/MessageView.vue -------------------------------------------------------------------------------- /src/components/message/MsgItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/message/MsgItem.vue -------------------------------------------------------------------------------- /src/components/page/AdminLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/page/AdminLayout.vue -------------------------------------------------------------------------------- /src/components/page/LoginPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/page/LoginPage.vue -------------------------------------------------------------------------------- /src/components/page/RegisterPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/page/RegisterPage.vue -------------------------------------------------------------------------------- /src/components/page/UserLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/page/UserLayout.vue -------------------------------------------------------------------------------- /src/components/page/UserLogin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/page/UserLogin.vue -------------------------------------------------------------------------------- /src/components/post/DetailView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/post/DetailView.vue -------------------------------------------------------------------------------- /src/components/post/PostsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/post/PostsView.vue -------------------------------------------------------------------------------- /src/components/post/PostsView1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/post/PostsView1.vue -------------------------------------------------------------------------------- /src/components/talk/TalkView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/talk/TalkView.vue -------------------------------------------------------------------------------- /src/components/talk/TalkView1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/talk/TalkView1.vue -------------------------------------------------------------------------------- /src/components/test/IntroView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/test/IntroView.vue -------------------------------------------------------------------------------- /src/components/test/IntroView1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/test/IntroView1.vue -------------------------------------------------------------------------------- /src/components/test/TestView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/test/TestView.vue -------------------------------------------------------------------------------- /src/components/test/TestView1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/test/TestView1.vue -------------------------------------------------------------------------------- /src/components/user/MsgItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/user/MsgItem.vue -------------------------------------------------------------------------------- /src/components/user/ProfileView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/user/ProfileView.vue -------------------------------------------------------------------------------- /src/components/user/UserMessageView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/user/UserMessageView.vue -------------------------------------------------------------------------------- /src/components/user/UserNav.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/user/UserNav.vue -------------------------------------------------------------------------------- /src/components/user/UserSecurityView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/components/user/UserSecurityView.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/main.js -------------------------------------------------------------------------------- /src/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/src/router.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanManage/psy_user/HEAD/vue.config.js --------------------------------------------------------------------------------