├── LICENSE ├── README.md ├── alirmHqDemo ├── .babelrc ├── .gitignore ├── Makefile ├── README.md ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ └── images │ │ ├── kline_D.png │ │ ├── kline_M.png │ │ ├── kline_M1.png │ │ └── kline_W.png ├── src │ ├── assets │ │ ├── css │ │ │ └── commCss.less │ │ ├── font │ │ │ └── iconfont.css │ │ └── images │ │ │ ├── headerIcon.png │ │ │ └── threeImg.png │ ├── index.html │ ├── pages │ │ └── index │ │ │ ├── App.vue │ │ │ └── index.js │ ├── services │ │ ├── common.js │ │ ├── eventBus.js │ │ └── tools.js │ ├── utils │ │ └── contans.js │ └── vendor.js ├── webpack.config.js └── yarn.lock ├── demo_show └── Sharingan_THX_uniapp_vue2 │ ├── assets │ ├── iconfont.08deb29a.ttf │ ├── iconfont.1a4f1e20.woff │ ├── iconfont.552d02e6.woff2 │ └── noticePng.6b78a53a.png │ ├── index.html │ └── static │ ├── index.2da1efab.css │ ├── js │ ├── chunk-vendors.b5a58c93.js │ ├── chunk-vendors.ca0f0c62.js │ ├── index.2454ce43.js │ ├── index.48c33d3a.js │ ├── index.853a9d52.js │ ├── index.ae29174b.js │ ├── pages-index-index.3d346b64.js │ ├── pages-index-index.42261e73.js │ ├── pages-index-index.8c78f802.js │ └── pages-index-index.9b6f0496.js │ └── logo.png ├── hqchart_super_eastmoney_demo ├── .babelrc ├── .gitignore ├── .project ├── Makefile ├── README.md ├── package-lock.json ├── package.json ├── postcss.config.js ├── src │ ├── App.vue │ ├── assets │ │ └── search.png │ ├── eastmoney │ │ └── HQData.js │ ├── index.html │ ├── main.js │ └── vendor.js ├── webpack.config.js └── yarn.lock ├── hqchart_super_eastmoney_demo_uniapp ├── .hbuilderx │ └── launch.json ├── App.vue ├── index.html ├── main.js ├── manifest.json ├── pages.json ├── pages │ └── index │ │ ├── HQData.js │ │ ├── components │ │ ├── stockSelect.vue │ │ └── tabList.vue │ │ └── index.vue ├── static │ └── logo.png ├── uni.scss └── uview-ui │ ├── LICENSE │ ├── README.md │ ├── components │ ├── u-action-sheet │ │ └── u-action-sheet.vue │ ├── u-alert-tips │ │ └── u-alert-tips.vue │ ├── u-avatar-cropper │ │ ├── u-avatar-cropper.vue │ │ └── weCropper.js │ ├── u-avatar │ │ └── u-avatar.vue │ ├── u-back-top │ │ └── u-back-top.vue │ ├── u-badge │ │ └── u-badge.vue │ ├── u-button │ │ └── u-button.vue │ ├── u-calendar │ │ └── u-calendar.vue │ ├── u-car-keyboard │ │ └── u-car-keyboard.vue │ ├── u-card │ │ └── u-card.vue │ ├── u-cell-group │ │ └── u-cell-group.vue │ ├── u-cell-item │ │ └── u-cell-item.vue │ ├── u-checkbox-group │ │ └── u-checkbox-group.vue │ ├── u-checkbox │ │ └── u-checkbox.vue │ ├── u-circle-progress │ │ ├── u-circle-progress.vue │ │ └── u-line-progress │ │ │ └── u-line-progress.vue │ ├── u-col │ │ └── u-col.vue │ ├── u-collapse-item │ │ └── u-collapse-item.vue │ ├── u-collapse │ │ └── u-collapse.vue │ ├── u-column-notice │ │ └── u-column-notice.vue │ ├── u-count-down │ │ └── u-count-down.vue │ ├── u-count-to │ │ └── u-count-to.vue │ ├── u-divider │ │ └── u-divider.vue │ ├── u-dropdown-item │ │ └── u-dropdown-item.vue │ ├── u-dropdown │ │ └── u-dropdown.vue │ ├── u-empty │ │ └── u-empty.vue │ ├── u-field │ │ └── u-field.vue │ ├── u-form-item │ │ └── u-form-item.vue │ ├── u-form │ │ └── u-form.vue │ ├── u-full-screen │ │ └── u-full-screen.vue │ ├── u-gap │ │ └── u-gap.vue │ ├── u-grid-item │ │ └── u-grid-item.vue │ ├── u-grid │ │ └── u-grid.vue │ ├── u-icon │ │ └── u-icon.vue │ ├── u-image │ │ └── u-image.vue │ ├── u-index-anchor │ │ └── u-index-anchor.vue │ ├── u-index-list │ │ └── u-index-list.vue │ ├── u-input │ │ └── u-input.vue │ ├── u-keyboard │ │ └── u-keyboard.vue │ ├── u-lazy-load │ │ └── u-lazy-load.vue │ ├── u-line-progress │ │ └── u-line-progress.vue │ ├── u-line │ │ └── u-line.vue │ ├── u-link │ │ └── u-link.vue │ ├── u-loading-page │ │ └── u-loading-page.vue │ ├── u-loading │ │ └── u-loading.vue │ ├── u-loadmore │ │ └── u-loadmore.vue │ ├── u-mask │ │ └── u-mask.vue │ ├── u-message-input │ │ └── u-message-input.vue │ ├── u-modal │ │ └── u-modal.vue │ ├── u-navbar │ │ └── u-navbar.vue │ ├── u-no-network │ │ └── u-no-network.vue │ ├── u-notice-bar │ │ └── u-notice-bar.vue │ ├── u-number-box │ │ └── u-number-box.vue │ ├── u-number-keyboard │ │ └── u-number-keyboard.vue │ ├── u-parse │ │ ├── libs │ │ │ ├── CssHandler.js │ │ │ ├── MpHtmlParser.js │ │ │ ├── config.js │ │ │ ├── handler.wxs │ │ │ └── trees.vue │ │ └── u-parse.vue │ ├── u-picker │ │ └── u-picker.vue │ ├── u-popup │ │ └── u-popup.vue │ ├── u-radio-group │ │ └── u-radio-group.vue │ ├── u-radio │ │ └── u-radio.vue │ ├── u-rate │ │ └── u-rate.vue │ ├── u-read-more │ │ └── u-read-more.vue │ ├── u-row-notice │ │ └── u-row-notice.vue │ ├── u-row │ │ └── u-row.vue │ ├── u-search │ │ └── u-search.vue │ ├── u-section │ │ └── u-section.vue │ ├── u-select │ │ └── u-select.vue │ ├── u-skeleton │ │ └── u-skeleton.vue │ ├── u-slider │ │ └── u-slider.vue │ ├── u-steps │ │ └── u-steps.vue │ ├── u-sticky │ │ └── u-sticky.vue │ ├── u-subsection │ │ └── u-subsection.vue │ ├── u-swipe-action │ │ └── u-swipe-action.vue │ ├── u-swiper │ │ └── u-swiper.vue │ ├── u-switch │ │ └── u-switch.vue │ ├── u-tabbar │ │ └── u-tabbar.vue │ ├── u-table │ │ └── u-table.vue │ ├── u-tabs-swiper │ │ └── u-tabs-swiper.vue │ ├── u-tabs │ │ └── u-tabs.vue │ ├── u-tag │ │ └── u-tag.vue │ ├── u-td │ │ └── u-td.vue │ ├── u-th │ │ └── u-th.vue │ ├── u-time-line-item │ │ └── u-time-line-item.vue │ ├── u-time-line │ │ └── u-time-line.vue │ ├── u-toast │ │ └── u-toast.vue │ ├── u-top-tips │ │ └── u-top-tips.vue │ ├── u-tr │ │ └── u-tr.vue │ ├── u-upload │ │ └── u-upload.vue │ ├── u-verification-code │ │ └── u-verification-code.vue │ └── u-waterfall │ │ └── u-waterfall.vue │ ├── iconfont.css │ ├── index.js │ ├── index.scss │ ├── libs │ ├── config │ │ ├── config.js │ │ └── zIndex.js │ ├── css │ │ ├── color.scss │ │ ├── common.scss │ │ ├── style.components.scss │ │ ├── style.h5.scss │ │ ├── style.mp.scss │ │ ├── style.nvue.scss │ │ └── style.vue.scss │ ├── function │ │ ├── $parent.js │ │ ├── addUnit.js │ │ ├── bem.js │ │ ├── color.js │ │ ├── colorGradient.js │ │ ├── debounce.js │ │ ├── deepClone.js │ │ ├── deepMerge.js │ │ ├── getParent.js │ │ ├── guid.js │ │ ├── md5.js │ │ ├── queryParams.js │ │ ├── random.js │ │ ├── randomArray.js │ │ ├── route.js │ │ ├── sys.js │ │ ├── test.js │ │ ├── throttle.js │ │ ├── timeFormat.js │ │ ├── timeFrom.js │ │ ├── toast.js │ │ ├── trim.js │ │ └── type2icon.js │ ├── mixin │ │ ├── mixin.js │ │ └── mpShare.js │ ├── request │ │ └── index.js │ ├── store │ │ └── index.js │ └── util │ │ ├── area.js │ │ ├── async-validator.js │ │ ├── city.js │ │ ├── emitter.js │ │ └── province.js │ ├── package.json │ └── theme.scss ├── hqchart_super_eastmoney_demo_wechat ├── components │ ├── selectStockType │ │ ├── selectStockType.js │ │ ├── selectStockType.json │ │ ├── selectStockType.wxml │ │ └── selectStockType.wxss │ └── tabList │ │ ├── tabList.js │ │ ├── tabList.json │ │ ├── tabList.wxml │ │ └── tabList.wxss └── pages │ └── EastMoney_Data │ ├── HQData.js │ ├── index.js │ ├── index.json │ ├── index.wxml │ └── index.wxss ├── hqchart_super_qq_demo ├── .babelrc ├── .gitignore ├── .project ├── Makefile ├── README.md ├── package-lock.json ├── package.json ├── postcss.config.js ├── src │ ├── App.vue │ ├── assets │ │ └── search.png │ ├── index.html │ ├── main.js │ ├── qq │ │ └── HQData.js │ └── vendor.js ├── webpack.config.js └── yarn.lock ├── pic ├── Sharingan_THX_uniapp_vue2_1.png ├── Sharingan_THX_uniapp_vue2_2.png ├── Sharingan_THX_uniapp_vue2_3.png ├── hqchart_super_eastmoney_demo_1.gif ├── hqchart_super_eastmoney_demo_1.png ├── hqchart_super_eastmoney_demo_uniapp_1.gif ├── hqchart_super_eastmoney_demo_wechat_1.png ├── hqchart_super_eastmoney_demo_wechat_2.png ├── hqchart_super_eastmoney_demo_wechat_3.png └── hqchart_super_qq_demo_1.png └── 用户协议.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/README.md -------------------------------------------------------------------------------- /alirmHqDemo/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/.babelrc -------------------------------------------------------------------------------- /alirmHqDemo/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | .idea 6 | -------------------------------------------------------------------------------- /alirmHqDemo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/Makefile -------------------------------------------------------------------------------- /alirmHqDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/README.md -------------------------------------------------------------------------------- /alirmHqDemo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/package-lock.json -------------------------------------------------------------------------------- /alirmHqDemo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/package.json -------------------------------------------------------------------------------- /alirmHqDemo/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/postcss.config.js -------------------------------------------------------------------------------- /alirmHqDemo/public/images/kline_D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/public/images/kline_D.png -------------------------------------------------------------------------------- /alirmHqDemo/public/images/kline_M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/public/images/kline_M.png -------------------------------------------------------------------------------- /alirmHqDemo/public/images/kline_M1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/public/images/kline_M1.png -------------------------------------------------------------------------------- /alirmHqDemo/public/images/kline_W.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/public/images/kline_W.png -------------------------------------------------------------------------------- /alirmHqDemo/src/assets/css/commCss.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/src/assets/css/commCss.less -------------------------------------------------------------------------------- /alirmHqDemo/src/assets/font/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/src/assets/font/iconfont.css -------------------------------------------------------------------------------- /alirmHqDemo/src/assets/images/headerIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/src/assets/images/headerIcon.png -------------------------------------------------------------------------------- /alirmHqDemo/src/assets/images/threeImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/src/assets/images/threeImg.png -------------------------------------------------------------------------------- /alirmHqDemo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/src/index.html -------------------------------------------------------------------------------- /alirmHqDemo/src/pages/index/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/src/pages/index/App.vue -------------------------------------------------------------------------------- /alirmHqDemo/src/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/src/pages/index/index.js -------------------------------------------------------------------------------- /alirmHqDemo/src/services/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/src/services/common.js -------------------------------------------------------------------------------- /alirmHqDemo/src/services/eventBus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/src/services/eventBus.js -------------------------------------------------------------------------------- /alirmHqDemo/src/services/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/src/services/tools.js -------------------------------------------------------------------------------- /alirmHqDemo/src/utils/contans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/src/utils/contans.js -------------------------------------------------------------------------------- /alirmHqDemo/src/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/src/vendor.js -------------------------------------------------------------------------------- /alirmHqDemo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/webpack.config.js -------------------------------------------------------------------------------- /alirmHqDemo/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/alirmHqDemo/yarn.lock -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/assets/iconfont.08deb29a.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/assets/iconfont.08deb29a.ttf -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/assets/iconfont.1a4f1e20.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/assets/iconfont.1a4f1e20.woff -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/assets/iconfont.552d02e6.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/assets/iconfont.552d02e6.woff2 -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/assets/noticePng.6b78a53a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/assets/noticePng.6b78a53a.png -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/index.html -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/static/index.2da1efab.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/static/index.2da1efab.css -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/static/js/chunk-vendors.b5a58c93.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/static/js/chunk-vendors.b5a58c93.js -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/static/js/chunk-vendors.ca0f0c62.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/static/js/chunk-vendors.ca0f0c62.js -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/static/js/index.2454ce43.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/static/js/index.2454ce43.js -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/static/js/index.48c33d3a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/static/js/index.48c33d3a.js -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/static/js/index.853a9d52.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/static/js/index.853a9d52.js -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/static/js/index.ae29174b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/static/js/index.ae29174b.js -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/static/js/pages-index-index.3d346b64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/static/js/pages-index-index.3d346b64.js -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/static/js/pages-index-index.42261e73.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/static/js/pages-index-index.42261e73.js -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/static/js/pages-index-index.8c78f802.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/static/js/pages-index-index.8c78f802.js -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/static/js/pages-index-index.9b6f0496.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/static/js/pages-index-index.9b6f0496.js -------------------------------------------------------------------------------- /demo_show/Sharingan_THX_uniapp_vue2/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/demo_show/Sharingan_THX_uniapp_vue2/static/logo.png -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["vue-app"] 3 | } 4 | -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | .idea 6 | -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo/.project -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo/Makefile -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo/README.md -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo/package-lock.json -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo/package.json -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo/postcss.config.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo/src/App.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/src/assets/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo/src/assets/search.png -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/src/eastmoney/HQData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo/src/eastmoney/HQData.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo/src/index.html -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo/src/main.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/src/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo/src/vendor.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo/webpack.config.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo/yarn.lock -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/.hbuilderx/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/.hbuilderx/launch.json -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/App.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/index.html -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/main.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/manifest.json -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/pages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/pages.json -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/pages/index/HQData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/pages/index/HQData.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/pages/index/components/stockSelect.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/pages/index/components/stockSelect.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/pages/index/components/tabList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/pages/index/components/tabList.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/pages/index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/pages/index/index.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/static/logo.png -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uni.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uni.scss -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/LICENSE -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/README.md -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-action-sheet/u-action-sheet.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-action-sheet/u-action-sheet.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-alert-tips/u-alert-tips.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-alert-tips/u-alert-tips.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-avatar-cropper/u-avatar-cropper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-avatar-cropper/u-avatar-cropper.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-avatar-cropper/weCropper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-avatar-cropper/weCropper.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-avatar/u-avatar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-avatar/u-avatar.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-back-top/u-back-top.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-back-top/u-back-top.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-badge/u-badge.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-badge/u-badge.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-button/u-button.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-button/u-button.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-calendar/u-calendar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-calendar/u-calendar.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-car-keyboard/u-car-keyboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-car-keyboard/u-car-keyboard.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-card/u-card.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-card/u-card.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-cell-group/u-cell-group.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-cell-group/u-cell-group.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-cell-item/u-cell-item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-cell-item/u-cell-item.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-checkbox-group/u-checkbox-group.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-checkbox-group/u-checkbox-group.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-checkbox/u-checkbox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-checkbox/u-checkbox.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-circle-progress/u-circle-progress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-circle-progress/u-circle-progress.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-circle-progress/u-line-progress/u-line-progress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-circle-progress/u-line-progress/u-line-progress.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-col/u-col.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-col/u-col.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-collapse-item/u-collapse-item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-collapse-item/u-collapse-item.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-collapse/u-collapse.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-collapse/u-collapse.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-column-notice/u-column-notice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-column-notice/u-column-notice.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-count-down/u-count-down.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-count-down/u-count-down.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-count-to/u-count-to.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-count-to/u-count-to.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-divider/u-divider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-divider/u-divider.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-dropdown-item/u-dropdown-item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-dropdown-item/u-dropdown-item.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-dropdown/u-dropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-dropdown/u-dropdown.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-empty/u-empty.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-empty/u-empty.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-field/u-field.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-field/u-field.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-form-item/u-form-item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-form-item/u-form-item.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-form/u-form.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-form/u-form.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-full-screen/u-full-screen.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-full-screen/u-full-screen.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-gap/u-gap.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-gap/u-gap.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-grid-item/u-grid-item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-grid-item/u-grid-item.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-grid/u-grid.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-grid/u-grid.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-icon/u-icon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-icon/u-icon.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-image/u-image.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-image/u-image.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-index-anchor/u-index-anchor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-index-anchor/u-index-anchor.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-index-list/u-index-list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-index-list/u-index-list.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-input/u-input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-input/u-input.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-keyboard/u-keyboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-keyboard/u-keyboard.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-lazy-load/u-lazy-load.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-lazy-load/u-lazy-load.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-line-progress/u-line-progress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-line-progress/u-line-progress.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-line/u-line.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-line/u-line.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-link/u-link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-link/u-link.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-loading-page/u-loading-page.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-loading-page/u-loading-page.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-loading/u-loading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-loading/u-loading.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-loadmore/u-loadmore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-loadmore/u-loadmore.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-mask/u-mask.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-mask/u-mask.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-message-input/u-message-input.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-message-input/u-message-input.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-modal/u-modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-modal/u-modal.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-navbar/u-navbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-navbar/u-navbar.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-no-network/u-no-network.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-no-network/u-no-network.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-notice-bar/u-notice-bar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-notice-bar/u-notice-bar.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-number-box/u-number-box.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-number-box/u-number-box.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-number-keyboard/u-number-keyboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-number-keyboard/u-number-keyboard.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-parse/libs/CssHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-parse/libs/CssHandler.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-parse/libs/MpHtmlParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-parse/libs/MpHtmlParser.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-parse/libs/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-parse/libs/config.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-parse/libs/handler.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-parse/libs/handler.wxs -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-parse/libs/trees.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-parse/libs/trees.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-parse/u-parse.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-parse/u-parse.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-picker/u-picker.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-picker/u-picker.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-popup/u-popup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-popup/u-popup.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-radio-group/u-radio-group.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-radio-group/u-radio-group.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-radio/u-radio.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-radio/u-radio.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-rate/u-rate.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-rate/u-rate.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-read-more/u-read-more.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-read-more/u-read-more.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-row-notice/u-row-notice.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-row-notice/u-row-notice.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-row/u-row.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-row/u-row.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-search/u-search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-search/u-search.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-section/u-section.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-section/u-section.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-select/u-select.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-select/u-select.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-skeleton/u-skeleton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-skeleton/u-skeleton.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-slider/u-slider.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-slider/u-slider.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-steps/u-steps.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-steps/u-steps.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-sticky/u-sticky.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-sticky/u-sticky.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-subsection/u-subsection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-subsection/u-subsection.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-swipe-action/u-swipe-action.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-swipe-action/u-swipe-action.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-swiper/u-swiper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-swiper/u-swiper.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-switch/u-switch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-switch/u-switch.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-tabbar/u-tabbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-tabbar/u-tabbar.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-table/u-table.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-table/u-table.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-tabs-swiper/u-tabs-swiper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-tabs-swiper/u-tabs-swiper.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-tabs/u-tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-tabs/u-tabs.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-tag/u-tag.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-tag/u-tag.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-td/u-td.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-td/u-td.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-th/u-th.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-th/u-th.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-time-line-item/u-time-line-item.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-time-line-item/u-time-line-item.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-time-line/u-time-line.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-time-line/u-time-line.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-toast/u-toast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-toast/u-toast.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-top-tips/u-top-tips.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-top-tips/u-top-tips.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-tr/u-tr.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-tr/u-tr.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-upload/u-upload.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-upload/u-upload.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-verification-code/u-verification-code.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-verification-code/u-verification-code.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-waterfall/u-waterfall.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/components/u-waterfall/u-waterfall.vue -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/iconfont.css -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/index.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/index.scss -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/config/config.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/config/zIndex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/config/zIndex.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/css/color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/css/color.scss -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/css/common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/css/common.scss -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/css/style.components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/css/style.components.scss -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/css/style.h5.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/css/style.h5.scss -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/css/style.mp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/css/style.mp.scss -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/css/style.nvue.scss: -------------------------------------------------------------------------------- 1 | .nvue { 2 | font-size: 24rpx; 3 | } -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/css/style.vue.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/css/style.vue.scss -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/$parent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/$parent.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/addUnit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/addUnit.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/bem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/bem.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/color.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/colorGradient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/colorGradient.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/debounce.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/deepClone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/deepClone.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/deepMerge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/deepMerge.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/getParent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/getParent.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/guid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/guid.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/md5.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/queryParams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/queryParams.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/random.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/randomArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/randomArray.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/route.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/sys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/sys.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/test.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/throttle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/throttle.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/timeFormat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/timeFormat.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/timeFrom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/timeFrom.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/toast.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/trim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/trim.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/type2icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/function/type2icon.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/mixin/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/mixin/mixin.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/mixin/mpShare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/mixin/mpShare.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/request/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/request/index.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/store/index.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/util/area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/util/area.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/util/async-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/util/async-validator.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/util/city.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/util/city.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/util/emitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/util/emitter.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/util/province.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/libs/util/province.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/package.json -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_uniapp/uview-ui/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_uniapp/uview-ui/theme.scss -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_wechat/components/selectStockType/selectStockType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_wechat/components/selectStockType/selectStockType.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_wechat/components/selectStockType/selectStockType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_wechat/components/selectStockType/selectStockType.json -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_wechat/components/selectStockType/selectStockType.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_wechat/components/selectStockType/selectStockType.wxml -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_wechat/components/selectStockType/selectStockType.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_wechat/components/selectStockType/selectStockType.wxss -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_wechat/components/tabList/tabList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_wechat/components/tabList/tabList.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_wechat/components/tabList/tabList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_wechat/components/tabList/tabList.json -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_wechat/components/tabList/tabList.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_wechat/components/tabList/tabList.wxml -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_wechat/components/tabList/tabList.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_wechat/components/tabList/tabList.wxss -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_wechat/pages/EastMoney_Data/HQData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_wechat/pages/EastMoney_Data/HQData.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_wechat/pages/EastMoney_Data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_wechat/pages/EastMoney_Data/index.js -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_wechat/pages/EastMoney_Data/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_wechat/pages/EastMoney_Data/index.json -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_wechat/pages/EastMoney_Data/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_wechat/pages/EastMoney_Data/index.wxml -------------------------------------------------------------------------------- /hqchart_super_eastmoney_demo_wechat/pages/EastMoney_Data/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_eastmoney_demo_wechat/pages/EastMoney_Data/index.wxss -------------------------------------------------------------------------------- /hqchart_super_qq_demo/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["vue-app"] 3 | } 4 | -------------------------------------------------------------------------------- /hqchart_super_qq_demo/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | dist/ 4 | npm-debug.log 5 | .idea 6 | -------------------------------------------------------------------------------- /hqchart_super_qq_demo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_qq_demo/.project -------------------------------------------------------------------------------- /hqchart_super_qq_demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_qq_demo/Makefile -------------------------------------------------------------------------------- /hqchart_super_qq_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_qq_demo/README.md -------------------------------------------------------------------------------- /hqchart_super_qq_demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_qq_demo/package-lock.json -------------------------------------------------------------------------------- /hqchart_super_qq_demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_qq_demo/package.json -------------------------------------------------------------------------------- /hqchart_super_qq_demo/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_qq_demo/postcss.config.js -------------------------------------------------------------------------------- /hqchart_super_qq_demo/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_qq_demo/src/App.vue -------------------------------------------------------------------------------- /hqchart_super_qq_demo/src/assets/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_qq_demo/src/assets/search.png -------------------------------------------------------------------------------- /hqchart_super_qq_demo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_qq_demo/src/index.html -------------------------------------------------------------------------------- /hqchart_super_qq_demo/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_qq_demo/src/main.js -------------------------------------------------------------------------------- /hqchart_super_qq_demo/src/qq/HQData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_qq_demo/src/qq/HQData.js -------------------------------------------------------------------------------- /hqchart_super_qq_demo/src/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_qq_demo/src/vendor.js -------------------------------------------------------------------------------- /hqchart_super_qq_demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_qq_demo/webpack.config.js -------------------------------------------------------------------------------- /hqchart_super_qq_demo/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/hqchart_super_qq_demo/yarn.lock -------------------------------------------------------------------------------- /pic/Sharingan_THX_uniapp_vue2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/pic/Sharingan_THX_uniapp_vue2_1.png -------------------------------------------------------------------------------- /pic/Sharingan_THX_uniapp_vue2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/pic/Sharingan_THX_uniapp_vue2_2.png -------------------------------------------------------------------------------- /pic/Sharingan_THX_uniapp_vue2_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/pic/Sharingan_THX_uniapp_vue2_3.png -------------------------------------------------------------------------------- /pic/hqchart_super_eastmoney_demo_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/pic/hqchart_super_eastmoney_demo_1.gif -------------------------------------------------------------------------------- /pic/hqchart_super_eastmoney_demo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/pic/hqchart_super_eastmoney_demo_1.png -------------------------------------------------------------------------------- /pic/hqchart_super_eastmoney_demo_uniapp_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/pic/hqchart_super_eastmoney_demo_uniapp_1.gif -------------------------------------------------------------------------------- /pic/hqchart_super_eastmoney_demo_wechat_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/pic/hqchart_super_eastmoney_demo_wechat_1.png -------------------------------------------------------------------------------- /pic/hqchart_super_eastmoney_demo_wechat_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/pic/hqchart_super_eastmoney_demo_wechat_2.png -------------------------------------------------------------------------------- /pic/hqchart_super_eastmoney_demo_wechat_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/pic/hqchart_super_eastmoney_demo_wechat_3.png -------------------------------------------------------------------------------- /pic/hqchart_super_qq_demo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/pic/hqchart_super_qq_demo_1.png -------------------------------------------------------------------------------- /用户协议.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jones2000/HQChart-Super/HEAD/用户协议.txt --------------------------------------------------------------------------------