@kyfe/ks-query-table 0.0.21 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.bitmap +38 -0
- package/.editorconfig +5 -0
- package/.env.dev +2 -0
- package/.env.gray +2 -0
- package/.env.prod +2 -0
- package/.env.stg +3 -0
- package/.env.uat +2 -0
- package/.eslintignore +1 -0
- package/.eslintrc.js +25 -0
- package/.gitmodules +4 -0
- package/.prettierrc +11 -0
- package/README.md +15 -0
- package/babel.config.js +10 -0
- package/build-apm.sh +9 -0
- package/build.sh +16 -0
- package/config/index.js +20 -0
- package/jsconfig.json +7 -0
- package/kuasheng-sdk/index.js +80 -0
- package/kuasheng-sdk/lib/assets.js +304 -0
- package/kuasheng-sdk/lib/context.js +199 -0
- package/kuasheng-sdk/lib/layout.js +346 -0
- package/kuasheng-sdk/lib/location.js +46 -0
- package/kuasheng-sdk/lib/media.js +342 -0
- package/kuasheng-sdk/lib/navigation.js +30 -0
- package/kuasheng-sdk/lib/request.js +76 -0
- package/kuasheng-sdk/lib/system.js +190 -0
- package/kuasheng-sdk/lib/userinfo.js +98 -0
- package/kuasheng-sdk/util/check.js +102 -0
- package/kuasheng-sdk/util/config.js +47 -0
- package/kuasheng-sdk/util/device.js +25 -0
- package/kuasheng-sdk/util/error.js +19 -0
- package/kuasheng-sdk/util/funtional.js +153 -0
- package/kuasheng-sdk/util/mixin.js +36 -0
- package/kuasheng-sdk/util/requestUtil.js +41 -0
- package/kuasheng-sdk/util/response.js +33 -0
- package/kuasheng-sdk/util/warn.js +35 -0
- package/kuasheng-ui/CHANGELOG.md +9 -0
- package/kuasheng-ui/components/card.vue +57 -0
- package/kuasheng-ui/components/ks-area-select/README.md +43 -0
- package/kuasheng-ui/components/ks-area-select/area-picker.vue +554 -0
- package/kuasheng-ui/components/ks-area-select/area-search.vue +363 -0
- package/kuasheng-ui/components/ks-area-select/areas-pop.vue +56 -0
- package/kuasheng-ui/components/ks-area-select/common.js +183 -0
- package/kuasheng-ui/components/ks-area-select/index.vue +355 -0
- package/kuasheng-ui/components/ks-area-select/mixins.js +216 -0
- package/kuasheng-ui/components/ks-area-single-select/README.md +50 -0
- package/kuasheng-ui/components/ks-area-single-select/hot-city.js +45 -0
- package/kuasheng-ui/components/ks-area-single-select/index.vue +324 -0
- package/kuasheng-ui/components/ks-calendar/index.vue +269 -0
- package/kuasheng-ui/components/ks-call-phone/call-tips.vue +70 -0
- package/kuasheng-ui/components/ks-call-phone/call.vue +178 -0
- package/kuasheng-ui/components/ks-call-phone/index.js +48 -0
- package/kuasheng-ui/components/ks-call-phone/index.vue +131 -0
- package/kuasheng-ui/components/ks-call-phone//345/221/274/345/217/253/347/273/204/344/273/266.md +0 -0
- package/kuasheng-ui/components/ks-date-picker/README.md +23 -0
- package/kuasheng-ui/components/ks-date-picker/date-picker-bottom.vue +123 -0
- package/kuasheng-ui/components/ks-date-picker/date-picker-dropdown.vue +80 -0
- package/kuasheng-ui/components/ks-date-picker/date-picker-right.vue +87 -0
- package/kuasheng-ui/components/ks-date-picker/date-picker-top.vue +88 -0
- package/kuasheng-ui/components/ks-date-picker/date-picker.js +15 -0
- package/kuasheng-ui/components/ks-date-picker/date-range-select.vue +92 -0
- package/kuasheng-ui/components/ks-date-picker/date-select.vue +65 -0
- package/kuasheng-ui/components/ks-date-picker/date-week-month.vue +131 -0
- package/kuasheng-ui/components/ks-date-picker/index.js +12 -0
- package/kuasheng-ui/components/ks-date-picker/mixin.js +92 -0
- package/kuasheng-ui/components/ks-date-picker/month-range-select.vue +129 -0
- package/kuasheng-ui/components/ks-date-picker/month-select.vue +85 -0
- package/kuasheng-ui/components/ks-date-picker/quarter-select.vue +94 -0
- package/kuasheng-ui/components/ks-date-picker/style.less +121 -0
- package/kuasheng-ui/components/ks-date-picker/utils.js +109 -0
- package/kuasheng-ui/components/ks-date-picker/week-select.vue +99 -0
- package/kuasheng-ui/components/ks-decrypt/index.vue +159 -0
- package/kuasheng-ui/components/ks-employee/README.md +78 -0
- package/kuasheng-ui/components/ks-employee/employee-input.vue +173 -0
- package/kuasheng-ui/components/ks-employee/employee-list.vue +662 -0
- package/kuasheng-ui/components/ks-employee/employee-popup.vue +197 -0
- package/kuasheng-ui/components/ks-employee/employee-search.vue +250 -0
- package/kuasheng-ui/components/ks-employee/employee-selected.vue +173 -0
- package/kuasheng-ui/components/ks-employee/index.js +17 -0
- package/kuasheng-ui/components/ks-employee/package-lock.json +5 -0
- package/kuasheng-ui/components/ks-employee/package.json +15 -0
- package/kuasheng-ui/components/ks-employee/yarn.lock +4 -0
- package/kuasheng-ui/components/ks-field-money/index.js +8 -0
- package/kuasheng-ui/components/ks-field-money/index.vue +212 -0
- package/kuasheng-ui/components/ks-field-money/package.json +11 -0
- package/kuasheng-ui/components/ks-field-money/utils.js +65 -0
- package/kuasheng-ui/components/ks-field-money//351/207/221/351/242/235/350/275/254/346/215/242/345/231/250.md +0 -0
- package/kuasheng-ui/components/ks-history-search/history-input.vue +131 -0
- package/kuasheng-ui/components/ks-history-search/history-list.vue +188 -0
- package/kuasheng-ui/components/ks-history-search/img/delete.png +0 -0
- package/kuasheng-ui/components/ks-history-search/index.js +9 -0
- package/kuasheng-ui/components/ks-history-search/index.vue +125 -0
- package/kuasheng-ui/components/ks-history-search/package-lock.json +5 -0
- package/kuasheng-ui/components/ks-history-search/package.json +15 -0
- package/kuasheng-ui/components/ks-history-search/utils.js +35 -0
- package/kuasheng-ui/components/ks-input-search/index.vue +106 -0
- package/kuasheng-ui/components/ks-list/index.vue +75 -0
- package/kuasheng-ui/components/ks-loading/index.js +16 -0
- package/kuasheng-ui/components/ks-month/index.vue +47 -0
- package/kuasheng-ui/components/ks-month/package.json +3 -0
- package/kuasheng-ui/components/ks-month/range.vue +172 -0
- package/kuasheng-ui/components/ks-month/single.vue +136 -0
- package/kuasheng-ui/components/ks-month/style.less +125 -0
- package/kuasheng-ui/components/ks-month/utils.js +35 -0
- package/kuasheng-ui/components/ks-nav/index.vue +264 -0
- package/kuasheng-ui/components/ks-nav-bar.js +35 -0
- package/kuasheng-ui/components/ks-org/ks-org-tree.vue +247 -0
- package/kuasheng-ui/components/ks-org/ks-popup-tree.vue +154 -0
- package/kuasheng-ui/components/ks-org/ks-tree-input.vue +240 -0
- package/kuasheng-ui/components/ks-org/ks-tree-node.vue +94 -0
- package/kuasheng-ui/components/ks-org/ks-tree.vue +229 -0
- package/kuasheng-ui/components/ks-org/utils.js +54 -0
- package/kuasheng-ui/components/ks-popover/index.vue +457 -0
- package/kuasheng-ui/components/ks-popover/mixin.js +28 -0
- package/kuasheng-ui/components/ks-popover/utils.js +60 -0
- package/kuasheng-ui/components/ks-pull-refresh/index.vue +43 -0
- package/kuasheng-ui/components/ks-quarter/index.vue +256 -0
- package/kuasheng-ui/components/ks-table/README.md +103 -0
- package/kuasheng-ui/components/ks-table/cell.vue +31 -0
- package/kuasheng-ui/components/ks-table/index.js +8 -0
- package/kuasheng-ui/components/ks-table/index.less +486 -0
- package/kuasheng-ui/components/ks-table/index.vue +1088 -0
- package/kuasheng-ui/components/ks-table/package.json +12 -0
- package/kuasheng-ui/components/ks-table/release.md +7 -0
- package/kuasheng-ui/components/ks-toast.js +35 -0
- package/kuasheng-ui/components/ks-upload/index.vue +174 -0
- package/kuasheng-ui/components/ks-user-access.vue +229 -0
- package/kuasheng-ui/components/no-data/README.md +45 -0
- package/kuasheng-ui/components/no-data/image.js +1 -0
- package/kuasheng-ui/components/no-data/index.vue +83 -0
- package/kuasheng-ui/components/notice-bar.vue +16 -0
- package/kuasheng-ui/components/steps.js +11 -0
- package/kuasheng-ui/components/tabs.vue +40 -0
- package/kuasheng-ui/index.js +239 -0
- package/kuasheng-ui/patch/datetime-picker/datetimePicker.md +0 -0
- package/kuasheng-ui/patch/datetime-picker/index.js +46 -0
- package/kuasheng-ui/patch/datetime-picker/utils.js +78 -0
- package/kuasheng-ui/patch/field/field.md +1 -0
- package/kuasheng-ui/patch/field/index.js +122 -0
- package/kuasheng-ui/patch/field/utils.js +36 -0
- package/kuasheng-ui/patch/form/form.md +7 -0
- package/kuasheng-ui/patch/form/index.js +106 -0
- package/kuasheng-ui/patch/index.js +12 -0
- package/kuasheng-ui/patch/pagination/index.js +78 -0
- package/kuasheng-ui/style/animation-ui.less +31 -0
- package/kuasheng-ui/style/font/number/font-number1.otf +0 -0
- package/kuasheng-ui/style/font/number/font-number2.ttf +0 -0
- package/kuasheng-ui/style/images/checked.svg +1 -0
- package/kuasheng-ui/style/images/success.svg +1 -0
- package/kuasheng-ui/style/index.less +6 -0
- package/kuasheng-ui/style/kuasheng-ui.less +207 -0
- package/kuasheng-ui/style/reset-vant.less +307 -0
- package/kuasheng-ui/style/vant-var.less +138 -0
- package/kuasheng-ui/utils/apis.js +17 -0
- package/kuasheng-ui/utils/axios-adapter.js +47 -0
- package/kuasheng-ui/utils/bem.js +39 -0
- package/kuasheng-ui/utils/bus.js +97 -0
- package/kuasheng-ui/utils/common.js +88 -0
- package/kuasheng-ui/utils/decrypt/config.js +12 -0
- package/kuasheng-ui/utils/decrypt/decrypt-api.js +139 -0
- package/kuasheng-ui/utils/decrypt/index.js +6 -0
- package/kuasheng-ui/utils/decrypt/mask.js +36 -0
- package/kuasheng-ui/utils/decrypt/virtual.js +44 -0
- package/kuasheng-ui/utils/directive.js +57 -0
- package/kuasheng-ui/utils/directive.md +23 -0
- package/kuasheng-ui/utils/drcheck-plugin.js +219 -0
- package/kuasheng-ui/utils/error-plugin.js +88 -0
- package/kuasheng-ui/utils/filter.js +149 -0
- package/kuasheng-ui/utils/http-interceptors.js +18 -0
- package/kuasheng-ui/utils/http.js +140 -0
- package/kuasheng-ui/utils/index.js +5 -0
- package/kuasheng-ui/utils/init-event.js +20 -0
- package/kuasheng-ui/utils/log.js +309 -0
- package/kuasheng-ui/utils/token.js +9 -0
- package/kuasheng-ui/utils/type.js +45 -0
- package/kuasheng-ui/utils/validate.js +20 -0
- package/kuasheng-ui/utils/watermark.js +67 -0
- package/kuasheng-ui/version.js +1 -0
- package/ky-apm/client.js +37 -0
- package/ky-apm/customHttp.js +38 -0
- package/ky-apm/index.js +68 -0
- package/ky-apm/plugins/performance.js +84 -0
- package/ky-apm/plugins/self-error.js +26 -0
- package/ky-apm/warn-log.js +3 -0
- package/package.json +81 -10
- package/plugin/ks-chii-webpack-html/index.js +53 -0
- package/plugin/ks-chii-webpack-html/package.json +16 -0
- package/postcss.config.js +15 -0
- package/public/capsule-positon.js +50 -0
- package/public/fonts/DingTalkJinBuTi.ttf +0 -0
- package/public/framework/axios@0.19.0.min.js +9 -0
- package/public/framework/fastclick@1.0.6.min.js +1 -0
- package/public/framework/iconfont/iconfont.css +91 -0
- package/public/framework/iconfont/iconfont.js +1 -0
- package/public/framework/iconfont/iconfont.json +142 -0
- package/public/framework/iconfont/iconfont.ttf +0 -0
- package/public/framework/iconfont/iconfont.woff +0 -0
- package/public/framework/iconfont/iconfont.woff2 +0 -0
- package/public/framework/vant@2.5.6.min.js +7 -0
- package/public/framework/vue-router@3.1.3.min.js +6 -0
- package/public/framework/vue@2.6.10.runtime.min.js +6 -0
- package/public/framework/vuex@3.1.1.min.js +6 -0
- package/public/index.html +260 -0
- package/public/ks@3.0.8.umd.min.js +1 -0
- package/public/ksui@4.0.27.umd.min.js +10 -0
- package/public/status-bar-preset.js +39 -0
- package/{index.js → qt-npm/index.js} +3 -3
- package/qt-npm/package.json +13 -0
- package/src/App.vue +204 -0
- package/src/README.md +15 -0
- package/src/common/README.md +94 -0
- package/src/common/http/axios-adapter.js +47 -0
- package/src/common/http/common.js +88 -0
- package/src/common/http/http-interceptors.js +18 -0
- package/src/common/http/http-lock.js +45 -0
- package/src/common/http/index.js +163 -0
- package/src/common/http/token.js +9 -0
- package/src/common/styles/font/AlibabaSans102Ver2-Md.ttf +0 -0
- package/src/common/styles/font.less +12 -0
- package/src/common/styles/variables.less +43 -0
- package/src/common/utils/index.js +1 -0
- package/src/common/utils/platform/README.md +1 -0
- package/src/common/utils/platform/android/.gitkeep +0 -0
- package/src/common/utils/platform/core/index.js +24 -0
- package/src/common/utils/platform/index.js +164 -0
- package/src/common/utils/platform/ios/.gitkeep +0 -0
- package/src/common/utils/platform/subscribe/helper.js +38 -0
- package/src/common/utils/platform/subscribe/index.js +204 -0
- package/src/common/utils/platform/subscribe/table-animation.js +75 -0
- package/src/config/index.js +31 -0
- package/src/config.js +1 -0
- package/src/main.js +73 -0
- package/src/router.js +52 -0
- package/src/view/home/config.js +101 -0
- package/src/view/home/demo1.vue +223 -0
- package/src/view/home/demo2.vue +124 -0
- package/src/view/home/demo3.vue +51 -0
- package/src/view/home/demo4.vue +140 -0
- package/src/view/home/index.vue +97 -0
- package/src/view/home/query-table/README.md +45 -0
- package/src/view/home/query-table/api/index.js +12 -0
- package/src/view/home/query-table/assets/horizontal-back.svg +1 -0
- package/src/view/home/query-table/components/pe-table/cell.js +181 -0
- package/src/view/home/query-table/components/pe-table/collapse.js +334 -0
- package/src/view/home/query-table/components/pe-table/empty.vue +48 -0
- package/src/view/home/query-table/components/pe-table/header.js +328 -0
- package/src/view/home/query-table/components/pe-table/images/abnormal.png +0 -0
- package/src/view/home/query-table/components/pe-table/images/empty.png +0 -0
- package/src/view/home/query-table/components/pe-table/images/fold.svg +1 -0
- package/src/view/home/query-table/components/pe-table/images/sort.svg +1 -0
- package/src/view/home/query-table/components/pe-table/images/sorting.svg +1 -0
- package/src/view/home/query-table/components/pe-table/images/unfold.svg +1 -0
- package/src/view/home/query-table/components/pe-table/index.vue +847 -0
- package/src/view/home/query-table/components/pe-table/load-more.js +46 -0
- package/src/view/home/query-table/components/pe-table/props/index.js +193 -0
- package/src/view/home/query-table/components/pe-table/row.vue +118 -0
- package/src/view/home/query-table/components/pe-table/scrollbar.js +424 -0
- package/src/view/home/query-table/components/pe-table/stretch-damping.js +112 -0
- package/src/view/home/query-table/components/pe-table/style/cell.less +89 -0
- package/src/view/home/query-table/components/pe-table/style/empty.less +48 -0
- package/src/view/home/query-table/components/pe-table/style/header.less +141 -0
- package/src/view/home/query-table/components/pe-table/style/index.less +88 -0
- package/src/view/home/query-table/components/pe-table/style/load-more.less +61 -0
- package/src/view/home/query-table/components/pe-table/style/row.less +6 -0
- package/src/view/home/query-table/components/pe-table/table-loading.vue +120 -0
- package/src/view/home/query-table/components/pe-table/table-total.vue +57 -0
- package/src/view/home/query-table/components/pe-table/utils/animate.js +80 -0
- package/src/view/home/query-table/components/pe-table/utils/columns.js +290 -0
- package/src/view/home/query-table/components/pe-table/utils/data.js +12 -0
- package/src/view/home/query-table/components/pe-table/utils/fixed.js +69 -0
- package/src/view/home/query-table/components/pe-table/utils/formatter.js +327 -0
- package/src/view/home/query-table/components/pe-table/utils/render-cells.js +424 -0
- package/src/view/home/query-table/components/pe-table/utils/slot.js +28 -0
- package/src/view/home/query-table/components/pe-table/utils/tools.js +84 -0
- package/src/view/home/query-table/components/pe-table/utils/touch-scroll.js +417 -0
- package/src/view/home/query-table/components/query-table/index.vue +497 -0
- package/src/view/home/query-table/components/query-table/mixins/column-mixin.js +102 -0
- package/src/view/home/query-table/components/query-table/mixins/column-setting.js +143 -0
- package/src/view/home/query-table/components/query-table/mixins/data-mixin.js +519 -0
- package/src/view/home/query-table/components/query-table/mixins/pagination-mixin.js +26 -0
- package/src/view/home/query-table/components/query-table/mixins/table-fixed.js +130 -0
- package/src/view/home/query-table/components/query-table/mixins/table-horizontal.js +119 -0
- package/src/view/home/query-table/components/table-horizontal.vue +99 -0
- package/src/view/home/query-table/components/table-pagination.vue +32 -0
- package/src/view/home/query-table/components/table-settings/assets/arrpw-up.svg +1 -0
- package/src/view/home/query-table/components/table-settings/assets/disabled-down.svg +1 -0
- package/src/view/home/query-table/components/table-settings/assets/disabled-up.svg +1 -0
- package/src/view/home/query-table/components/table-settings/assets/down.svg +1 -0
- package/src/view/home/query-table/components/table-settings/assets/up.svg +1 -0
- package/src/view/home/query-table/components/table-settings/index.less +294 -0
- package/src/view/home/query-table/components/table-settings/index.vue +260 -0
- package/src/view/home/query-table/components/table-settings/settings.vue +479 -0
- package/src/view/home/query-table/components/table-settings/test.js +626 -0
- package/src/view/home/query-table/components/table-settings//344/270/252/346/200/247/350/256/276/347/275/256.md +0 -0
- package/src/view/home/query-table/components/tooltip.js +124 -0
- package/src/view/home/query-table/hooks/use-cache-promise.js +27 -0
- package/src/view/home/query-table/hooks/use-column-config.js +190 -0
- package/src/view/home/query-table/hooks/use-encryption.js +0 -0
- package/src/view/home/query-table/hooks/use-generic-search.js +95 -0
- package/src/view/home/query-table/index.js +7 -0
- package/src/view/home/query-table/store/column-store.js +0 -0
- package/src/view/home/query-table/styles/table.less +24 -0
- package/src/view/home/query-table/utils/column.js +36 -0
- package/src/view/home/query-table/utils/config.js +12 -0
- package/src/view/home/query-table/utils/encryption.js +32 -0
- package/src/view/home/query-table/utils/http.js +1 -0
- package/src/view/home/query-table/utils/localStorage.js +35 -0
- package/src/view/home//351/246/226/351/241/265.md +0 -0
- package/src/web.js +99 -0
- package/vue.config.js +131 -0
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import {warnLog} from '../warn-log';
|
|
2
|
+
export default class PerformancePlugin {
|
|
3
|
+
// apm初始化
|
|
4
|
+
constructor(client, selfError) {
|
|
5
|
+
this.client = client
|
|
6
|
+
this.selfError = selfError
|
|
7
|
+
this.config = client.getConfig()
|
|
8
|
+
this.init()
|
|
9
|
+
}
|
|
10
|
+
init() {
|
|
11
|
+
// todo: 埋点和错误日志和性能采集需要在初始化派发
|
|
12
|
+
try {
|
|
13
|
+
if(!window.performance){
|
|
14
|
+
warnLog('初始化失败:当前环境不支持performance API')
|
|
15
|
+
return false
|
|
16
|
+
}
|
|
17
|
+
if (document.readyState === 'complete') {
|
|
18
|
+
// 立即执行性能采集
|
|
19
|
+
this.collectPerformance()
|
|
20
|
+
} else {
|
|
21
|
+
window.addEventListener('load', () =>{
|
|
22
|
+
// 在onload中监听执行性能采集
|
|
23
|
+
setTimeout(() => {
|
|
24
|
+
this.collectPerformance()
|
|
25
|
+
}, 0)
|
|
26
|
+
})
|
|
27
|
+
}
|
|
28
|
+
} catch (error) {
|
|
29
|
+
warnLog(error)
|
|
30
|
+
this.selfError.error(error)
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
// 性能数据采集
|
|
34
|
+
collectPerformance () {
|
|
35
|
+
try {
|
|
36
|
+
// 判断性能数据是否达到采集要求
|
|
37
|
+
var duration = performance.getEntries()[0].toJSON().duration
|
|
38
|
+
if (duration && duration > this.config.performance.durationTime) {
|
|
39
|
+
var entries = performance.getEntries().map(t => t.toJSON())
|
|
40
|
+
var content = JSON.stringify(entries, function(k,v) {
|
|
41
|
+
if (['serverTiming'].includes(k) || v === '' || v === 0){
|
|
42
|
+
v = undefined
|
|
43
|
+
}
|
|
44
|
+
if (typeof v === 'number') {
|
|
45
|
+
v = v.toFixed(2)
|
|
46
|
+
}
|
|
47
|
+
return v
|
|
48
|
+
})
|
|
49
|
+
var log = {
|
|
50
|
+
content: content,
|
|
51
|
+
duration: duration
|
|
52
|
+
}
|
|
53
|
+
this.handleData(log)
|
|
54
|
+
}
|
|
55
|
+
} catch (error) {
|
|
56
|
+
warnLog(error)
|
|
57
|
+
this.selfError.error(error)
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
// 数据组装
|
|
61
|
+
handleData (log) {
|
|
62
|
+
try {
|
|
63
|
+
var collectData = {
|
|
64
|
+
logId: log.logId,
|
|
65
|
+
logDetail: log.content,
|
|
66
|
+
logType: this.config.logType,
|
|
67
|
+
app: this.config.app,
|
|
68
|
+
module: this.config.module,
|
|
69
|
+
navigator: this.config.userAgent,
|
|
70
|
+
userId: this.config.userId,
|
|
71
|
+
userName: this.config.userName,
|
|
72
|
+
url: window.location.href,
|
|
73
|
+
ext1: log.duration,
|
|
74
|
+
}
|
|
75
|
+
if (this.config.customReportData && typeof this.config.customReportData === 'function') {
|
|
76
|
+
collectData = this.config.customReportData(collectData)
|
|
77
|
+
}
|
|
78
|
+
this.client.reportData(collectData)
|
|
79
|
+
} catch (error) {
|
|
80
|
+
warnLog(error)
|
|
81
|
+
this.selfError.error(error)
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
export default class SelfError {
|
|
2
|
+
constructor(client, config) {
|
|
3
|
+
this.client = client
|
|
4
|
+
this.config = config
|
|
5
|
+
}
|
|
6
|
+
error(data) {
|
|
7
|
+
// apm插件自己的错误信息上报
|
|
8
|
+
try {
|
|
9
|
+
var errorDetail = JSON.stringify(data, Object.getOwnPropertyNames(data), 2)
|
|
10
|
+
const errorData = {
|
|
11
|
+
logId: this.config.logId,
|
|
12
|
+
logDetail: errorDetail || '',
|
|
13
|
+
logType: 'apmError',
|
|
14
|
+
app: this.config.app,
|
|
15
|
+
module: this.config.module,
|
|
16
|
+
navigator: this.config.navigator,
|
|
17
|
+
userId: this.config.userId,
|
|
18
|
+
userName: this.config.userName,
|
|
19
|
+
url: window.location.href,
|
|
20
|
+
}
|
|
21
|
+
this.client.reportData(errorData)
|
|
22
|
+
} catch (error) {
|
|
23
|
+
console.log(error)
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,84 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kyfe/ks-query-table",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.0.22",
|
|
4
|
+
"private": false,
|
|
5
5
|
"scripts": {
|
|
6
|
-
"
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
6
|
+
"dev": "vue-cli-service serve --mode dev",
|
|
7
|
+
"serve": "vue-cli-service serve",
|
|
8
|
+
"serve:dev": "vue-cli-service serve --mode dev",
|
|
9
|
+
"serve:stg": "vue-cli-service serve --mode stg",
|
|
10
|
+
"serve:uat": "vue-cli-service serve --mode uat --debug",
|
|
11
|
+
"serve:gray": "vue-cli-service serve --mode gray --debug",
|
|
12
|
+
"serve:prod": "vue-cli-service serve --mode prod",
|
|
13
|
+
"build": "vue-cli-service build",
|
|
14
|
+
"lint": "vue-cli-service lint",
|
|
15
|
+
"build:ui": "sh build.sh ksui",
|
|
16
|
+
"build:sdk": "sh build.sh ks",
|
|
17
|
+
"build:apm": "sh build-apm.sh",
|
|
18
|
+
"build:rp": "vue-cli-service build --report",
|
|
19
|
+
"buildui": "vue-cli-service build --target lib --name ksui --formats umd-min --filename ksui kuasheng-ui/index.js",
|
|
20
|
+
"buildqt": "vue-cli-service build --target lib --name ks-query-table ./src/view/home/query-table/index.js"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"@babel/plugin-proposal-optional-chaining-assign": "^7.25.9",
|
|
24
|
+
"@babel/plugin-transform-optional-chaining": "^7.25.9",
|
|
25
|
+
"@kyfe/decrypt": "^0.0.3",
|
|
26
|
+
"@kyfe/ks-employee": "^0.0.3",
|
|
27
|
+
"@kyfe/ks-history-search": "^0.0.1",
|
|
28
|
+
"@kyfe/ks-table": "^1.0.10",
|
|
29
|
+
"@sentry/vue": "7.120.3",
|
|
30
|
+
"@vant/popperjs": "1.3.0",
|
|
31
|
+
"@vespaiach/axios-fetch-adapter": "^0.3.1",
|
|
32
|
+
"animate.css": "^4.1.1",
|
|
33
|
+
"axios": "0.27.2",
|
|
34
|
+
"core-js": "3.40.0",
|
|
35
|
+
"dayjs": "^1.11.11",
|
|
36
|
+
"echarts": "^5.6.0",
|
|
37
|
+
"iscroll": "5.2.0",
|
|
38
|
+
"js-md5": "0.7.3",
|
|
39
|
+
"postcss": "^8.4.49",
|
|
40
|
+
"tcplayer.js": "^5.1.0",
|
|
41
|
+
"tippy.js": "^6.3.7",
|
|
42
|
+
"vant": "2.5.6",
|
|
43
|
+
"vue": "^2.7.0",
|
|
44
|
+
"vuedraggable": "2.24.3"
|
|
45
|
+
},
|
|
46
|
+
"gitHooks": {
|
|
47
|
+
"pre-commit": "vue-cli-service lint"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@babel/core": "^7.26.10",
|
|
51
|
+
"@babel/plugin-syntax-jsx": "^7.25.9",
|
|
52
|
+
"@babel/preset-env": "^7.26.9",
|
|
53
|
+
"@ks-web/chii-webpack-html": "1.0.1",
|
|
54
|
+
"@sentry/webpack-plugin": "^3.3.1",
|
|
55
|
+
"@vue/babel-plugin-transform-vue-jsx": "^1.4.0",
|
|
56
|
+
"@vue/babel-preset-jsx": "^1.4.0",
|
|
57
|
+
"@vue/cli-plugin-babel": "^4.0.0",
|
|
58
|
+
"@vue/cli-plugin-eslint": "^4.0.0",
|
|
59
|
+
"@vue/cli-service": "^4.0.0",
|
|
60
|
+
"babel-eslint": "10.0.1",
|
|
61
|
+
"eslint": "5.16.0",
|
|
62
|
+
"eslint-plugin-vue": "5.0.0",
|
|
63
|
+
"less": "3.10.3",
|
|
64
|
+
"less-loader": "5.0.0",
|
|
65
|
+
"postcss-pxtorem": "^5.0.0",
|
|
66
|
+
"replace-in-file-webpack-plugin": "1.0.6",
|
|
67
|
+
"style-resources-loader": "^1.5.0",
|
|
68
|
+
"vconsole": "^3.3.4",
|
|
69
|
+
"vue-template-compiler": "2.6.10",
|
|
70
|
+
"webpack-bundle-analyzer": "^4.4.2"
|
|
71
|
+
},
|
|
72
|
+
"postcss": {
|
|
73
|
+
"plugins": {
|
|
74
|
+
"autoprefixer": {}
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"browserslist": [
|
|
78
|
+
"> 1%",
|
|
79
|
+
"last 2 versions",
|
|
80
|
+
"not ie <= 8",
|
|
81
|
+
"Android >= 4.1",
|
|
82
|
+
"iOS >= 8"
|
|
83
|
+
]
|
|
84
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
const chii = require('chii')
|
|
2
|
+
const ansiColor = require('licia/ansiColor');
|
|
3
|
+
|
|
4
|
+
const os = require('os')
|
|
5
|
+
class ChiiWebpackPlugin {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
this.port = options
|
|
8
|
+
this.ipAddress = this.getAddress()
|
|
9
|
+
}
|
|
10
|
+
apply(compiler) {
|
|
11
|
+
let self = this
|
|
12
|
+
compiler.hooks.compilation.tap('ChiiWebpackPlugin',
|
|
13
|
+
(compilation) => {
|
|
14
|
+
compilation.plugin(
|
|
15
|
+
"html-webpack-plugin-before-html-processing",
|
|
16
|
+
function(htmlPluginData) {
|
|
17
|
+
// 返回修改后的结果
|
|
18
|
+
let resultHTML = htmlPluginData.html.replace('<head>', `<head>\n<script src='//${self.ipAddress}:${self.port}/target.js'></script>`)
|
|
19
|
+
htmlPluginData.html = resultHTML;
|
|
20
|
+
chii.start({
|
|
21
|
+
port: self.port
|
|
22
|
+
})
|
|
23
|
+
}
|
|
24
|
+
)
|
|
25
|
+
}
|
|
26
|
+
)
|
|
27
|
+
compiler.hooks.done.tap('ChiiWebpackPlugin', () => {
|
|
28
|
+
setTimeout(() => {
|
|
29
|
+
console.log(`在线调试工具chii启动成功,调试地址: ${ansiColor.bgYellow(`http://localhost:${self.port}`)}`)
|
|
30
|
+
}, 100);
|
|
31
|
+
})
|
|
32
|
+
}
|
|
33
|
+
getAddress() {
|
|
34
|
+
const ipList = Object.values(os.networkInterfaces())
|
|
35
|
+
.flatMap((nInterface) => (nInterface === null || nInterface === undefined) ? [] : nInterface)
|
|
36
|
+
.filter(
|
|
37
|
+
(detail) =>
|
|
38
|
+
detail &&
|
|
39
|
+
detail.address &&
|
|
40
|
+
// Node < v18
|
|
41
|
+
((typeof detail.family === 'string' && detail.family === 'IPv4') ||
|
|
42
|
+
// Node >= v18
|
|
43
|
+
(typeof detail.family === 'number' && detail.family === 4))
|
|
44
|
+
)
|
|
45
|
+
for (let i = 0; i < ipList.length; i++) {
|
|
46
|
+
const item = ipList[i]
|
|
47
|
+
if (item.address !== '127.0.0.1' && !item.internal) {
|
|
48
|
+
return item.address
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
module.exports = ChiiWebpackPlugin
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ks-web/chii-webpack-html",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "chiiWebpackHtml",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"keywords": [],
|
|
7
|
+
"author": "",
|
|
8
|
+
"license": "ISC",
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"chii": "1.8.0"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
css: {
|
|
3
|
+
loaderOptions: {
|
|
4
|
+
postcss: {
|
|
5
|
+
plugins: [
|
|
6
|
+
require('postcss-pxtorem')({
|
|
7
|
+
rootValue: 37.5, // 设计稿宽度除以10
|
|
8
|
+
propList: ['*'], // 需要转换的属性,这里选择转换所有属性
|
|
9
|
+
// selectorBlackList: ['van'], // 不转换的选择器
|
|
10
|
+
}),
|
|
11
|
+
],
|
|
12
|
+
},
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
// 胶囊位置为改变的版本号
|
|
2
|
+
const capsuleChangeVersion = '1.0.299'
|
|
3
|
+
|
|
4
|
+
// 从UA中获取指定版本号
|
|
5
|
+
function extractVersionFromUA(prefix) {
|
|
6
|
+
if (!prefix) return null;
|
|
7
|
+
const ua = navigator.userAgent
|
|
8
|
+
// 使用正则表达式匹配前缀后的版本号
|
|
9
|
+
const regex = new RegExp(`${prefix}/([\\d\\.]+)`);
|
|
10
|
+
const match = ua.match(regex);
|
|
11
|
+
|
|
12
|
+
// 如果匹配成功,返回版本号部分
|
|
13
|
+
return match ? match[1] : null;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
// 当前海声轻应用版本号
|
|
17
|
+
const version = extractVersionFromUA("kye_ks");
|
|
18
|
+
console.log(version);
|
|
19
|
+
|
|
20
|
+
// 判断versionB是否大于versionA
|
|
21
|
+
function isVersionGreater(versionA, versionB) {
|
|
22
|
+
if (!versionA || !versionB) return false;
|
|
23
|
+
|
|
24
|
+
// 将版本号按 '.' 分割为数组,并转换为数字
|
|
25
|
+
const partsA = versionA.split('.').map(Number);
|
|
26
|
+
const partsB = versionB.split('.').map(Number);
|
|
27
|
+
|
|
28
|
+
// 获取最长的版本号长度
|
|
29
|
+
const maxLength = Math.max(partsA.length, partsB.length);
|
|
30
|
+
|
|
31
|
+
// 补全较短的版本号数组,防止越界
|
|
32
|
+
for (let i = 0; i < maxLength; i++) {
|
|
33
|
+
const numA = partsA[i] || 0;
|
|
34
|
+
const numB = partsB[i] || 0;
|
|
35
|
+
|
|
36
|
+
if (numA > numB) return true; // A 大于 B
|
|
37
|
+
if (numA < numB) return false; // A 小于 B
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
return true; // 版本号相等时返回 true
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
// 当前版本号是否大于等于指定版本号
|
|
46
|
+
const isMoreThan = isVersionGreater(version, capsuleChangeVersion)
|
|
47
|
+
console.log('isMoreThan', isMoreThan)
|
|
48
|
+
|
|
49
|
+
window.__pe_capsule_position__ = isMoreThan ? '3.2rem' : '1.73333rem'
|
|
50
|
+
document.documentElement.style.setProperty('--pe-capsule-positon', window.__pe_capsule_position__)
|
|
Binary file
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/* axios v0.19.0 | (c) 2019 by Matt Zabriskie */
|
|
2
|
+
!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.axios=t():e.axios=t()}(this,function(){return function(e){function t(r){if(n[r])return n[r].exports;var o=n[r]={exports:{},id:r,loaded:!1};return e[r].call(o.exports,o,o.exports,t),o.loaded=!0,o.exports}var n={};return t.m=e,t.c=n,t.p="",t(0)}([function(e,t,n){e.exports=n(1)},function(e,t,n){"use strict";function r(e){var t=new i(e),n=s(i.prototype.request,t);return o.extend(n,i.prototype,t),o.extend(n,t),n}var o=n(2),s=n(3),i=n(5),a=n(22),u=n(11),c=r(u);c.Axios=i,c.create=function(e){return r(a(c.defaults,e))},c.Cancel=n(23),c.CancelToken=n(24),c.isCancel=n(10),c.all=function(e){return Promise.all(e)},c.spread=n(25),e.exports=c,e.exports.default=c},function(e,t,n){"use strict";function r(e){return"[object Array]"===j.call(e)}function o(e){return"[object ArrayBuffer]"===j.call(e)}function s(e){return"undefined"!=typeof FormData&&e instanceof FormData}function i(e){var t;return t="undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(e):e&&e.buffer&&e.buffer instanceof ArrayBuffer}function a(e){return"string"==typeof e}function u(e){return"number"==typeof e}function c(e){return"undefined"==typeof e}function f(e){return null!==e&&"object"==typeof e}function p(e){return"[object Date]"===j.call(e)}function d(e){return"[object File]"===j.call(e)}function l(e){return"[object Blob]"===j.call(e)}function h(e){return"[object Function]"===j.call(e)}function m(e){return f(e)&&h(e.pipe)}function y(e){return"undefined"!=typeof URLSearchParams&&e instanceof URLSearchParams}function g(e){return e.replace(/^\s*/,"").replace(/\s*$/,"")}function x(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product&&"NativeScript"!==navigator.product&&"NS"!==navigator.product)&&("undefined"!=typeof window&&"undefined"!=typeof document)}function v(e,t){if(null!==e&&"undefined"!=typeof e)if("object"!=typeof e&&(e=[e]),r(e))for(var n=0,o=e.length;n<o;n++)t.call(null,e[n],n,e);else for(var s in e)Object.prototype.hasOwnProperty.call(e,s)&&t.call(null,e[s],s,e)}function w(){function e(e,n){"object"==typeof t[n]&&"object"==typeof e?t[n]=w(t[n],e):t[n]=e}for(var t={},n=0,r=arguments.length;n<r;n++)v(arguments[n],e);return t}function b(){function e(e,n){"object"==typeof t[n]&&"object"==typeof e?t[n]=b(t[n],e):"object"==typeof e?t[n]=b({},e):t[n]=e}for(var t={},n=0,r=arguments.length;n<r;n++)v(arguments[n],e);return t}function E(e,t,n){return v(t,function(t,r){n&&"function"==typeof t?e[r]=S(t,n):e[r]=t}),e}var S=n(3),R=n(4),j=Object.prototype.toString;e.exports={isArray:r,isArrayBuffer:o,isBuffer:R,isFormData:s,isArrayBufferView:i,isString:a,isNumber:u,isObject:f,isUndefined:c,isDate:p,isFile:d,isBlob:l,isFunction:h,isStream:m,isURLSearchParams:y,isStandardBrowserEnv:x,forEach:v,merge:w,deepMerge:b,extend:E,trim:g}},function(e,t){"use strict";e.exports=function(e,t){return function(){for(var n=new Array(arguments.length),r=0;r<n.length;r++)n[r]=arguments[r];return e.apply(t,n)}}},function(e,t){/*!
|
|
3
|
+
* Determine if an object is a Buffer
|
|
4
|
+
*
|
|
5
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
|
6
|
+
* @license MIT
|
|
7
|
+
*/
|
|
8
|
+
e.exports=function(e){return null!=e&&null!=e.constructor&&"function"==typeof e.constructor.isBuffer&&e.constructor.isBuffer(e)}},function(e,t,n){"use strict";function r(e){this.defaults=e,this.interceptors={request:new i,response:new i}}var o=n(2),s=n(6),i=n(7),a=n(8),u=n(22);r.prototype.request=function(e){"string"==typeof e?(e=arguments[1]||{},e.url=arguments[0]):e=e||{},e=u(this.defaults,e),e.method=e.method?e.method.toLowerCase():"get";var t=[a,void 0],n=Promise.resolve(e);for(this.interceptors.request.forEach(function(e){t.unshift(e.fulfilled,e.rejected)}),this.interceptors.response.forEach(function(e){t.push(e.fulfilled,e.rejected)});t.length;)n=n.then(t.shift(),t.shift());return n},r.prototype.getUri=function(e){return e=u(this.defaults,e),s(e.url,e.params,e.paramsSerializer).replace(/^\?/,"")},o.forEach(["delete","get","head","options"],function(e){r.prototype[e]=function(t,n){return this.request(o.merge(n||{},{method:e,url:t}))}}),o.forEach(["post","put","patch"],function(e){r.prototype[e]=function(t,n,r){return this.request(o.merge(r||{},{method:e,url:t,data:n}))}}),e.exports=r},function(e,t,n){"use strict";function r(e){return encodeURIComponent(e).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}var o=n(2);e.exports=function(e,t,n){if(!t)return e;var s;if(n)s=n(t);else if(o.isURLSearchParams(t))s=t.toString();else{var i=[];o.forEach(t,function(e,t){null!==e&&"undefined"!=typeof e&&(o.isArray(e)?t+="[]":e=[e],o.forEach(e,function(e){o.isDate(e)?e=e.toISOString():o.isObject(e)&&(e=JSON.stringify(e)),i.push(r(t)+"="+r(e))}))}),s=i.join("&")}if(s){var a=e.indexOf("#");a!==-1&&(e=e.slice(0,a)),e+=(e.indexOf("?")===-1?"?":"&")+s}return e}},function(e,t,n){"use strict";function r(){this.handlers=[]}var o=n(2);r.prototype.use=function(e,t){return this.handlers.push({fulfilled:e,rejected:t}),this.handlers.length-1},r.prototype.eject=function(e){this.handlers[e]&&(this.handlers[e]=null)},r.prototype.forEach=function(e){o.forEach(this.handlers,function(t){null!==t&&e(t)})},e.exports=r},function(e,t,n){"use strict";function r(e){e.cancelToken&&e.cancelToken.throwIfRequested()}var o=n(2),s=n(9),i=n(10),a=n(11),u=n(20),c=n(21);e.exports=function(e){r(e),e.baseURL&&!u(e.url)&&(e.url=c(e.baseURL,e.url)),e.headers=e.headers||{},e.data=s(e.data,e.headers,e.transformRequest),e.headers=o.merge(e.headers.common||{},e.headers[e.method]||{},e.headers||{}),o.forEach(["delete","get","head","post","put","patch","common"],function(t){delete e.headers[t]});var t=e.adapter||a.adapter;return t(e).then(function(t){return r(e),t.data=s(t.data,t.headers,e.transformResponse),t},function(t){return i(t)||(r(e),t&&t.response&&(t.response.data=s(t.response.data,t.response.headers,e.transformResponse))),Promise.reject(t)})}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t,n){return r.forEach(n,function(n){e=n(e,t)}),e}},function(e,t){"use strict";e.exports=function(e){return!(!e||!e.__CANCEL__)}},function(e,t,n){"use strict";function r(e,t){!s.isUndefined(e)&&s.isUndefined(e["Content-Type"])&&(e["Content-Type"]=t)}function o(){var e;return"undefined"!=typeof process&&"[object process]"===Object.prototype.toString.call(process)?e=n(13):"undefined"!=typeof XMLHttpRequest&&(e=n(13)),e}var s=n(2),i=n(12),a={"Content-Type":"application/x-www-form-urlencoded"},u={adapter:o(),transformRequest:[function(e,t){return i(t,"Accept"),i(t,"Content-Type"),s.isFormData(e)||s.isArrayBuffer(e)||s.isBuffer(e)||s.isStream(e)||s.isFile(e)||s.isBlob(e)?e:s.isArrayBufferView(e)?e.buffer:s.isURLSearchParams(e)?(r(t,"application/x-www-form-urlencoded;charset=utf-8"),e.toString()):s.isObject(e)?(r(t,"application/json;charset=utf-8"),JSON.stringify(e)):e}],transformResponse:[function(e){if("string"==typeof e)try{e=JSON.parse(e)}catch(e){}return e}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,validateStatus:function(e){return e>=200&&e<300}};u.headers={common:{Accept:"application/json, text/plain, */*"}},s.forEach(["delete","get","head"],function(e){u.headers[e]={}}),s.forEach(["post","put","patch"],function(e){u.headers[e]=s.merge(a)}),e.exports=u},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){r.forEach(e,function(n,r){r!==t&&r.toUpperCase()===t.toUpperCase()&&(e[t]=n,delete e[r])})}},function(e,t,n){"use strict";var r=n(2),o=n(14),s=n(6),i=n(17),a=n(18),u=n(15);e.exports=function(e){return new Promise(function(t,c){var f=e.data,p=e.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest;if(e.auth){var l=e.auth.username||"",h=e.auth.password||"";p.Authorization="Basic "+btoa(l+":"+h)}if(d.open(e.method.toUpperCase(),s(e.url,e.params,e.paramsSerializer),!0),d.timeout=e.timeout,d.onreadystatechange=function(){if(d&&4===d.readyState&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?i(d.getAllResponseHeaders()):null,r=e.responseType&&"text"!==e.responseType?d.response:d.responseText,s={data:r,status:d.status,statusText:d.statusText,headers:n,config:e,request:d};o(t,c,s),d=null}},d.onabort=function(){d&&(c(u("Request aborted",e,"ECONNABORTED",d)),d=null)},d.onerror=function(){c(u("Network Error",e,null,d)),d=null},d.ontimeout=function(){c(u("timeout of "+e.timeout+"ms exceeded",e,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var m=n(19),y=(e.withCredentials||a(e.url))&&e.xsrfCookieName?m.read(e.xsrfCookieName):void 0;y&&(p[e.xsrfHeaderName]=y)}if("setRequestHeader"in d&&r.forEach(p,function(e,t){"undefined"==typeof f&&"content-type"===t.toLowerCase()?delete p[t]:d.setRequestHeader(t,e)}),e.withCredentials&&(d.withCredentials=!0),e.responseType)try{d.responseType=e.responseType}catch(t){if("json"!==e.responseType)throw t}"function"==typeof e.onDownloadProgress&&d.addEventListener("progress",e.onDownloadProgress),"function"==typeof e.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",e.onUploadProgress),e.cancelToken&&e.cancelToken.promise.then(function(e){d&&(d.abort(),c(e),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(e,t,n){"use strict";var r=n(15);e.exports=function(e,t,n){var o=n.config.validateStatus;!o||o(n.status)?e(n):t(r("Request failed with status code "+n.status,n.config,null,n.request,n))}},function(e,t,n){"use strict";var r=n(16);e.exports=function(e,t,n,o,s){var i=new Error(e);return r(i,t,n,o,s)}},function(e,t){"use strict";e.exports=function(e,t,n,r,o){return e.config=t,n&&(e.code=n),e.request=r,e.response=o,e.isAxiosError=!0,e.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},e}},function(e,t,n){"use strict";var r=n(2),o=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];e.exports=function(e){var t,n,s,i={};return e?(r.forEach(e.split("\n"),function(e){if(s=e.indexOf(":"),t=r.trim(e.substr(0,s)).toLowerCase(),n=r.trim(e.substr(s+1)),t){if(i[t]&&o.indexOf(t)>=0)return;"set-cookie"===t?i[t]=(i[t]?i[t]:[]).concat([n]):i[t]=i[t]?i[t]+", "+n:n}}),i):i}},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){function e(e){var t=e;return n&&(o.setAttribute("href",t),t=o.href),o.setAttribute("href",t),{href:o.href,protocol:o.protocol?o.protocol.replace(/:$/,""):"",host:o.host,search:o.search?o.search.replace(/^\?/,""):"",hash:o.hash?o.hash.replace(/^#/,""):"",hostname:o.hostname,port:o.port,pathname:"/"===o.pathname.charAt(0)?o.pathname:"/"+o.pathname}}var t,n=/(msie|trident)/i.test(navigator.userAgent),o=document.createElement("a");return t=e(window.location.href),function(n){var o=r.isString(n)?e(n):n;return o.protocol===t.protocol&&o.host===t.host}}():function(){return function(){return!0}}()},function(e,t,n){"use strict";var r=n(2);e.exports=r.isStandardBrowserEnv()?function(){return{write:function(e,t,n,o,s,i){var a=[];a.push(e+"="+encodeURIComponent(t)),r.isNumber(n)&&a.push("expires="+new Date(n).toGMTString()),r.isString(o)&&a.push("path="+o),r.isString(s)&&a.push("domain="+s),i===!0&&a.push("secure"),document.cookie=a.join("; ")},read:function(e){var t=document.cookie.match(new RegExp("(^|;\\s*)("+e+")=([^;]*)"));return t?decodeURIComponent(t[3]):null},remove:function(e){this.write(e,"",Date.now()-864e5)}}}():function(){return{write:function(){},read:function(){return null},remove:function(){}}}()},function(e,t){"use strict";e.exports=function(e){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(e)}},function(e,t){"use strict";e.exports=function(e,t){return t?e.replace(/\/+$/,"")+"/"+t.replace(/^\/+/,""):e}},function(e,t,n){"use strict";var r=n(2);e.exports=function(e,t){t=t||{};var n={};return r.forEach(["url","method","params","data"],function(e){"undefined"!=typeof t[e]&&(n[e]=t[e])}),r.forEach(["headers","auth","proxy"],function(o){r.isObject(t[o])?n[o]=r.deepMerge(e[o],t[o]):"undefined"!=typeof t[o]?n[o]=t[o]:r.isObject(e[o])?n[o]=r.deepMerge(e[o]):"undefined"!=typeof e[o]&&(n[o]=e[o])}),r.forEach(["baseURL","transformRequest","transformResponse","paramsSerializer","timeout","withCredentials","adapter","responseType","xsrfCookieName","xsrfHeaderName","onUploadProgress","onDownloadProgress","maxContentLength","validateStatus","maxRedirects","httpAgent","httpsAgent","cancelToken","socketPath"],function(r){"undefined"!=typeof t[r]?n[r]=t[r]:"undefined"!=typeof e[r]&&(n[r]=e[r])}),n}},function(e,t){"use strict";function n(e){this.message=e}n.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},n.prototype.__CANCEL__=!0,e.exports=n},function(e,t,n){"use strict";function r(e){if("function"!=typeof e)throw new TypeError("executor must be a function.");var t;this.promise=new Promise(function(e){t=e});var n=this;e(function(e){n.reason||(n.reason=new o(e),t(n.reason))})}var o=n(23);r.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},r.source=function(){var e,t=new r(function(t){e=t});return{token:t,cancel:e}},e.exports=r},function(e,t){"use strict";e.exports=function(e){return function(t){return e.apply(null,t)}}}])});
|
|
9
|
+
//# sourceMappingURL=axios.min.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(){"use strict";function t(e,o){function i(t,e){return function(){return t.apply(e,arguments)}}var r;if(o=o||{},this.trackingClick=!1,this.trackingClickStart=0,this.targetElement=null,this.touchStartX=0,this.touchStartY=0,this.lastTouchIdentifier=0,this.touchBoundary=o.touchBoundary||10,this.layer=e,this.tapDelay=o.tapDelay||200,this.tapTimeout=o.tapTimeout||700,!t.notNeeded(e)){for(var a=["onMouse","onClick","onTouchStart","onTouchMove","onTouchEnd","onTouchCancel"],c=this,s=0,u=a.length;u>s;s++)c[a[s]]=i(c[a[s]],c);n&&(e.addEventListener("mouseover",this.onMouse,!0),e.addEventListener("mousedown",this.onMouse,!0),e.addEventListener("mouseup",this.onMouse,!0)),e.addEventListener("click",this.onClick,!0),e.addEventListener("touchstart",this.onTouchStart,!1),e.addEventListener("touchmove",this.onTouchMove,!1),e.addEventListener("touchend",this.onTouchEnd,!1),e.addEventListener("touchcancel",this.onTouchCancel,!1),Event.prototype.stopImmediatePropagation||(e.removeEventListener=function(t,n,o){var i=Node.prototype.removeEventListener;"click"===t?i.call(e,t,n.hijacked||n,o):i.call(e,t,n,o)},e.addEventListener=function(t,n,o){var i=Node.prototype.addEventListener;"click"===t?i.call(e,t,n.hijacked||(n.hijacked=function(t){t.propagationStopped||n(t)}),o):i.call(e,t,n,o)}),"function"==typeof e.onclick&&(r=e.onclick,e.addEventListener("click",function(t){r(t)},!1),e.onclick=null)}}var e=navigator.userAgent.indexOf("Windows Phone")>=0,n=navigator.userAgent.indexOf("Android")>0&&!e,o=/iP(ad|hone|od)/.test(navigator.userAgent)&&!e,i=o&&/OS 4_\d(_\d)?/.test(navigator.userAgent),r=o&&/OS [6-7]_\d/.test(navigator.userAgent),a=navigator.userAgent.indexOf("BB10")>0;t.prototype.needsClick=function(t){switch(t.nodeName.toLowerCase()){case"button":case"select":case"textarea":if(t.disabled)return!0;break;case"input":if(o&&"file"===t.type||t.disabled)return!0;break;case"label":case"iframe":case"video":return!0}return/\bneedsclick\b/.test(t.className)},t.prototype.needsFocus=function(t){switch(t.nodeName.toLowerCase()){case"textarea":return!0;case"select":return!n;case"input":switch(t.type){case"button":case"checkbox":case"file":case"image":case"radio":case"submit":return!1}return!t.disabled&&!t.readOnly;default:return/\bneedsfocus\b/.test(t.className)}},t.prototype.sendClick=function(t,e){var n,o;document.activeElement&&document.activeElement!==t&&document.activeElement.blur(),o=e.changedTouches[0],n=document.createEvent("MouseEvents"),n.initMouseEvent(this.determineEventType(t),!0,!0,window,1,o.screenX,o.screenY,o.clientX,o.clientY,!1,!1,!1,!1,0,null),n.forwardedTouchEvent=!0,t.dispatchEvent(n)},t.prototype.determineEventType=function(t){return n&&"select"===t.tagName.toLowerCase()?"mousedown":"click"},t.prototype.focus=function(t){var e;o&&t.setSelectionRange&&0!==t.type.indexOf("date")&&"time"!==t.type&&"month"!==t.type?(e=t.value.length,t.setSelectionRange(e,e)):t.focus()},t.prototype.updateScrollParent=function(t){var e,n;if(e=t.fastClickScrollParent,!e||!e.contains(t)){n=t;do{if(n.scrollHeight>n.offsetHeight){e=n,t.fastClickScrollParent=n;break}n=n.parentElement}while(n)}e&&(e.fastClickLastScrollTop=e.scrollTop)},t.prototype.getTargetElementFromEventTarget=function(t){return t.nodeType===Node.TEXT_NODE?t.parentNode:t},t.prototype.onTouchStart=function(t){var e,n,r;if(t.targetTouches.length>1)return!0;if(e=this.getTargetElementFromEventTarget(t.target),n=t.targetTouches[0],o){if(r=window.getSelection(),r.rangeCount&&!r.isCollapsed)return!0;if(!i){if(n.identifier&&n.identifier===this.lastTouchIdentifier)return t.preventDefault(),!1;this.lastTouchIdentifier=n.identifier,this.updateScrollParent(e)}}return this.trackingClick=!0,this.trackingClickStart=t.timeStamp,this.targetElement=e,this.touchStartX=n.pageX,this.touchStartY=n.pageY,t.timeStamp-this.lastClickTime<this.tapDelay&&t.preventDefault(),!0},t.prototype.touchHasMoved=function(t){var e=t.changedTouches[0],n=this.touchBoundary;return Math.abs(e.pageX-this.touchStartX)>n||Math.abs(e.pageY-this.touchStartY)>n?!0:!1},t.prototype.onTouchMove=function(t){return this.trackingClick?((this.targetElement!==this.getTargetElementFromEventTarget(t.target)||this.touchHasMoved(t))&&(this.trackingClick=!1,this.targetElement=null),!0):!0},t.prototype.findControl=function(t){return void 0!==t.control?t.control:t.htmlFor?document.getElementById(t.htmlFor):t.querySelector("button, input:not([type=hidden]), keygen, meter, output, progress, select, textarea")},t.prototype.onTouchEnd=function(t){var e,a,c,s,u,l=this.targetElement;if(!this.trackingClick)return!0;if(t.timeStamp-this.lastClickTime<this.tapDelay)return this.cancelNextClick=!0,!0;if(t.timeStamp-this.trackingClickStart>this.tapTimeout)return!0;if(this.cancelNextClick=!1,this.lastClickTime=t.timeStamp,a=this.trackingClickStart,this.trackingClick=!1,this.trackingClickStart=0,r&&(u=t.changedTouches[0],l=document.elementFromPoint(u.pageX-window.pageXOffset,u.pageY-window.pageYOffset)||l,l.fastClickScrollParent=this.targetElement.fastClickScrollParent),c=l.tagName.toLowerCase(),"label"===c){if(e=this.findControl(l)){if(this.focus(l),n)return!1;l=e}}else if(this.needsFocus(l))return t.timeStamp-a>100||o&&window.top!==window&&"input"===c?(this.targetElement=null,!1):(this.focus(l),this.sendClick(l,t),o&&"select"===c||(this.targetElement=null,t.preventDefault()),!1);return o&&!i&&(s=l.fastClickScrollParent,s&&s.fastClickLastScrollTop!==s.scrollTop)?!0:(this.needsClick(l)||(t.preventDefault(),this.sendClick(l,t)),!1)},t.prototype.onTouchCancel=function(){this.trackingClick=!1,this.targetElement=null},t.prototype.onMouse=function(t){return this.targetElement?t.forwardedTouchEvent?!0:t.cancelable&&(!this.needsClick(this.targetElement)||this.cancelNextClick)?(t.stopImmediatePropagation?t.stopImmediatePropagation():t.propagationStopped=!0,t.stopPropagation(),t.preventDefault(),!1):!0:!0},t.prototype.onClick=function(t){var e;return this.trackingClick?(this.targetElement=null,this.trackingClick=!1,!0):"submit"===t.target.type&&0===t.detail?!0:(e=this.onMouse(t),e||(this.targetElement=null),e)},t.prototype.destroy=function(){var t=this.layer;n&&(t.removeEventListener("mouseover",this.onMouse,!0),t.removeEventListener("mousedown",this.onMouse,!0),t.removeEventListener("mouseup",this.onMouse,!0)),t.removeEventListener("click",this.onClick,!0),t.removeEventListener("touchstart",this.onTouchStart,!1),t.removeEventListener("touchmove",this.onTouchMove,!1),t.removeEventListener("touchend",this.onTouchEnd,!1),t.removeEventListener("touchcancel",this.onTouchCancel,!1)},t.notNeeded=function(t){var e,o,i,r;if("undefined"==typeof window.ontouchstart)return!0;if(o=+(/Chrome\/([0-9]+)/.exec(navigator.userAgent)||[,0])[1]){if(!n)return!0;if(e=document.querySelector("meta[name=viewport]")){if(-1!==e.content.indexOf("user-scalable=no"))return!0;if(o>31&&document.documentElement.scrollWidth<=window.outerWidth)return!0}}if(a&&(i=navigator.userAgent.match(/Version\/([0-9]*)\.([0-9]*)/),i[1]>=10&&i[2]>=3&&(e=document.querySelector("meta[name=viewport]")))){if(-1!==e.content.indexOf("user-scalable=no"))return!0;if(document.documentElement.scrollWidth<=window.outerWidth)return!0}return"none"===t.style.msTouchAction||"manipulation"===t.style.touchAction?!0:(r=+(/Firefox\/([0-9]+)/.exec(navigator.userAgent)||[,0])[1],r>=27&&(e=document.querySelector("meta[name=viewport]"),e&&(-1!==e.content.indexOf("user-scalable=no")||document.documentElement.scrollWidth<=window.outerWidth))?!0:"none"===t.style.touchAction||"manipulation"===t.style.touchAction?!0:!1)},t.attach=function(e,n){return new t(e,n)},"function"==typeof define&&"object"==typeof define.amd&&define.amd?define(function(){return t}):"undefined"!=typeof module&&module.exports?(module.exports=t.attach,module.exports.FastClick=t):window.FastClick=t}();
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "iconfont"; /* Project id 4789609 */
|
|
3
|
+
src: url('iconfont.woff2?t=1737463433396') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1737463433396') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1737463433396') format('truetype');
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.iconfont {
|
|
9
|
+
font-family: "iconfont" !important;
|
|
10
|
+
font-size: 16px;
|
|
11
|
+
font-style: normal;
|
|
12
|
+
-webkit-font-smoothing: antialiased;
|
|
13
|
+
-moz-osx-font-smoothing: grayscale;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.icon-xiazai:before {
|
|
17
|
+
content: "\e607";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.icon-chakan:before {
|
|
21
|
+
content: "\e608";
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.icon-wenhao:before {
|
|
25
|
+
content: "\eb10";
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.icon-a-gantanhao:before {
|
|
29
|
+
content: "\e606";
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.icon-dianhua:before {
|
|
33
|
+
content: "\e604";
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.icon-morentouxiang:before {
|
|
37
|
+
content: "\e603";
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.icon-a-bianjixiugai:before {
|
|
41
|
+
content: "\e602";
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.icon-gouxuan:before {
|
|
45
|
+
content: "\e601";
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.icon-jiantou_xiangzuo:before {
|
|
49
|
+
content: "\e616";
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.icon-xiaosanjiao_xiangzuo:before {
|
|
53
|
+
content: "\e617";
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.icon-jiantou_xiangshang:before {
|
|
57
|
+
content: "\e618";
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.icon-xiaosanjiao_xiangyou:before {
|
|
61
|
+
content: "\e619";
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.icon-jiantou_xiangzuo-2:before {
|
|
65
|
+
content: "\e61a";
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.icon-kapianshanchu:before {
|
|
69
|
+
content: "\e61b";
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.icon-lajitong:before {
|
|
73
|
+
content: "\e610";
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.icon-qingkong:before {
|
|
77
|
+
content: "\e611";
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.icon-jiantou_xiangxia:before {
|
|
81
|
+
content: "\e612";
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.icon-xinzeng:before {
|
|
85
|
+
content: "\e613";
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.icon-shanjian:before {
|
|
89
|
+
content: "\e614";
|
|
90
|
+
}
|
|
91
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
window._iconfont_svg_string_4789609='<svg><symbol id="icon-xiazai" viewBox="0 0 1024 1024"><path d="M544 612.544l171.648-171.648a32 32 0 1 1 45.248 45.248l-226.24 226.304a32 32 0 0 1-45.312 0l-0.128-0.192L263.04 486.144a32 32 0 1 1 45.248-45.248L480 612.544V160a32 32 0 0 1 64 0v452.544zM160 640a32 32 0 0 0-32 32v128q0 39.744 28.16 67.84 28.096 28.16 67.84 28.16h576q39.744 0 67.84-28.16 28.16-28.096 28.16-67.84v-128a32 32 0 0 0-64 0v128q0 13.248-9.344 22.656-9.408 9.344-22.656 9.344h-576q-13.248 0-22.656-9.344Q192 813.248 192 800v-128a32 32 0 0 0-32-32z" fill="#A7AAB0" ></path></symbol><symbol id="icon-chakan" viewBox="0 0 1024 1024"><path d="M512 160a461.44 461.44 0 0 1 448 351.232 461.376 461.376 0 0 1-896 0A461.376 461.376 0 0 1 512 160z m0 630.528a389.504 389.504 0 0 0 373.504-279.296 389.504 389.504 0 0 0-747.008 0A389.504 389.504 0 0 0 512 790.528z m-0.32-111.936a167.872 167.872 0 1 1 0-335.744 167.872 167.872 0 0 1 0 335.744z m0-71.936a95.936 95.936 0 1 0 0-191.872 95.936 95.936 0 0 0 0 191.872z" fill="#A7AAB0" ></path></symbol><symbol id="icon-wenhao" viewBox="0 0 1024 1024"><path d="M874.023385 874.023385Q1024 724.046769 1024 512t-149.976615-362.023385Q724.046769 0 512 0T149.976615 149.976615Q0 299.953231 0 512t149.976615 362.023385Q299.953231 1024 512 1024t362.023385-149.976615z m-55.689847-668.356923Q945.230769 332.406154 945.230769 512q0 179.436308-126.818461 306.412308Q691.357538 945.230769 512 945.230769t-306.412308-126.818461Q78.769231 691.357538 78.769231 512t126.818461-306.412308Q332.642462 78.769231 512 78.769231t306.412308 126.818461zM669.380923 385.811692a138.712615 138.712615 0 0 0-46.631385-111.222154v-0.078769a174.08 174.08 0 0 0-123.82523-37.572923 181.011692 181.011692 0 0 0-134.931693 49.309539 180.381538 180.381538 0 0 0-48.758153 131.859692h79.084307c-1.575385-27.963077 5.750154-55.689846 20.952616-79.084308 17.880615-23.394462 46.473846-35.997538 75.776-33.555692 24.103385-1.575385 47.891692 6.852923 65.772307 23.079385 15.675077 16.384 24.654769 37.966769 24.969846 60.573538a91.529846 91.529846 0 0 1-21.740307 56.477538l-12.996923 14.493539A400.305231 400.305231 0 0 0 460.012308 557.528615a153.915077 153.915077 0 0 0-15.753846 73.728v13.154462h82.313846v-13.154462c-0.236308-17.880615 3.938462-35.603692 12.445538-51.2 7.640615-15.596308 18.747077-29.380923 32.295385-40.251077 15.281231-12.603077 30.168615-25.836308 44.583384-39.542153l21.031385-21.031385 0.157538 0.630154a149.661538 149.661538 0 0 0 32.216616-94.050462z m-184.32 300.740923a55.453538 55.453538 0 0 1 40.802462 15.911385 49.703385 49.703385 0 0 1 16.384 39.384615 55.138462 55.138462 0 0 1-17.014154 40.96v-0.787692a58.289231 58.289231 0 0 1-40.093539 15.832615 54.587077 54.587077 0 0 1-40.172307-16.30523 54.193231 54.193231 0 0 1-16.384-39.778462 50.254769 50.254769 0 0 1 16.30523-39.384615 54.429538 54.429538 0 0 1 40.172308-15.832616z" fill="#888B92" ></path></symbol><symbol id="icon-a-gantanhao" viewBox="0 0 1024 1024"><path d="M512 960c-123.712 0-229.312-43.712-316.8-131.2C107.712 741.312 64 635.712 64 512c0-123.712 43.712-229.312 131.2-316.8C282.688 107.712 388.288 64 512 64c123.712 0 229.312 43.712 316.8 131.2C916.288 282.688 960 388.288 960 512c0 123.712-43.712 229.312-131.2 316.8C741.312 916.288 635.712 960 512 960zM512 132.928c-104.704 0-194.048 36.992-268.032 111.04C169.92 317.952 132.928 407.296 132.928 512c0 104.704 36.992 194.048 111.04 268.032C317.952 854.08 407.296 891.072 512 891.072c104.704 0 194.048-36.992 268.032-111.04 74.048-73.984 111.04-163.328 111.04-268.032 0-104.704-36.992-194.048-111.04-268.032C706.048 169.92 616.704 132.928 512 132.928zM508.032 289.92c27.776 0 49.792 23.36 48.128 51.072L543.936 546.56a35.776 35.776 0 0 1-71.424 0L459.968 341.12a48.192 48.192 0 0 1 48.064-51.136z m48.32 394.944a46.08 46.08 0 1 1-92.16 0 46.08 46.08 0 0 1 92.16 0z" fill="#F53F3F" ></path></symbol><symbol id="icon-dianhua" viewBox="0 0 1024 1024"><path d="M808.956629 0.004267c13.226612 0 30.207874 2.389323 51.199787 7.253303 21.162578 4.949313 37.631843 10.069291 49.834459 15.274603 24.319899 10.239957 49.919792 39.765168 77.055679 88.746297 24.661231 45.482477 36.949179 90.538289 36.949179 135.338102a291.497452 291.497452 0 0 1-11.775951 80.213 765.010146 765.010146 0 0 1-10.495956 34.218524l-14.847938 40.447831a2178.550923 2178.550923 0 0 0-13.141279 35.583852 651.431952 651.431952 0 0 1-60.415748 127.146137c-38.143841 61.781076-90.794288 125.610143-157.012679 191.9992-66.389057 66.303724-130.559456 118.783505-191.9992 157.012679-37.290511 23.381236-79.786334 43.519819-127.23147 60.501081-4.351982 1.535994-16.213266 5.71731-35.583852 13.141279-19.370586 7.423969-32.938529 12.287949-40.447831 14.847938-7.423969 2.730655-18.943921 5.973308-34.133191 10.495956a273.065529 273.065529 0 0 1-80.212999 11.775951c-44.71448 0-89.770293-12.373282-135.338103-36.949179-48.895796-27.135887-78.591673-52.73578-88.83163-77.055679a298.494756 298.494756 0 0 1-15.274603-49.834459A239.27367 239.27367 0 0 1 0 808.960896c0-6.655972 0.767997-11.946617 2.047991-15.18927 2.901321-8.87463 21.333244-21.50391 55.29577-38.570506 9.215962-5.205312 22.186574-12.543948 39.423836-21.845242 17.066596-9.215962 32.426532-17.834592 46.165141-25.514561 13.823942-7.935967 26.794555-15.18927 38.911838-22.35724 1.962658-1.535994 8.106633-5.631977 18.175924-12.799947 10.239957-6.997304 18.773255-12.287949 26.026558-15.445268a48.383798 48.383798 0 0 1 20.821247-5.034646c9.727959 0 21.930575 6.911971 36.351848 20.906579 14.506606 13.738609 27.903884 28.842546 40.191833 45.141146 12.202616 16.213266 24.91723 31.23187 38.485173 45.226478 13.653276 13.738609 24.746564 20.821247 33.450527 20.821246a46.42114 46.42114 0 0 0 16.383932-3.754651c6.485306-2.389323 11.519952-4.266649 14.847938-5.973308 3.327986-1.70666 9.215962-5.034646 17.407927-10.239957l13.823943-8.533298a759.463502 759.463502 0 0 0 170.836621-126.292807A759.463502 759.463502 0 0 0 755.196853 458.498356c0.341332-0.85333 3.15732-5.375978 8.447965-13.823942 4.949313-8.362632 8.447965-14.079941 10.239957-17.407928a123.732818 123.732818 0 0 0 5.973309-14.847938 49.493127 49.493127 0 0 0 3.754651-16.383931c0-8.87463-6.911971-19.882584-20.90658-33.450528a428.371548 428.371548 0 0 0-45.141145-38.485173 354.47319 354.47319 0 0 1-45.226478-40.106499c-13.909275-14.762605-20.821247-26.709222-20.821247-36.437182 0-6.655972 1.70666-13.823942 5.034646-20.821246 3.327986-7.082637 8.533298-15.530602 15.445269-26.026559 7.082637-10.239957 11.263953-16.213266 12.799947-18.175924 7.253303-12.117283 14.847938-25.173228 22.35724-38.911838 7.935967-13.823942 16.213266-29.183878 25.51456-46.165141 9.215962-17.066596 16.469265-30.207874 21.845243-39.423835 17.066596-33.962525 29.866542-52.394448 38.570505-55.29577A35.839851 35.839851 0 0 1 808.956629 0.004267z" fill="#165DFF" ></path></symbol><symbol id="icon-morentouxiang" viewBox="0 0 1024 1024"><path d="M509.021774 1024A682.666667 682.666667 0 0 1 9.870536 803.961905c25.35619-58.489905 68.924952-107.324952 128.707047-135.509334 112.932571-53.248 238.396952-79.555048 376.393143-78.872381 135.314286 0.682667 257.80419 26.014476 367.494095 76.01981 61.123048 27.89181 105.862095 78.09219 131.657143 138.093714A682.666667 682.666667 0 0 1 514.726917 1024h-5.705143zM263.627488 248.246857C263.627488 111.152762 374.78025 0 511.874345 0s248.246857 111.152762 248.246857 248.246857-111.152762 248.246857-248.246857 248.246857-248.246857-111.152762-248.246857-248.246857z" fill="#4581FF" ></path></symbol><symbol id="icon-a-bianjixiugai" viewBox="0 0 1024 1024"><path d="M190.848 518.72l404.48-407.424a69.76 69.76 0 0 1 98.944-0.192l108.48 108.48a69.76 69.76 0 0 1 0.192 98.56L398.08 725.952l-161.152 35.072c-50.144 10.976-94.56-34.144-82.816-84.096l36.736-158.208z m562.56-249.728l-108.48-108.48-62.08 62.528 108.352 108.48 62.08-62.528h0.128zM222.08 692.8l140.992-30.72 279.04-280.96-108.48-108.48-279.232 281.216-32.32 138.88v0.064z m638.976 152.128a34.88 34.88 0 1 1 0 69.76H162.88a34.88 34.88 0 1 1 0-69.76h698.24-0.064z" fill="#165DFF" ></path></symbol><symbol id="icon-gouxuan" viewBox="0 0 1024 1024"><path d="M904.5504 298.6496a51.2 51.2 0 0 1-14.6432 35.84L472.064 761.1392a51.2 51.2 0 0 1-72.3968 0.768l-0.768-0.768-222.1568-226.816a51.2 51.2 0 1 1 73.1648-71.68l185.5488 189.4912 381.2864-389.2736a51.2 51.2 0 0 1 87.808 35.84z" fill="#165DFF" ></path></symbol><symbol id="icon-jiantou_xiangzuo" viewBox="0 0 1024 1024"><path d="M880.028559 524.950544a57.427132 57.427132 0 0 1-14.335451 27.30562l-432.282095 455.065222a52.051338 52.051338 0 0 1-76.285076 0 58.877743 58.877743 0 0 1 0-80.295589L751.350825 511.980374l-394.224888-415.045423a58.877743 58.877743 0 0 1 0-80.295589 52.051338 52.051338 0 0 1 76.370406 0l432.196765 455.065223c13.73814 14.506111 18.516624 34.729335 14.335451 53.245959z" fill="#41444C" ></path></symbol><symbol id="icon-xiaosanjiao_xiangzuo" viewBox="0 0 1024 1024"><path d="M361.152907 449.084574l227.326265-208.318411a85.343349 85.343349 0 0 1 143.038909 62.97552v416.636821a85.343349 85.343349 0 0 1-143.038909 62.87952l-227.326265-208.31841a85.343349 85.343349 0 0 1 0-125.759041" fill="#165DFF" ></path></symbol><symbol id="icon-jiantou_xiangshang" viewBox="0 0 1024 1024"><path d="M520.064 321.024a37.12 37.12 0 0 0-17.92 9.984L202.88 630.144a37.312 37.312 0 0 0 52.8 52.8L528.64 410.048l272.832 272.896a37.312 37.312 0 0 0 52.8-52.8L555.072 330.88a37.312 37.312 0 0 0-35.008-9.92z" fill="#000000" ></path></symbol><symbol id="icon-xiaosanjiao_xiangyou" viewBox="0 0 1024 1024"><path d="M662.782972 449.084574l-227.230267-208.318411a85.343349 85.343349 0 0 0-143.038908 62.97552v416.636821a85.343349 85.343349 0 0 0 143.038908 62.87952l227.230267-208.31841a85.343349 85.343349 0 0 0 0-125.759041" fill="#165DFF" ></path></symbol><symbol id="icon-jiantou_xiangzuo-2" viewBox="0 0 1024 1024"><path d="M722.304 503.936a37.12 37.12 0 0 1-9.92 17.92L413.184 821.12a37.312 37.312 0 1 1-52.8-52.8L633.28 495.36 360.448 222.528a37.312 37.312 0 0 1 52.8-52.8l299.136 299.2c9.536 9.472 12.8 22.848 9.92 35.008z" fill="#165DFF" ></path></symbol><symbol id="icon-kapianshanchu" viewBox="0 0 1024 1024"><path d="M1024 1024C458.467556 1024 0 565.532444 0 0h568.888889a455.111111 455.111111 0 0 1 455.111111 455.111111v568.888889z m-252.814222-431.559111a34.133333 34.133333 0 0 0 0-48.298667l-108.600889-108.600889 108.600889-108.544a34.133333 34.133333 0 0 0-48.241778-48.298666l-108.657778 108.600889-116.622222-116.622223a34.133333 34.133333 0 0 0-48.298667 48.241778l116.679111 116.622222L449.422222 552.220444a34.133333 34.133333 0 1 0 48.241778 48.298667l116.622222-116.679111 108.657778 108.600889a34.133333 34.133333 0 0 0 48.241778 0z" fill="#CACEDB" ></path></symbol><symbol id="icon-lajitong" viewBox="0 0 1024 1024"><path d="M327.36 298.496H112a32 32 0 0 1 0-64h183.36v-29.568c0-25.792 9.152-47.872 27.392-66.112 18.304-18.304 40.32-27.392 66.176-27.392h246.144c25.856 0 47.872 9.088 66.112 27.392 18.304 18.24 27.392 40.32 27.392 66.112v29.568h183.424a32 32 0 0 1 0 64H327.36z m337.28-64v-29.568a28.48 28.48 0 0 0-8.704-20.864 28.48 28.48 0 0 0-20.864-8.64H388.928a28.48 28.48 0 0 0-20.928 8.64 28.48 28.48 0 0 0-8.64 20.864v29.568h305.28zM203.008 420.352a32 32 0 1 1 64 0v430.72c0 19.712 9.856 29.568 29.504 29.568h430.784c19.712 0 29.568-9.856 29.568-29.568v-430.72a32 32 0 1 1 64 0v430.72c0 25.856-9.152 47.872-27.392 66.176-18.304 18.24-40.32 27.392-66.176 27.392h-430.72c-25.856 0-47.936-9.152-66.176-27.392a90.112 90.112 0 0 1-27.392-66.176v-430.72z m248.704 0v276.928a32 32 0 0 1-64 0V420.352a32 32 0 1 1 64 0z m184.576 0v276.928a32 32 0 0 1-64 0V420.352a32 32 0 1 1 64 0z" fill="#555961" ></path></symbol><symbol id="icon-qingkong" viewBox="0 0 1024 1024"><path d="M1021.449261 562.027063a509.902209 509.902209 0 0 1-98.277957 254.737828 511.864356 511.864356 0 1 1 98.277957-254.737828zM578.004107 511.864356l184.5271-184.5271a18.597738 18.597738 0 0 0 0-26.446325l-39.584176-39.498867a18.683049 18.683049 0 0 0-26.361015 0L512.058916 445.919165 327.531816 261.392064a18.683049 18.683049 0 0 0-26.446325 0l-39.498867 39.584177a18.597738 18.597738 0 0 0 0 26.361015L446.113725 511.864356 261.586624 696.391456a18.597738 18.597738 0 0 0 0 26.446325l39.584177 39.498866a18.597738 18.597738 0 0 0 26.361015 0L512.058916 577.809547l184.5271 184.5271a18.683049 18.683049 0 0 0 26.446325 0l39.498866-39.584176a18.683049 18.683049 0 0 0 0-26.361015L578.004107 511.864356z" fill="#888B92" ></path></symbol><symbol id="icon-jiantou_xiangxia" viewBox="0 0 1905 1024"><path d="M498.852241 879.82249a57.408953 57.408953 0 0 1-27.296976-14.330913l-454.92117-432.145255a52.034861 52.034861 0 0 1 0-76.260927 58.859105 58.859105 0 0 1 80.270171 0L511.818305 751.185489l414.914038-394.100094a58.859105 58.859105 0 0 1 80.270171 0 52.034861 52.034861 0 0 1 0 76.34623l-454.92117 432.059952c-14.501519 13.733791-34.718342 18.510762-53.229103 14.330913z" fill="#41444C" ></path></symbol><symbol id="icon-xinzeng" viewBox="0 0 1024 1024"><path d="M0 512a512 512 0 1 1 1024 0A512 512 0 0 1 0 512z m512-426.688c-117.824 0-218.368 41.664-301.696 124.992C126.976 293.632 85.312 394.176 85.312 512c0 117.76 41.664 218.368 124.992 301.696C293.632 897.024 394.176 938.688 512 938.688c117.76 0 218.368-41.664 301.696-124.992 83.328-83.328 124.992-183.872 124.992-301.696 0-117.824-41.664-218.368-124.992-301.696C730.368 126.976 629.824 85.312 512 85.312z m42.688 381.184h167.808c9.408 0 17.088 7.68 17.088 17.088v51.2c0 9.408-7.68 17.024-17.088 17.024H554.688v167.808c0 9.472-7.68 17.088-17.088 17.088h-51.2a17.088 17.088 0 0 1-17.088-17.088V551.808H301.504a17.088 17.088 0 0 1-17.088-17.024v-51.2c0-9.472 7.68-17.088 17.088-17.088h167.808V298.624c0-9.408 7.68-17.024 17.088-17.024h51.2c9.408 0 17.088 7.68 17.088 17.024V466.56z" fill="#165DFF" ></path></symbol><symbol id="icon-shanjian" viewBox="0 0 1024 1024"><path d="M0 512a512 512 0 1 1 1024 0A512 512 0 0 1 0 512z m512-426.688c-117.824 0-218.368 41.664-301.696 124.992C126.976 293.632 85.312 394.176 85.312 512c0 117.76 41.664 218.368 124.992 301.696C293.632 897.024 394.176 938.688 512 938.688c117.76 0 218.368-41.664 301.696-124.992 83.328-83.328 124.992-183.872 124.992-301.696 0-117.824-41.664-218.368-124.992-301.696C730.368 126.976 629.824 85.312 512 85.312zM284.416 534.784v-51.2c0-9.472 7.68-17.088 17.088-17.088h420.992c9.408 0 17.088 7.68 17.088 17.088v51.2c0 9.408-7.68 17.024-17.088 17.024H301.44a17.088 17.088 0 0 1-17.088-17.024z" fill="#165DFF" ></path></symbol></svg>',(t=>{var a=(i=(i=document.getElementsByTagName("script"))[i.length-1]).getAttribute("data-injectcss"),i=i.getAttribute("data-disable-injectsvg");if(!i){var o,l,e,n,c,s=function(a,i){i.parentNode.insertBefore(a,i)};if(a&&!t.__iconfont__svg__cssinject__){t.__iconfont__svg__cssinject__=!0;try{document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>")}catch(a){console&&console.log(a)}}o=function(){var a,i=document.createElement("div");i.innerHTML=t._iconfont_svg_string_4789609,(i=i.getElementsByTagName("svg")[0])&&(i.setAttribute("aria-hidden","true"),i.style.position="absolute",i.style.width=0,i.style.height=0,i.style.overflow="hidden",i=i,(a=document.body).firstChild?s(i,a.firstChild):a.appendChild(i))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(o,0):(l=function(){document.removeEventListener("DOMContentLoaded",l,!1),o()},document.addEventListener("DOMContentLoaded",l,!1)):document.attachEvent&&(e=o,n=t.document,c=!1,h(),n.onreadystatechange=function(){"complete"==n.readyState&&(n.onreadystatechange=null,d())})}function d(){c||(c=!0,e())}function h(){try{n.documentElement.doScroll("left")}catch(a){return void setTimeout(h,50)}d()}})(window);
|