af-mobile-client-vue3 1.3.30 → 1.3.32
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/.claude/settings.local.json +10 -0
- package/.cursorrules +60 -60
- package/.editorconfig +9 -9
- package/.env +10 -10
- package/.env.development +1 -1
- package/.env.production +1 -1
- package/.node-version +1 -1
- package/.vscode/extensions.json +12 -12
- package/.vscode/settings.json +68 -66
- package/CLAUDE.md +218 -189
- package/README.md +182 -182
- package/af-example-mobile-vue-web.iml +9 -9
- package/build/vite/index.ts +98 -98
- package/build/vite/optimize.ts +34 -34
- package/build/vite/vconsole.ts +47 -47
- package/commitlint.config.ts +32 -32
- package/compress.js +36 -36
- package/eslint.config.ts +31 -30
- package/index.html +23 -23
- package/mock/data.ts +20 -20
- package/mock/index.ts +7 -7
- package/mock/modules/prose.mock.ts +13 -13
- package/mock/modules/user.mock.ts +95 -152
- package/mock/util.ts +19 -19
- package/netlify.toml +12 -12
- package/package.json +135 -114
- package/postcss.config.ts +27 -27
- package/public/favicon.svg +4 -4
- package/public/safari-pinned-tab.svg +4 -4
- package/scripts/verifyCommit.js +19 -19
- package/src/App.vue +79 -79
- package/src/api/auth/index.ts +77 -0
- package/src/api/auth/types.ts +200 -0
- package/src/api/mock/index.ts +30 -30
- package/src/api/user/index.ts +40 -40
- package/src/assets/img/user/login/background-shadow-1.svg +20 -20
- package/src/assets/img/user/login/logo-background.svg +20 -20
- package/src/bootstrap.ts +26 -26
- package/src/components/core/BeautifulLoading/index.vue +52 -52
- package/src/components/core/ImageUploader/index.vue +251 -251
- package/src/components/core/NavBar/index.vue +53 -53
- package/src/components/core/Tabbar/index.vue +32 -32
- package/src/components/core/Uploader/index.vue +124 -124
- package/src/components/core/XGridDropOption/index.vue +154 -154
- package/src/components/core/XMultiSelect/index.vue +183 -183
- package/src/components/core/XSelect/index.vue +149 -149
- package/src/components/data/CardContainer/CardContainer.vue +118 -118
- package/src/components/data/CardContainer/CardHeader.vue +99 -99
- package/src/components/data/InfoDisplay/index.vue +132 -132
- package/src/components/data/UserDetail/api.ts +24 -24
- package/src/components/data/UserDetail/index.vue +620 -620
- package/src/components/data/UserDetail/recordEntries.ts +159 -159
- package/src/components/data/UserDetail/types.ts +26 -26
- package/src/components/data/XBadge/index.vue +82 -82
- package/src/components/data/XCellDetail/index.vue +105 -105
- package/src/components/data/XCellList/XCellList.md +432 -432
- package/src/components/data/XCellList/index.vue +1436 -1436
- package/src/components/data/XCellListFilter/QrScanner/index.vue +207 -207
- package/src/components/data/XCellListFilter/QrScanner/startScanAnimation.ts +53 -53
- package/src/components/data/XCellListFilter/VpnRecognition/index.vue +119 -119
- package/src/components/data/XCellListFilter/index.vue +705 -705
- package/src/components/data/XForm/index.vue +659 -659
- package/src/components/data/XFormGroup/doc/DeviceForm.vue +122 -122
- package/src/components/data/XFormGroup/doc/FormGroupDemo.vue +56 -56
- package/src/components/data/XFormGroup/doc/README.md +286 -286
- package/src/components/data/XFormGroup/doc/UserForm.vue +102 -102
- package/src/components/data/XFormGroup/index.vue +240 -240
- package/src/components/data/XFormItem/index.vue +1310 -1310
- package/src/components/data/XOlMap/README.md +227 -227
- package/src/components/data/XOlMap/XLocationPicker/index.vue +226 -226
- package/src/components/data/XOlMap/index.vue +1490 -1490
- package/src/components/data/XOlMap/types.ts +149 -149
- package/src/components/data/XOlMap/utils/{wgs84ToGcj02.js → wgs84ToGcj02.ts} +171 -154
- package/src/components/data/XReportForm/DateTimeSecondsPicker.vue +208 -208
- package/src/components/data/XReportForm/XReportFormJsonRender.vue +220 -220
- package/src/components/data/XReportForm/index.vue +1393 -1393
- package/src/components/data/XReportGrid/XAddReport/XAddReport.vue +198 -198
- package/src/components/data/XReportGrid/XAddReport/index.js +3 -3
- package/src/components/data/XReportGrid/XAddReport/index.md +53 -53
- package/src/components/data/XReportGrid/XAddReport/index.ts +10 -10
- package/src/components/data/XReportGrid/XReport.vue +960 -960
- package/src/components/data/XReportGrid/XReportDemo.vue +33 -33
- package/src/components/data/XReportGrid/XReportDesign.vue +597 -597
- package/src/components/data/XReportGrid/XReportDrawer/XReportDrawer.vue +148 -148
- package/src/components/data/XReportGrid/XReportDrawer/index.js +3 -3
- package/src/components/data/XReportGrid/XReportDrawer/index.ts +10 -10
- package/src/components/data/XReportGrid/XReportJsonRender.vue +399 -399
- package/src/components/data/XReportGrid/XReportTrGroup.vue +592 -592
- package/src/components/data/XReportGrid/index.md +46 -46
- package/src/components/data/XReportGrid/print.js +184 -184
- package/src/components/data/XSignature/index.vue +284 -284
- package/src/components/data/XTag/index.vue +10 -10
- package/src/components/layout/NormalDataLayout/index.vue +69 -69
- package/src/components/layout/TabBarLayout/index.vue +40 -40
- package/src/composables/dark.ts +5 -5
- package/src/config/routes.ts +9 -9
- package/src/constants/index.ts +2 -2
- package/src/enums/requestEnum.ts +25 -25
- package/src/expression/ExpressionRunner.ts +28 -28
- package/src/expression/TestExpression.ts +510 -510
- package/src/expression/core/Delegate.ts +116 -116
- package/src/expression/core/Expression.ts +1359 -1359
- package/src/expression/core/Program.ts +985 -985
- package/src/expression/core/Token.ts +29 -29
- package/src/expression/enums/ExpressionType.ts +81 -81
- package/src/expression/enums/TokenType.ts +11 -11
- package/src/expression/exception/BreakWayException.ts +2 -2
- package/src/expression/exception/ContinueWayException.ts +2 -2
- package/src/expression/exception/ExpressionException.ts +29 -29
- package/src/expression/exception/ReturnWayException.ts +14 -14
- package/src/expression/exception/ServiceException.ts +22 -22
- package/src/expression/instances/JSONArray.ts +52 -52
- package/src/expression/instances/JSONObject.ts +118 -118
- package/src/expression/instances/LogicConsole.ts +31 -31
- package/src/font-style/font.css +4 -4
- package/src/hooks/useBoolean.ts +26 -26
- package/src/hooks/useCommon.ts +9 -9
- package/src/hooks/useLoading.ts +16 -16
- package/src/hooks/useLogin.ts +97 -97
- package/src/icons/svg/check-in.svg +32 -32
- package/src/icons/svg/dark.svg +4 -4
- package/src/icons/svg/github.svg +4 -4
- package/src/icons/svg/light.svg +4 -4
- package/src/icons/svg/link.svg +4 -4
- package/src/icons/svgo.yml +22 -22
- package/src/index.ts +4 -0
- package/src/layout/GridView/index.vue +16 -16
- package/src/layout/PageLayout.vue +9 -9
- package/src/layout/SingleLayout.vue +9 -9
- package/src/locales/en-US.json +128 -128
- package/src/locales/zh-CN.json +128 -128
- package/src/logic/LogicRunner.ts +67 -67
- package/src/logic/TestLogic.ts +13 -13
- package/src/logic/plugins/common/DateTools.ts +35 -35
- package/src/logic/plugins/common/VueTools.ts +30 -30
- package/src/logic/plugins/index.ts +7 -7
- package/src/main.ts +44 -44
- package/src/plugins/AppData.ts +38 -38
- package/src/plugins/GetLoginInfoService.ts +10 -10
- package/src/plugins/collectIcons.ts +10 -10
- package/src/plugins/index.ts +11 -11
- package/src/router/README.md +8 -8
- package/src/router/external-routes.ts +60 -0
- package/src/router/guards.ts +131 -59
- package/src/router/index.ts +35 -35
- package/src/router/invoiceRoutes.ts +33 -33
- package/src/router/routes.ts +426 -347
- package/src/services/api/Login.ts +6 -6
- package/src/services/api/common.ts +109 -109
- package/src/services/api/index.ts +7 -7
- package/src/services/api/manage.ts +8 -8
- package/src/services/api/search.ts +16 -16
- package/src/services/api/user.ts +17 -17
- package/src/services/restTools.ts +56 -56
- package/src/services/v3Api.ts +147 -147
- package/src/stores/index.ts +13 -13
- package/src/stores/modules/counter.ts +19 -19
- package/src/stores/modules/homeApp.ts +55 -55
- package/src/stores/modules/routeCache.ts +22 -23
- package/src/stores/modules/setting.ts +87 -87
- package/src/stores/modules/user.ts +326 -235
- package/src/stores/mutation-type.ts +12 -7
- package/src/styles/app.less +36 -36
- package/src/styles/login.less +109 -109
- package/src/styles/var.less +25 -25
- package/src/types/auth.ts +85 -0
- package/src/types/env.d.ts +16 -16
- package/src/types/platform.ts +194 -0
- package/src/types/settings.ts +1 -1
- package/src/types/vue-router.d.ts +13 -9
- package/src/utils/Storage.ts +124 -124
- package/src/utils/authority-utils.ts +84 -84
- package/src/utils/common.ts +41 -41
- package/src/utils/crypto.ts +39 -39
- package/src/utils/dataUtil.ts +42 -42
- package/src/utils/dictUtil.ts +52 -52
- package/src/utils/http/index.ts +201 -199
- package/src/utils/i18n.ts +72 -72
- package/src/utils/indexedDB.ts +195 -195
- package/src/utils/inline-px-to-vw.ts +28 -28
- package/src/utils/mobileUtil.ts +33 -34
- package/src/utils/platform-auth.ts +134 -0
- package/src/utils/progress.ts +19 -19
- package/src/utils/routerUtil.ts +271 -271
- package/src/utils/runEvalFunction.ts +13 -13
- package/src/utils/secureStorage.ts +70 -71
- package/src/utils/set-page-title.ts +5 -5
- package/src/utils/validate.ts +6 -6
- package/src/views/chat/index.vue +153 -153
- package/src/views/common/Forbidden.vue +97 -0
- package/src/views/common/LoadError.vue +63 -63
- package/src/views/common/NotFound.vue +67 -67
- package/src/views/component/EvaluateRecordView/index.vue +40 -40
- package/src/views/component/IconifyView/index.vue +504 -504
- package/src/views/component/UserDetailView/UserDetailPage.vue +77 -77
- package/src/views/component/UserDetailView/index.vue +234 -234
- package/src/views/component/XCellDetailView/index.vue +217 -217
- package/src/views/component/XCellListView/index.vue +108 -129
- package/src/views/component/XFormAppraiseView/index.vue +174 -174
- package/src/views/component/XFormGroupView/index.vue +78 -82
- package/src/views/component/XFormView/index.vue +27 -27
- package/src/views/component/XOlMapView/XLocationPicker/index.vue +118 -118
- package/src/views/component/XOlMapView/index.vue +434 -434
- package/src/views/component/XOlMapView/testData.ts +64 -64
- package/src/views/component/XReportFormIframeView/index.vue +47 -47
- package/src/views/component/XReportFormView/index.vue +13 -13
- package/src/views/component/XReportGridView/index.vue +17 -17
- package/src/views/component/XRequestView/index.vue +234 -234
- package/src/views/component/XSignatureView/index.vue +50 -50
- package/src/views/component/index.vue +181 -181
- package/src/views/component/menu.vue +117 -117
- package/src/views/component/notice.vue +46 -46
- package/src/views/component/topNav.vue +36 -36
- package/src/views/external/index.vue +152 -0
- package/src/views/invoiceShow/index.vue +61 -61
- package/src/views/loading/AuthLoading.vue +345 -0
- package/src/views/user/login/ForgetPasswordForm.vue +94 -94
- package/src/views/user/login/LoginForm.vue +350 -347
- package/src/views/user/login/LoginTitle.vue +76 -76
- package/src/views/user/login/LoginWave.vue +109 -109
- package/src/views/user/login/index.vue +22 -22
- package/src/views/user/my/comm/ModifyPassword.vue +346 -346
- package/src/views/user/my/index.vue +507 -507
- package/src/views/user/register/index.vue +952 -952
- package/src/views/userRecords/AbnormalAlarmRecords.vue +21 -21
- package/src/views/userRecords/CardReplacementRecords.vue +21 -21
- package/src/views/userRecords/ChangeRecords.vue +19 -19
- package/src/views/userRecords/CommandViewRecords.vue +20 -20
- package/src/views/userRecords/GasCompensationRecords.vue +20 -20
- package/src/views/userRecords/InstrumentCollectionRecords.vue +21 -21
- package/src/views/userRecords/MeterRecords.vue +20 -20
- package/src/views/userRecords/OperateRecords.vue +51 -51
- package/src/views/userRecords/OtherChargeRecords.vue +19 -19
- package/src/views/userRecords/PaymentRecords.vue +28 -28
- package/src/views/userRecords/PriceAdjustmentRecords.vue +19 -19
- package/src/views/userRecords/ReplacementRecords.vue +19 -19
- package/src/views/userRecords/SafetyRecords.vue +19 -19
- package/src/views/userRecords/TransactionRecords.vue +21 -21
- package/src/views/userRecords/TransferRecords.vue +19 -19
- package/src/views/userRecords/operateRecordDetail/index.vue +316 -316
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/AddUserDetail.vue +124 -124
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/AdvanceDeliveryDetail.vue +88 -88
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/AutoAccountsCancelDetail.vue +205 -205
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/AutoAccountsDetail.vue +192 -192
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/BankDkDetail.vue +192 -192
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/BankPayDetail.vue +192 -192
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/BlacklistDetail.vue +153 -153
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/CancellationDetail.vue +101 -101
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/CardMeterCenterCancelDetail.vue +127 -127
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/CardMeterCenterDetail.vue +153 -153
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/CardOverUserDetail.vue +153 -153
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/ChangeMeterCancelDetail.vue +166 -166
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/ChangeMeterDetail.vue +205 -205
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/DisableManageDetail.vue +127 -127
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/EnableManageDetail.vue +114 -114
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/FaZheChangeDetail.vue +124 -124
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/FeeDeductionDetail.vue +153 -153
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/GasPriceChangeDetail.vue +126 -126
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/InputtorChangeDetail.vue +126 -126
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/IotMeterCenterCancelDetail.vue +114 -114
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/IotMeterCenterDetail.vue +127 -127
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/IotOpenDetail.vue +88 -88
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/MachineCardDetail.vue +101 -101
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/MachineMeterCenterCancelDetail.vue +218 -218
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/MachineMeterCenterDetail.vue +153 -153
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/OffGasAddGasDetail.vue +140 -140
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/OtherChargeCancelDetail.vue +127 -127
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/OtherChargeDetail.vue +114 -114
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/OverUserChangeDetail.vue +127 -127
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/ReBillDetail.vue +127 -127
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/RefundDetail.vue +114 -114
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/ReplaceCardManageCancelDetail.vue +127 -127
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/ReplaceCardManageDetail.vue +114 -114
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/SaleCardGasDetail.vue +140 -140
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/TransferManageCancelDetail.vue +152 -152
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/TransferManageDetail.vue +178 -178
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/UserChangeDetail.vue +123 -123
- package/src/views/userRecords/operateRecordDetail/operateRecordDetails/WechatPayDetail.vue +192 -192
- package/src/views/userRecords/types.ts +66 -66
- package/tsconfig.json +39 -39
- package/uno.config.ts +82 -82
- package/vite.config.ts +119 -118
- package/src/router/types.ts +0 -7
- package/src/utils/wechatUtil.ts +0 -9
|
@@ -1,152 +1,95 @@
|
|
|
1
|
-
// https://github.com/pengzhanbo/vite-plugin-mock-dev-server
|
|
2
|
-
import { defineMock } from 'vite-plugin-mock-dev-server'
|
|
3
|
-
|
|
4
|
-
export default defineMock([{
|
|
5
|
-
url: '/rs/logic/getLogin',
|
|
6
|
-
delay: 300,
|
|
7
|
-
body: () => {
|
|
8
|
-
return {
|
|
9
|
-
jwt: '60436',
|
|
10
|
-
states: '登陆成功',
|
|
11
|
-
}
|
|
12
|
-
},
|
|
13
|
-
}, {
|
|
14
|
-
url: '/af-auth/login',
|
|
15
|
-
delay:
|
|
16
|
-
body: () => {
|
|
17
|
-
return {
|
|
18
|
-
code: 200,
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
}, {
|
|
97
|
-
url: '/rs/logic/getLogin/智慧燃气',
|
|
98
|
-
delay: 300,
|
|
99
|
-
body: () => {
|
|
100
|
-
return {
|
|
101
|
-
accesstime: '1706694963867',
|
|
102
|
-
deleted: 'false',
|
|
103
|
-
depids: '108646',
|
|
104
|
-
deps: '客户服务热线班组',
|
|
105
|
-
deptype: '部门',
|
|
106
|
-
dir: 'tctrq',
|
|
107
|
-
ename: 'cs',
|
|
108
|
-
entitytype: 't_user',
|
|
109
|
-
f_create_date: null,
|
|
110
|
-
f_department_name: '客户服务热线班组',
|
|
111
|
-
f_icon: 'tree_user',
|
|
112
|
-
f_mac_adress: null,
|
|
113
|
-
f_old_userid: null,
|
|
114
|
-
f_role_name: '系统管理员 维修员 派单员 维修员 派单员 管理员 需要定位人员 用户管理员 班组长 安检员 安检员 抄表员 维修员 派单员 ',
|
|
115
|
-
f_sex: '男',
|
|
116
|
-
f_update_date: '2023-05-31 14:12:16',
|
|
117
|
-
f_user_macip: null,
|
|
118
|
-
forceoutstate: '0',
|
|
119
|
-
fullids: '46997.108646.60436.',
|
|
120
|
-
fullnames: '铜川市天然气.客户服务热线班组.测试',
|
|
121
|
-
haslicense: 'true',
|
|
122
|
-
id: '60436',
|
|
123
|
-
imgid: null,
|
|
124
|
-
initpassword: '1',
|
|
125
|
-
logindate: '09 27 2022 10:11AM',
|
|
126
|
-
loginid: '15',
|
|
127
|
-
loginip: '192.168.17.106',
|
|
128
|
-
loginnum: '0',
|
|
129
|
-
loginnumber: null,
|
|
130
|
-
name: '测试',
|
|
131
|
-
number: '1007',
|
|
132
|
-
orgid: '46997',
|
|
133
|
-
orgs: '铜川市天然气',
|
|
134
|
-
parentid: '108646',
|
|
135
|
-
parentname: '客户服务热线班组',
|
|
136
|
-
position: '2',
|
|
137
|
-
qrcode: '/rs/user/getQRcode?QRCODE=31f7-1631780331801-89562',
|
|
138
|
-
resourcetype: 'user',
|
|
139
|
-
roles: '63342,202099,185540,190376,201979,226308,244916,63336,276279,169595,63132,63192,278593,278597',
|
|
140
|
-
rolesnames: '系统管理员,维修员,派单员,维修员,派单员,管理员,需要定位人员,用户管理员,班组长 ,安检员,安检员,抄表员,维修员,派单员',
|
|
141
|
-
rolestr: '系统管理员,维修员,派单员,维修员,派单员,管理员,需要定位人员,用户管理员,班组长 ,安检员,安检员,抄表员,维修员,派单员',
|
|
142
|
-
selfid: '60437',
|
|
143
|
-
state: '在职',
|
|
144
|
-
tablename: 't_user',
|
|
145
|
-
templatename: 'useredit',
|
|
146
|
-
ticket: null,
|
|
147
|
-
url: null,
|
|
148
|
-
userid: '31f7-1631780331801-89562',
|
|
149
|
-
functions: [],
|
|
150
|
-
}
|
|
151
|
-
},
|
|
152
|
-
}])
|
|
1
|
+
// https://github.com/pengzhanbo/vite-plugin-mock-dev-server
|
|
2
|
+
import { defineMock } from 'vite-plugin-mock-dev-server'
|
|
3
|
+
|
|
4
|
+
export default defineMock([{
|
|
5
|
+
url: '/rs/logic/getLogin',
|
|
6
|
+
delay: 300,
|
|
7
|
+
body: () => {
|
|
8
|
+
return {
|
|
9
|
+
jwt: '60436',
|
|
10
|
+
states: '登陆成功',
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
}, {
|
|
14
|
+
url: '/api/af-auth/login',
|
|
15
|
+
delay: 5000,
|
|
16
|
+
body: () => {
|
|
17
|
+
return {
|
|
18
|
+
code: 200,
|
|
19
|
+
msg: null,
|
|
20
|
+
data: {
|
|
21
|
+
access_token: 'eyJhbGciOiJIUzUxMiJ9.eyJ1c2VyX2tleSI6IjFmMmNmMTI2LTIwZWMtNDkwYi1iZjY0LWJjOWI2NmZkNWExYyIsImZfdXNlcm5hbWUiOiLlpJbpg6jnlKjmiLdiYlZmOGciLCJpZCI6NDc1NzEzOTYyMzU3MjkzMDU2fQ.6ytgMAfdQw9RN8Dz2uqHkZCo668FjWeAZdHqUjiAl5pRQa4QobunZCcav69EAyiudzFD4ukJIgSh3TNXPLdLYQ',
|
|
22
|
+
resources: {
|
|
23
|
+
platformUserId: 'oeNg769OtFGhrznAI9zAnvbbVf8g',
|
|
24
|
+
platformType: 'WECHAT_OFFICIAL',
|
|
25
|
+
resourceName: null,
|
|
26
|
+
userType: 'EXTERNAL',
|
|
27
|
+
orgs: '西安奥枫软件集团总公司',
|
|
28
|
+
dir: 'standard',
|
|
29
|
+
orgid: '123138',
|
|
30
|
+
f_organization_id: '123138',
|
|
31
|
+
},
|
|
32
|
+
expires_in: 60,
|
|
33
|
+
session: 'ZAFbvtnlcLSRxN8Hvjgsz5PeCI8mRV2FQ4uszAmsOgFAalAJ84raqmto3tp0V3QcMtPjgTI8lcAJWtTyClj/wPi2CxQZA6+14otKtIqiwjtvEnP03NsYn8X0x/jFl2jn91xEUM+ILyThv6WGfpSAQZDkIyydBr3ZhM6Z0m4uayw=',
|
|
34
|
+
},
|
|
35
|
+
error: false,
|
|
36
|
+
success: true,
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
}, {
|
|
40
|
+
url: '/rs/logic/getLogin/智慧燃气',
|
|
41
|
+
delay: 300,
|
|
42
|
+
body: () => {
|
|
43
|
+
return {
|
|
44
|
+
accesstime: '1706694963867',
|
|
45
|
+
deleted: 'false',
|
|
46
|
+
depids: '108646',
|
|
47
|
+
deps: '客户服务热线班组',
|
|
48
|
+
deptype: '部门',
|
|
49
|
+
dir: 'tctrq',
|
|
50
|
+
ename: 'cs',
|
|
51
|
+
entitytype: 't_user',
|
|
52
|
+
f_create_date: null,
|
|
53
|
+
f_department_name: '客户服务热线班组',
|
|
54
|
+
f_icon: 'tree_user',
|
|
55
|
+
f_mac_adress: null,
|
|
56
|
+
f_old_userid: null,
|
|
57
|
+
f_role_name: '系统管理员 维修员 派单员 维修员 派单员 管理员 需要定位人员 用户管理员 班组长 安检员 安检员 抄表员 维修员 派单员 ',
|
|
58
|
+
f_sex: '男',
|
|
59
|
+
f_update_date: '2023-05-31 14:12:16',
|
|
60
|
+
f_user_macip: null,
|
|
61
|
+
forceoutstate: '0',
|
|
62
|
+
fullids: '46997.108646.60436.',
|
|
63
|
+
fullnames: '铜川市天然气.客户服务热线班组.测试',
|
|
64
|
+
haslicense: 'true',
|
|
65
|
+
id: '60436',
|
|
66
|
+
imgid: null,
|
|
67
|
+
initpassword: '1',
|
|
68
|
+
logindate: '09 27 2022 10:11AM',
|
|
69
|
+
loginid: '15',
|
|
70
|
+
loginip: '192.168.17.106',
|
|
71
|
+
loginnum: '0',
|
|
72
|
+
loginnumber: null,
|
|
73
|
+
name: '测试',
|
|
74
|
+
number: '1007',
|
|
75
|
+
orgid: '46997',
|
|
76
|
+
orgs: '铜川市天然气',
|
|
77
|
+
parentid: '108646',
|
|
78
|
+
parentname: '客户服务热线班组',
|
|
79
|
+
position: '2',
|
|
80
|
+
qrcode: '/rs/user/getQRcode?QRCODE=31f7-1631780331801-89562',
|
|
81
|
+
resourcetype: 'user',
|
|
82
|
+
roles: '63342,202099,185540,190376,201979,226308,244916,63336,276279,169595,63132,63192,278593,278597',
|
|
83
|
+
rolesnames: '系统管理员,维修员,派单员,维修员,派单员,管理员,需要定位人员,用户管理员,班组长 ,安检员,安检员,抄表员,维修员,派单员',
|
|
84
|
+
rolestr: '系统管理员,维修员,派单员,维修员,派单员,管理员,需要定位人员,用户管理员,班组长 ,安检员,安检员,抄表员,维修员,派单员',
|
|
85
|
+
selfid: '60437',
|
|
86
|
+
state: '在职',
|
|
87
|
+
tablename: 't_user',
|
|
88
|
+
templatename: 'useredit',
|
|
89
|
+
ticket: null,
|
|
90
|
+
url: null,
|
|
91
|
+
userid: '31f7-1631780331801-89562',
|
|
92
|
+
functions: [],
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
}])
|
package/mock/util.ts
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
const responseBody = {
|
|
2
|
-
message: '',
|
|
3
|
-
timestamp: 0,
|
|
4
|
-
result: null as unknown,
|
|
5
|
-
code: 0,
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
export function builder(data: unknown, message = 'success', code = 0) {
|
|
9
|
-
responseBody.result = data
|
|
10
|
-
|
|
11
|
-
if (message !== undefined && message !== null)
|
|
12
|
-
responseBody.message = message
|
|
13
|
-
|
|
14
|
-
if (code !== undefined && code !== 0)
|
|
15
|
-
responseBody.code = code
|
|
16
|
-
|
|
17
|
-
responseBody.timestamp = new Date().getTime()
|
|
18
|
-
return responseBody
|
|
19
|
-
}
|
|
1
|
+
const responseBody = {
|
|
2
|
+
message: '',
|
|
3
|
+
timestamp: 0,
|
|
4
|
+
result: null as unknown,
|
|
5
|
+
code: 0,
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
export function builder(data: unknown, message = 'success', code = 0) {
|
|
9
|
+
responseBody.result = data
|
|
10
|
+
|
|
11
|
+
if (message !== undefined && message !== null)
|
|
12
|
+
responseBody.message = message
|
|
13
|
+
|
|
14
|
+
if (code !== undefined && code !== 0)
|
|
15
|
+
responseBody.code = code
|
|
16
|
+
|
|
17
|
+
responseBody.timestamp = new Date().getTime()
|
|
18
|
+
return responseBody
|
|
19
|
+
}
|
package/netlify.toml
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
[build]
|
|
2
|
-
base = "/"
|
|
3
|
-
publish = "dist"
|
|
4
|
-
command = "pnpm run build:pro"
|
|
5
|
-
|
|
6
|
-
[build.environment]
|
|
7
|
-
NODE_VERSION = "20"
|
|
8
|
-
|
|
9
|
-
[[redirects]]
|
|
10
|
-
from = "/*"
|
|
11
|
-
to = "/index.html"
|
|
12
|
-
status = 200
|
|
1
|
+
[build]
|
|
2
|
+
base = "/"
|
|
3
|
+
publish = "dist"
|
|
4
|
+
command = "pnpm run build:pro"
|
|
5
|
+
|
|
6
|
+
[build.environment]
|
|
7
|
+
NODE_VERSION = "20"
|
|
8
|
+
|
|
9
|
+
[[redirects]]
|
|
10
|
+
from = "/*"
|
|
11
|
+
to = "/index.html"
|
|
12
|
+
status = 200
|
package/package.json
CHANGED
|
@@ -1,114 +1,135 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "af-mobile-client-vue3",
|
|
3
|
-
"type": "module",
|
|
4
|
-
"version": "1.3.
|
|
5
|
-
"packageManager": "pnpm@10.13.1",
|
|
6
|
-
"description": "Vue + Vite component lib",
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"vue
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
"@
|
|
50
|
-
"@
|
|
51
|
-
"@
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
"
|
|
86
|
-
"
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
"
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
"
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
"
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
"vite": "^
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "af-mobile-client-vue3",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "1.3.32",
|
|
5
|
+
"packageManager": "pnpm@10.13.1",
|
|
6
|
+
"description": "Vue + Vite component lib",
|
|
7
|
+
"main": "./src/index.ts",
|
|
8
|
+
"module": "./src/index.ts",
|
|
9
|
+
"types": "./src/index.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./src/index.ts",
|
|
13
|
+
"import": "./src/index.ts"
|
|
14
|
+
},
|
|
15
|
+
"./types/auth": {
|
|
16
|
+
"types": "./src/types/auth.ts",
|
|
17
|
+
"import": "./src/types/auth.ts"
|
|
18
|
+
},
|
|
19
|
+
"./types/platform": {
|
|
20
|
+
"types": "./src/types/platform.ts",
|
|
21
|
+
"import": "./src/types/platform.ts"
|
|
22
|
+
},
|
|
23
|
+
"./types/settings": {
|
|
24
|
+
"types": "./src/types/settings.ts",
|
|
25
|
+
"import": "./src/types/settings.ts"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"engines": {
|
|
29
|
+
"node": ">=20.19.0"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"dev": "cross-env MOCK_SERVER_PORT=8086 vite",
|
|
33
|
+
"compress": "node ./compress.js",
|
|
34
|
+
"build:dev": "vue-tsc --noEmit && vite build --mode development && pnpm run compress",
|
|
35
|
+
"build:pro": "vue-tsc --noEmit && vite build --mode production && pnpm run compress",
|
|
36
|
+
"preview": "vite preview",
|
|
37
|
+
"lint": "eslint .",
|
|
38
|
+
"lint:fix": "eslint . --fix",
|
|
39
|
+
"release": "bumpp --commit --push --tag",
|
|
40
|
+
"typecheck": "vue-tsc --noEmit",
|
|
41
|
+
"commitlint": "commitlint --edit",
|
|
42
|
+
"prepare": "simple-git-hooks"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@iconify/vue": "4.3.0",
|
|
46
|
+
"@micro-zoe/micro-app": "1.0.0-rc.26",
|
|
47
|
+
"@unhead/vue": "2.0.12",
|
|
48
|
+
"@vant/area-data": "^2.0.0",
|
|
49
|
+
"@vant/touch-emulator": "^1.4.0",
|
|
50
|
+
"@vant/use": "^1.6.0",
|
|
51
|
+
"@vueuse/core": "^13.5.0",
|
|
52
|
+
"axios": "^1.10.0",
|
|
53
|
+
"crypto-js": "^4.2.0",
|
|
54
|
+
"dayjs": "^1.11.13",
|
|
55
|
+
"echarts": "^5.6.0",
|
|
56
|
+
"lodash-es": "^4.17.21",
|
|
57
|
+
"nprogress": "^0.2.0",
|
|
58
|
+
"ol": "^10.5.0",
|
|
59
|
+
"pinia": "^3.0.3",
|
|
60
|
+
"pinia-plugin-persistedstate": "^4.4.1",
|
|
61
|
+
"resize-detector": "^0.3.0",
|
|
62
|
+
"vant": "^4.9.21",
|
|
63
|
+
"vconsole": "^3.15.1",
|
|
64
|
+
"vue": "^3.5.17",
|
|
65
|
+
"vue-i18n": "^11.1.10",
|
|
66
|
+
"vue-router": "^4.5.1",
|
|
67
|
+
"vue3-hash-calendar": "^1.1.3"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@antfu/eslint-config": "4.17.0",
|
|
71
|
+
"@commitlint/cli": "^19.8.1",
|
|
72
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
73
|
+
"@commitlint/types": "^19.8.1",
|
|
74
|
+
"@iconify/json": "2.2.318",
|
|
75
|
+
"@iconify/utils": "^2.3.0",
|
|
76
|
+
"@intlify/unplugin-vue-i18n": "^6.0.8",
|
|
77
|
+
"@types/crypto-js": "^4.2.2",
|
|
78
|
+
"@types/lodash-es": "^4.17.12",
|
|
79
|
+
"@types/node": "^24.0.14",
|
|
80
|
+
"@types/nprogress": "^0.2.3",
|
|
81
|
+
"@unocss/eslint-config": "66.3.3",
|
|
82
|
+
"@vitejs/plugin-legacy": "^7.0.1",
|
|
83
|
+
"@vitejs/plugin-vue": "^6.0.0",
|
|
84
|
+
"autoprefixer": "^10.4.21",
|
|
85
|
+
"bumpp": "^10.2.0",
|
|
86
|
+
"consola": "^3.4.2",
|
|
87
|
+
"cross-env": "^7.0.3",
|
|
88
|
+
"eslint": "^9.31.0",
|
|
89
|
+
"eslint-plugin-format": "^1.0.1",
|
|
90
|
+
"less": "^4.4.0",
|
|
91
|
+
"lint-staged": "^16.1.2",
|
|
92
|
+
"mockjs": "^1.1.0",
|
|
93
|
+
"postcss-mobile-forever": "^5.0.0",
|
|
94
|
+
"rollup": "^4.45.1",
|
|
95
|
+
"simple-git-hooks": "^2.13.0",
|
|
96
|
+
"tar": "^7.4.3",
|
|
97
|
+
"terser": "^5.43.1",
|
|
98
|
+
"typescript": "^5.8.3",
|
|
99
|
+
"unocss": "66.3.3",
|
|
100
|
+
"vite": "^7.0.5",
|
|
101
|
+
"vite-plugin-compression": "^0.5.1",
|
|
102
|
+
"vite-plugin-mock-dev-server": "^1.9.1",
|
|
103
|
+
"vite-plugin-pwa": "^1.0.1",
|
|
104
|
+
"vite-plugin-sitemap": "^0.8.2",
|
|
105
|
+
"vite-plugin-vconsole": "^2.1.1",
|
|
106
|
+
"vite-plugin-vue-devtools": "^7.7.7",
|
|
107
|
+
"vue-tsc": "^3.0.2"
|
|
108
|
+
},
|
|
109
|
+
"pnpm": {
|
|
110
|
+
"allowedDeprecatedVersions": {
|
|
111
|
+
"glob": "7.2.3",
|
|
112
|
+
"inflight": "1.0.6",
|
|
113
|
+
"sourcemap-codec": "1.4.8"
|
|
114
|
+
},
|
|
115
|
+
"peerDependencyRules": {
|
|
116
|
+
"allowedVersions": {}
|
|
117
|
+
},
|
|
118
|
+
"onlyBuiltDependencies": [
|
|
119
|
+
"core-js",
|
|
120
|
+
"esbuild",
|
|
121
|
+
"simple-git-hooks",
|
|
122
|
+
"unrs-resolver"
|
|
123
|
+
]
|
|
124
|
+
},
|
|
125
|
+
"resolutions": {
|
|
126
|
+
"vite": "^7.0.5"
|
|
127
|
+
},
|
|
128
|
+
"simple-git-hooks": {
|
|
129
|
+
"pre-commit": "pnpm lint-staged",
|
|
130
|
+
"commit-msg": "pnpm commitlint $1"
|
|
131
|
+
},
|
|
132
|
+
"lint-staged": {
|
|
133
|
+
"*": "eslint --fix"
|
|
134
|
+
}
|
|
135
|
+
}
|
package/postcss.config.ts
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
|
-
// 此文件不支持热更新,修改后需要重启生效
|
|
2
|
-
|
|
3
|
-
// 需要转换的 fixed 选择器列表
|
|
4
|
-
const rootContainingBlockSelectorList = [
|
|
5
|
-
'.van-tabbar',
|
|
6
|
-
'.van-popup',
|
|
7
|
-
'.van-popup--bottom',
|
|
8
|
-
'.van-popup--top',
|
|
9
|
-
'.van-popup--left',
|
|
10
|
-
'.van-popup--right',
|
|
11
|
-
// 在这里添加你的选择器
|
|
12
|
-
]
|
|
13
|
-
|
|
14
|
-
export default {
|
|
15
|
-
plugins: {
|
|
16
|
-
'autoprefixer': {},
|
|
17
|
-
|
|
18
|
-
// https://github.com/wswmsword/postcss-mobile-forever
|
|
19
|
-
'postcss-mobile-forever': {
|
|
20
|
-
appSelector: '#system-app',
|
|
21
|
-
viewportWidth: 375,
|
|
22
|
-
maxDisplayWidth: 800,
|
|
23
|
-
border: true,
|
|
24
|
-
rootContainingBlockSelectorList,
|
|
25
|
-
},
|
|
26
|
-
},
|
|
27
|
-
}
|
|
1
|
+
// 此文件不支持热更新,修改后需要重启生效
|
|
2
|
+
|
|
3
|
+
// 需要转换的 fixed 选择器列表
|
|
4
|
+
const rootContainingBlockSelectorList = [
|
|
5
|
+
'.van-tabbar',
|
|
6
|
+
'.van-popup',
|
|
7
|
+
'.van-popup--bottom',
|
|
8
|
+
'.van-popup--top',
|
|
9
|
+
'.van-popup--left',
|
|
10
|
+
'.van-popup--right',
|
|
11
|
+
// 在这里添加你的选择器
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
export default {
|
|
15
|
+
plugins: {
|
|
16
|
+
'autoprefixer': {},
|
|
17
|
+
|
|
18
|
+
// https://github.com/wswmsword/postcss-mobile-forever
|
|
19
|
+
'postcss-mobile-forever': {
|
|
20
|
+
appSelector: '#system-app',
|
|
21
|
+
viewportWidth: 375,
|
|
22
|
+
maxDisplayWidth: 800,
|
|
23
|
+
border: true,
|
|
24
|
+
rootContainingBlockSelectorList,
|
|
25
|
+
},
|
|
26
|
+
},
|
|
27
|
+
}
|
package/public/favicon.svg
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<svg t="1709866807903" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4913" width="32" height="32">
|
|
2
|
-
<path d="M512 598.528a111.232 111.232 0 0 0-111.232 111.2064V870.4h222.464v-160.6656c0-61.44-49.792-111.232-111.232-111.232z m0 58.0608c-30.72 0-55.6032 24.9088-55.6032 55.6288v105.0368h111.2064v-105.0368c0-30.72-24.8832-55.6288-55.6032-55.6288z" fill="#FB4D31" p-id="4914"></path>
|
|
3
|
-
<path d="M542.08 270.208l45.2608-78.5408a24.5248 24.5248 0 0 0 0-25.6A26.4448 26.4448 0 0 0 564.1472 153.6a26.3424 26.3424 0 0 0-22.5792 13.44L512 217.6256l-29.5424-50.5344c-4.5824-8.192-13.184-13.312-22.5536-13.4912a26.4448 26.4448 0 0 0-23.2448 12.4928 24.5248 24.5248 0 0 0 0 25.6l45.2352 78.5152L156.928 832.768a24.4736 24.4736 0 0 0 0.3328 25.088c4.8384 7.8336 13.3888 12.544 22.5792 12.5184h664.3456c9.3184 0 17.92-4.7616 22.6304-12.4672a24.4736 24.4736 0 0 0 0.3072-25.088l-325.0176-562.688v0.0512zM619.52 816.64h-33.3568c-12.3648 0-9.6768 0.1024-65.0496 0H512c-55.3728 0.1024-24.704 0-61.7984 0H225.28L512 322.1248 798.72 816.64h-179.2z" fill="#000000" p-id="4915"></path>
|
|
4
|
-
</svg>
|
|
1
|
+
<svg t="1709866807903" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4913" width="32" height="32">
|
|
2
|
+
<path d="M512 598.528a111.232 111.232 0 0 0-111.232 111.2064V870.4h222.464v-160.6656c0-61.44-49.792-111.232-111.232-111.232z m0 58.0608c-30.72 0-55.6032 24.9088-55.6032 55.6288v105.0368h111.2064v-105.0368c0-30.72-24.8832-55.6288-55.6032-55.6288z" fill="#FB4D31" p-id="4914"></path>
|
|
3
|
+
<path d="M542.08 270.208l45.2608-78.5408a24.5248 24.5248 0 0 0 0-25.6A26.4448 26.4448 0 0 0 564.1472 153.6a26.3424 26.3424 0 0 0-22.5792 13.44L512 217.6256l-29.5424-50.5344c-4.5824-8.192-13.184-13.312-22.5536-13.4912a26.4448 26.4448 0 0 0-23.2448 12.4928 24.5248 24.5248 0 0 0 0 25.6l45.2352 78.5152L156.928 832.768a24.4736 24.4736 0 0 0 0.3328 25.088c4.8384 7.8336 13.3888 12.544 22.5792 12.5184h664.3456c9.3184 0 17.92-4.7616 22.6304-12.4672a24.4736 24.4736 0 0 0 0.3072-25.088l-325.0176-562.688v0.0512zM619.52 816.64h-33.3568c-12.3648 0-9.6768 0.1024-65.0496 0H512c-55.3728 0.1024-24.704 0-61.7984 0H225.28L512 322.1248 798.72 816.64h-179.2z" fill="#000000" p-id="4915"></path>
|
|
4
|
+
</svg>
|