af-mobile-client-vue3 1.6.19 → 1.6.21
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/.env +11 -11
- package/package.json +121 -121
- package/src/api/user/index.ts +50 -50
- package/src/components/common/MateChat/apiService.ts +310 -310
- package/src/components/data/OtherCharge/OtherChargeGroupModal.vue +542 -542
- package/src/components/data/UserDetail/api.ts +24 -24
- package/src/components/data/UserDetail/index.vue +660 -660
- package/src/components/data/XFormGroup/doc/UserForm.vue +102 -102
- package/src/components/data/step/index.vue +1975 -1975
- package/src/router/invoiceRoutes.ts +37 -37
- package/src/services/api/Login.ts +6 -6
- package/src/services/v3Api.ts +170 -170
- package/src/stores/modules/user.ts +441 -441
- package/src/types/platform.ts +194 -194
- package/src/utils/Storage.ts +124 -124
- package/src/utils/http/index.ts +228 -228
- package/src/utils/login/loginVerify.ts +317 -317
- package/src/views/SafeInspection/SecurityCertificate/AddDevice/index.vue +662 -661
- package/src/views/SafeInspection/SecurityCertificate/OverallHiddenDangers/index.vue +376 -376
- package/src/views/SafeInspection/SecurityCertificate/contractSign/index.vue +80 -80
- package/src/views/SafeInspection/SecurityCertificate/photoSignature/SignatureComponent/SignatureComponent.vue +285 -285
- package/src/views/SafeInspection/SecurityCertificate/photoSignature/index.vue +258 -258
- package/src/views/SafeInspection/SecurityCertificate/photoSignature/slots/QinHuaSignature.vue +82 -82
- package/src/views/SafeInspection/SecurityCertificate/slots/GasDevice.vue +132 -132
- package/src/views/SafeInspection/SecurityCertificate/userInfo/index.vue +1 -0
- package/src/views/SafeInspection/SecurityCertificate/userInfo/upaddress.vue +239 -239
- package/src/views/SafeInspection/SecurityFormItem/XMultiSelect/index.vue +194 -194
- package/src/views/SafeInspection/SecurityFormItem/XSignature/index.vue +68 -68
- package/src/views/SafeInspection/SecurityFormItem/index.vue +418 -418
- package/src/views/component/UserDetailView/UserDetailPage.vue +78 -78
- package/src/views/component/UserDetailView/index.vue +234 -234
- package/src/views/external/index.vue +158 -158
- package/src/views/user/employeeBinding/index.vue +392 -392
- package/src/views/user/register/index.vue +995 -995
- 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/GasPurchaseRecords.vue +19 -19
- 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 +114 -114
- package/src/views/userRecords/PriceAdjustmentRecords.vue +19 -19
- package/src/views/userRecords/RepairRecords.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/TransferGasRecords.vue +19 -19
- package/src/views/userRecords/TransferRecords.vue +19 -19
- package/vite.config.ts +121 -121
- package/certs/127.0.0.1+2-key.pem +0 -28
- package/certs/127.0.0.1+2.pem +0 -27
- package/mock/modules/prose.mock.ts.timestamp-1758877157774.mjs +0 -53
- package/mock/modules/user.mock.ts.timestamp-1758877157774.mjs +0 -97
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import type { BaseUser } from './types'
|
|
2
|
-
import { post } from '@af-mobile-client-vue3/services/restTools'
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* 获取用户详情信息(通用接口)
|
|
6
|
-
* 各项目需要在自己的后端实现这个接口
|
|
7
|
-
*/
|
|
8
|
-
export function getCacheUserDetail(
|
|
9
|
-
f_userinfo_id: string,
|
|
10
|
-
): Promise<BaseUser> {
|
|
11
|
-
return post('/af-revenue/logic/mobile_getCacheUserDetail', {
|
|
12
|
-
f_userinfo_id,
|
|
13
|
-
})
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* 获取用户最近各种业务的时间(通用接口)
|
|
18
|
-
* 各项目可选实现这个接口
|
|
19
|
-
*/
|
|
20
|
-
export function getRecentBusinessTime(
|
|
21
|
-
f_userinfo_id: string,
|
|
22
|
-
): Promise<Record<string, string>> {
|
|
23
|
-
return post('/af-revenue/logic/mobile_getRecentBusinessTime', { f_userinfo_id })
|
|
24
|
-
}
|
|
1
|
+
import type { BaseUser } from './types'
|
|
2
|
+
import { post } from '@af-mobile-client-vue3/services/restTools'
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* 获取用户详情信息(通用接口)
|
|
6
|
+
* 各项目需要在自己的后端实现这个接口
|
|
7
|
+
*/
|
|
8
|
+
export function getCacheUserDetail(
|
|
9
|
+
f_userinfo_id: string,
|
|
10
|
+
): Promise<BaseUser> {
|
|
11
|
+
return post('/af-revenue/logic/mobile_getCacheUserDetail', {
|
|
12
|
+
f_userinfo_id,
|
|
13
|
+
})
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* 获取用户最近各种业务的时间(通用接口)
|
|
18
|
+
* 各项目可选实现这个接口
|
|
19
|
+
*/
|
|
20
|
+
export function getRecentBusinessTime(
|
|
21
|
+
f_userinfo_id: string,
|
|
22
|
+
): Promise<Record<string, string>> {
|
|
23
|
+
return post('/af-revenue/logic/mobile_getRecentBusinessTime', { f_userinfo_id })
|
|
24
|
+
}
|