gitextract_1uh0qe7r/ ├── .gitignore ├── App.vue ├── AppEntryController.js ├── LICENSE ├── README.md ├── apis/ │ ├── http.js │ └── index.js ├── common/ │ ├── auth.js │ ├── cityData.js │ ├── data.js │ ├── date.js │ ├── db.js │ ├── graceChecker.js │ ├── modalHelper.js │ ├── router.js │ └── utils.js ├── components/ │ ├── GoEasyAudioPlayer/ │ │ └── GoEasyAudioPlayer.vue │ ├── QS-tabs/ │ │ └── QS-tabs.vue │ ├── m-ad/ │ │ └── m-ad.vue │ ├── m-cc-btn/ │ │ └── m-cc-btn.vue │ ├── m-cc-popup/ │ │ └── m-cc-popup.vue │ ├── m-cell/ │ │ └── m-cell.vue │ ├── m-codedialog/ │ │ └── m-codedialog.vue │ ├── m-company/ │ │ └── m-company.vue │ ├── m-empty-data/ │ │ └── m-empty-data.vue │ ├── m-fail/ │ │ └── m-fail.vue │ ├── m-format-card/ │ │ └── m-format-card.vue │ ├── m-format-phone/ │ │ └── m-format-phone.vue │ ├── m-icon/ │ │ ├── m-icon.css │ │ └── m-icon.vue │ ├── m-input/ │ │ └── m-input.vue │ ├── m-page-view/ │ │ └── m-page-view.vue │ ├── m-popup/ │ │ └── m-popup.vue │ ├── m-popup-header/ │ │ └── m-popup-header.vue │ ├── m-position/ │ │ └── m-position.vue │ ├── m-qrcode/ │ │ ├── m-qrcode.vue │ │ └── qrcode.js │ ├── m-swiper/ │ │ └── m-swiper.vue │ ├── m-textarea/ │ │ └── m-textarea.vue │ ├── m-upimg/ │ │ ├── m-upimg.1.vue │ │ └── m-upimg.vue │ ├── mpvue-citypicker/ │ │ ├── city-data/ │ │ │ ├── area.js │ │ │ ├── city.js │ │ │ └── province.js │ │ └── mpvueCityPicker.vue │ ├── mpvue-picker/ │ │ └── mpvue-picker.vue │ ├── sunui-grand/ │ │ └── sunui-grand.vue │ ├── uni-load-more/ │ │ ├── readme.md │ │ └── uni-load-more.vue │ ├── uni-popup1/ │ │ └── uni-popup.vue │ └── yzb/ │ ├── yzb-about.vue │ ├── yzb-apply.vue │ ├── yzb-browse.vue │ ├── yzb-classification.vue │ ├── yzb-connected.vue │ ├── yzb-filterDropdown.vue │ ├── yzb-grid.vue │ ├── yzb-notice.vue │ └── yzb-resume.vue ├── config/ │ ├── assets.config.js │ ├── constData.config.js │ ├── formRule.config.js │ ├── index.config.js │ └── routes.config.js ├── lib/ │ ├── EmojiDecoder.js │ ├── imservice.js │ └── restapi.js ├── main.js ├── manifest.json ├── pages/ │ ├── chat/ │ │ ├── chat.vue │ │ ├── notice/ │ │ │ ├── noticeDetail.vue │ │ │ └── notices.vue │ │ └── privateChat.vue │ ├── common/ │ │ ├── industry.vue │ │ └── post.vue │ ├── company/ │ │ ├── detail.vue │ │ ├── list.vue │ │ └── resumeList.vue │ ├── login/ │ │ ├── bindphone.vue │ │ ├── index.vue │ │ ├── login.vue │ │ ├── reg.vue │ │ └── success.vue │ ├── main/ │ │ ├── main.vue │ │ └── search.vue │ ├── position/ │ │ ├── detail.vue │ │ └── list.vue │ ├── type/ │ │ └── type.vue │ └── user/ │ ├── aboutUs.vue │ ├── apply.vue │ ├── browse.vue │ ├── collect.vue │ ├── company/ │ │ ├── auth.vue │ │ ├── company.vue │ │ ├── enter.vue │ │ ├── position-edit.vue │ │ └── positions.vue │ ├── connected.vue │ ├── contactUs.vue │ ├── help.vue │ ├── helpcenterDetails.vue │ ├── hideSetting.vue │ ├── person/ │ │ ├── edit-edu.vue │ │ ├── edit-expect.vue │ │ ├── edit-pro-content.vue │ │ ├── edit-pro.vue │ │ ├── edit-skill.vue │ │ ├── edit-work-content.vue │ │ ├── edit-work.vue │ │ ├── resume.vue │ │ └── resumeDetail.vue │ ├── privacy.vue │ ├── promoCode.vue │ ├── robot.vue │ ├── settings.vue │ ├── terms.vue │ ├── user.vue │ └── userInfo.vue ├── pages.json ├── static/ │ ├── css/ │ │ ├── chatInterface.css │ │ ├── common.css │ │ └── yzb-icon.css │ └── icomoon/ │ ├── selection.json │ └── style.css ├── store/ │ └── index.js ├── uni.scss └── uni_modules/ ├── bctos-rich-text/ │ ├── changelog.md │ ├── components/ │ │ └── bctos-rich-text/ │ │ └── bctos-rich-text.vue │ ├── package.json │ └── readme.md ├── uni-collapse/ │ ├── changelog.md │ ├── components/ │ │ ├── uni-collapse/ │ │ │ └── uni-collapse.vue │ │ └── uni-collapse-item/ │ │ └── uni-collapse-item.vue │ ├── package.json │ └── readme.md ├── uni-grid/ │ ├── changelog.md │ ├── components/ │ │ ├── uni-grid/ │ │ │ └── uni-grid.vue │ │ └── uni-grid-item/ │ │ └── uni-grid-item.vue │ ├── package.json │ └── readme.md ├── uni-icons/ │ ├── changelog.md │ ├── components/ │ │ └── uni-icons/ │ │ ├── icons.js │ │ └── uni-icons.vue │ ├── package.json │ └── readme.md ├── uni-list/ │ ├── changelog.md │ ├── components/ │ │ ├── uni-list/ │ │ │ ├── uni-list - ╕▒▒╛.vue │ │ │ ├── uni-list.vue │ │ │ ├── uni-refresh.vue │ │ │ └── uni-refresh.wxs │ │ ├── uni-list-ad/ │ │ │ └── uni-list-ad.vue │ │ ├── uni-list-chat/ │ │ │ ├── uni-list-chat.scss │ │ │ └── uni-list-chat.vue │ │ └── uni-list-item/ │ │ └── uni-list-item.vue │ ├── package.json │ └── readme.md ├── uni-popup/ │ ├── changelog.md │ ├── components/ │ │ ├── uni-popup/ │ │ │ ├── keypress.js │ │ │ ├── message.js │ │ │ ├── popup.js │ │ │ ├── share.js │ │ │ └── uni-popup.vue │ │ ├── uni-popup-dialog/ │ │ │ ├── keypress.js │ │ │ └── uni-popup-dialog.vue │ │ ├── uni-popup-message/ │ │ │ └── uni-popup-message.vue │ │ └── uni-popup-share/ │ │ └── uni-popup-share.vue │ ├── package.json │ └── readme.md ├── uni-section/ │ ├── changelog.md │ ├── components/ │ │ └── uni-section/ │ │ └── uni-section.vue │ ├── package.json │ └── readme.md └── uni-transition/ ├── changelog.md ├── components/ │ └── uni-transition/ │ └── uni-transition.vue ├── package.json └── readme.md