@kengic/uni 0.7.14-beta.1 → 0.7.14-beta.4
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/component/KgLocaleSelector/KgLocaleSelector.vue +100 -0
- package/component/KgLocaleSelector/index.ts +1 -0
- package/component/KgNavBar/KgNavBar.vue +1 -1
- package/component/{KgUpdatePopup/KgUpdatePopup.vue → KgUpdateNotice/KgUpdateNotice.vue} +2 -1
- package/component/KgUpdateNotice/index.ts +6 -0
- package/component/{KgWarehouse/KgWarehouse.vue → KgWarehouseSelector/KgWarehouseSelector.vue} +28 -15
- package/component/{KgWarehouse → KgWarehouseSelector}/index.hooks.ts +1 -2
- package/component/KgWarehouseSelector/index.ts +9 -0
- package/component/{KgStation/KgStation.vue → KgWorkStationSelector/KgWorkStationSelector.vue} +2 -3
- package/component/{KgStation → KgWorkStationSelector}/index.hooks.ts +1 -1
- package/component/KgWorkStationSelector/index.ts +9 -0
- package/component/index.ts +4 -3
- package/{store → config}/app.store.ts +1 -0
- package/config/index.ts +3 -1
- package/index.ts +0 -1
- package/package.json +2 -2
- package/page/KgPageMy.vue +14 -50
- package/service/http-client.ts +3 -5
- package/util/kg.util.ts +1 -1
- package/component/KgStation/index.ts +0 -4
- package/component/KgUpdatePopup/index.ts +0 -1
- package/component/KgWarehouse/index.ts +0 -4
- /package/component/{KgWarehouse → KgWarehouseSelector}/index.store.ts +0 -0
- /package/component/{KgStation → KgWorkStationSelector}/index.store.ts +0 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<UniPopup ref="popupRef$" :type="'bottom'" class="kg-locale-selector">
|
|
3
|
+
<UniCard :isFull="true" :title="'选择语言'">
|
|
4
|
+
<view>
|
|
5
|
+
<view class="body">
|
|
6
|
+
<view v-for="item in KG.LOCALE_DATA_LIST" :key="item.code" class="item">{{ item.text }}</view>
|
|
7
|
+
<UniDataCheckbox v-model="currentLocale$" :localdata="localeDataList$" />
|
|
8
|
+
</view>
|
|
9
|
+
<view class="buttons">
|
|
10
|
+
<button class="btn btn-cancel" @tap.stop="onCancel()">取消</button>
|
|
11
|
+
<button :type="'primary' as any" class="btn btn-ok" @tap.stop="onOk">确认</button>
|
|
12
|
+
</view>
|
|
13
|
+
</view>
|
|
14
|
+
</UniCard>
|
|
15
|
+
</UniPopup>
|
|
16
|
+
</template>
|
|
17
|
+
|
|
18
|
+
<!--语言选择-->
|
|
19
|
+
<script lang="ts" setup>
|
|
20
|
+
import { UniDataCheckbox, UniPopup } from '../../uni-ui';
|
|
21
|
+
import { ref } from 'vue';
|
|
22
|
+
import { KG } from '../../model';
|
|
23
|
+
|
|
24
|
+
const emit = defineEmits(['ok']);
|
|
25
|
+
|
|
26
|
+
//region DATA
|
|
27
|
+
//----------------------------------------------------------------------------------------------------
|
|
28
|
+
const popupRef$ = ref<any>(null);
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* 当前选择的语言.
|
|
32
|
+
*/
|
|
33
|
+
const currentLocale$ = ref<string>('');
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* 语言数据列表.
|
|
37
|
+
*/
|
|
38
|
+
const localeDataList$ = ref<Array<{ text: string; value: string }>>([]);
|
|
39
|
+
//----------------------------------------------------------------------------------------------------
|
|
40
|
+
//endregion
|
|
41
|
+
|
|
42
|
+
//region FUNCTION
|
|
43
|
+
//----------------------------------------------------------------------------------------------------
|
|
44
|
+
/**
|
|
45
|
+
* 语言选择--取消.
|
|
46
|
+
*/
|
|
47
|
+
function onCancel() {
|
|
48
|
+
popupRef$.value?.close();
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* 语言选择--确定.
|
|
53
|
+
*/
|
|
54
|
+
function onOk() {
|
|
55
|
+
console.log('currentLocale$', currentLocale$.value);
|
|
56
|
+
popupRef$.value?.close();
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* 打开弹窗.
|
|
61
|
+
*/
|
|
62
|
+
function open() {
|
|
63
|
+
popupRef$.value?.open();
|
|
64
|
+
}
|
|
65
|
+
//----------------------------------------------------------------------------------------------------
|
|
66
|
+
//endregion
|
|
67
|
+
|
|
68
|
+
defineExpose({ open });
|
|
69
|
+
</script>
|
|
70
|
+
|
|
71
|
+
<style>
|
|
72
|
+
.kg-locale-selector :deep(.uni-card) {
|
|
73
|
+
margin: 0 2px 1px 1px !important;
|
|
74
|
+
box-shadow: none !important;
|
|
75
|
+
border-radius: 3px !important;
|
|
76
|
+
border-left-width: 1px !important;
|
|
77
|
+
padding: 0px !important;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.kg-locale-selector :deep(.uni-card) .uni-card__header {
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.kg-locale-selector :deep(.uni-card) .uni-card__content {
|
|
84
|
+
padding: 0px !important;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.kg-locale-selector :deep(.uni-card) .buttons {
|
|
88
|
+
display: flex;
|
|
89
|
+
align-items: center;
|
|
90
|
+
justify-content: space-between;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.kg-locale-selector :deep(.uni-card) .buttons uni-button {
|
|
94
|
+
flex: 1;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.kg-locale-selector :deep(.uni-card) .buttons uni-button + uni-button {
|
|
98
|
+
margin-left: 1px;
|
|
99
|
+
}
|
|
100
|
+
</style>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as KgLocaleSelector } from './KgLocaleSelector.vue';
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
import { computed, ref } from 'vue';
|
|
18
18
|
import { UniIcons, UniNavBar } from '../../uni-ui';
|
|
19
19
|
import { KgUtil } from '../../util';
|
|
20
|
-
import { KgUpdatePopup } from '../
|
|
20
|
+
import { KgUpdatePopup } from '../KgUpdateNotice';
|
|
21
21
|
|
|
22
22
|
/**
|
|
23
23
|
* 顶部标题栏.
|
|
@@ -18,10 +18,11 @@
|
|
|
18
18
|
</view>
|
|
19
19
|
</template>
|
|
20
20
|
|
|
21
|
+
<!--升级提示-->
|
|
21
22
|
<script lang="ts" name="KgUpdatePopup" setup>
|
|
22
23
|
import { computed, onMounted, onUnmounted, PropType, ref } from 'vue';
|
|
23
24
|
import { UniPopup, UniPopupDialog } from '../../uni-ui';
|
|
24
|
-
import { useAppStore } from '../../
|
|
25
|
+
import { useAppStore } from '../../config/app.store';
|
|
25
26
|
import { KgUtil } from '../../util';
|
|
26
27
|
|
|
27
28
|
/**
|
package/component/{KgWarehouse/KgWarehouse.vue → KgWarehouseSelector/KgWarehouseSelector.vue}
RENAMED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<UniPopup ref="popupRef" :type="'dialog'">
|
|
3
3
|
<UniPopupDialog :before-close="true" title="选择仓库" @confirm="onOk">
|
|
4
|
-
<UniDataCheckbox v-model="currentWhId" :localdata="
|
|
4
|
+
<UniDataCheckbox v-model="currentWhId$" :localdata="warehouseDataList$" />
|
|
5
5
|
</UniPopupDialog>
|
|
6
6
|
</UniPopup>
|
|
7
7
|
</template>
|
|
8
8
|
|
|
9
|
+
<!--仓库选择-->
|
|
9
10
|
<script lang="ts" setup>
|
|
10
11
|
import { UniDataCheckbox, UniPopup, UniPopupDialog } from '../../uni-ui';
|
|
11
12
|
import { API } from '../../api';
|
|
12
13
|
import { computed, ref } from 'vue';
|
|
13
14
|
import { SysUserWarehouseDTO, WarehouseDTO } from '../../api/WMS/models';
|
|
14
15
|
import { useKgWarehouse } from './index.hooks';
|
|
15
|
-
import { useAppStore } from '../../
|
|
16
|
+
import { useAppStore } from '../../config/app.store';
|
|
16
17
|
import { KgUtil } from '../../util';
|
|
17
18
|
|
|
18
19
|
const emit = defineEmits(['ok']);
|
|
@@ -21,18 +22,30 @@
|
|
|
21
22
|
const kgWarehouse = useKgWarehouse();
|
|
22
23
|
|
|
23
24
|
const popupRef = ref<any>(null);
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
/**
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* 当前选择的仓库编号.
|
|
28
|
+
*/
|
|
29
|
+
const currentWhId$ = ref<string>('');
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* 仓库列表.
|
|
33
|
+
**/
|
|
34
|
+
const warehouseList$ = ref<Array<WarehouseDTO>>([]);
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* 选项列表.
|
|
38
|
+
*/
|
|
39
|
+
const warehouseDataList$ = ref<Array<{ text: string; value: string }>>([]);
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* 用户仓库列表.
|
|
43
|
+
*/
|
|
31
44
|
const userWarehouses = computed<Array<SysUserWarehouseDTO> | undefined>(() => appStore.getUserWarehouses);
|
|
32
45
|
|
|
33
46
|
/** 确定. */
|
|
34
47
|
function onOk() {
|
|
35
|
-
kgWarehouse.store.setWarehouse(
|
|
48
|
+
kgWarehouse.store.setWarehouse(warehouseList$.value.find((i) => i.whId === currentWhId$.value));
|
|
36
49
|
popupRef.value?.close();
|
|
37
50
|
emit('ok');
|
|
38
51
|
}
|
|
@@ -47,7 +60,7 @@
|
|
|
47
60
|
async function requestWarehouses(): Promise<void> {
|
|
48
61
|
try {
|
|
49
62
|
const { records } = await API.WMS.WarehouseController.ListVO({ params: { pageNo: 1, pageSize: 999 } });
|
|
50
|
-
|
|
63
|
+
warehouseList$.value = (records ?? []).filter((i) => {
|
|
51
64
|
// 管理员拥有所有仓库
|
|
52
65
|
if (KgUtil.isAdminUser()) {
|
|
53
66
|
return true;
|
|
@@ -56,20 +69,20 @@
|
|
|
56
69
|
return userWarehouses.value?.find((j) => j.wh_id === i.whId);
|
|
57
70
|
});
|
|
58
71
|
|
|
59
|
-
|
|
72
|
+
warehouseDataList$.value = warehouseList$.value.map((i: WarehouseDTO) => ({
|
|
60
73
|
text: `${i.whDsc ?? ' '} - ${i.whId ?? ' '}`,
|
|
61
74
|
value: i.whId ?? '',
|
|
62
75
|
}));
|
|
63
76
|
|
|
64
|
-
const currentWarehouse =
|
|
77
|
+
const currentWarehouse = warehouseList$.value.find((i) => i.whId === kgWarehouse.warehouse.value?.whId) ?? null;
|
|
65
78
|
// 如果当前仓库不为空, 且有效(存在于当前仓库列表中), 则继续使用
|
|
66
79
|
if (currentWarehouse) {
|
|
67
|
-
currentWhId
|
|
80
|
+
currentWhId$.value = currentWarehouse.whId ?? '';
|
|
68
81
|
}
|
|
69
82
|
// 否则, 清空当前仓库, 并默认选中第一个仓库
|
|
70
83
|
else {
|
|
71
84
|
kgWarehouse.store.setWarehouse(null);
|
|
72
|
-
currentWhId
|
|
85
|
+
currentWhId$.value = warehouseList$.value[0]?.whId ?? '';
|
|
73
86
|
}
|
|
74
87
|
} catch (e) {
|
|
75
88
|
console.error(e);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { computed, ComputedRef } from 'vue';
|
|
2
2
|
import { IKgWarehouseStore, useKgWarehouseStore } from './index.store';
|
|
3
3
|
import { WarehouseDTO } from '../../api/WMS/models';
|
|
4
|
-
import { useAppStore } from '../../
|
|
4
|
+
import { useAppStore } from '../../config/app.store';
|
|
5
5
|
|
|
6
6
|
export type IUseKgWarehouse = {
|
|
7
7
|
store: IKgWarehouseStore;
|
|
@@ -35,7 +35,6 @@ export function useKgWarehouse(): IUseKgWarehouse {
|
|
|
35
35
|
return store.getWarehouse;
|
|
36
36
|
});
|
|
37
37
|
|
|
38
|
-
|
|
39
38
|
return {
|
|
40
39
|
store,
|
|
41
40
|
warehouse,
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { default as KgWarehouseSelector } from './KgWarehouseSelector.vue';
|
|
2
|
+
|
|
3
|
+
/** @deprecated 已废弃, 请使用 {@link KgWarehouseSelector} */
|
|
4
|
+
const KgWarehouse = KgWarehouseSelector;
|
|
5
|
+
|
|
6
|
+
export { KgWarehouseSelector, KgWarehouse };
|
|
7
|
+
|
|
8
|
+
export * from './index.hooks';
|
|
9
|
+
export * from './index.store';
|
package/component/{KgStation/KgStation.vue → KgWorkStationSelector/KgWorkStationSelector.vue}
RENAMED
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
</UniPopup>
|
|
28
28
|
</template>
|
|
29
29
|
|
|
30
|
+
<!--工作站过工作区选择-->
|
|
30
31
|
<script lang="ts" setup>
|
|
31
32
|
import { UniDataSelect, UniEasyinput, UniPopup, UniPopupDialog } from '../../uni-ui';
|
|
32
33
|
import { computed, nextTick, ref, watch } from 'vue';
|
|
@@ -64,9 +65,7 @@
|
|
|
64
65
|
/**
|
|
65
66
|
* 工作站下拉列表.
|
|
66
67
|
*/
|
|
67
|
-
const stationDatas = computed<Array<{ text: string; value: string }>>(() =>
|
|
68
|
-
stations.value.map((i) => ({ text: i.devcodDsc ?? i.devcod ?? '', value: i.devcod ?? '' })),
|
|
69
|
-
);
|
|
68
|
+
const stationDatas = computed<Array<{ text: string; value: string }>>(() => stations.value.map((i) => ({ text: i.devcodDsc ?? i.devcod ?? '', value: i.devcod ?? '' })));
|
|
70
69
|
|
|
71
70
|
/**
|
|
72
71
|
* 工作区下拉列表.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { computed, ComputedRef } from 'vue';
|
|
2
2
|
import { IKgStationStore, useKgStationStore } from './index.store';
|
|
3
|
-
import { useKgWarehouse } from '../
|
|
3
|
+
import { useKgWarehouse } from '../KgWarehouseSelector';
|
|
4
4
|
import { WorkstationAreaDTO, WorkstationDTO } from '../../api/WMS/models';
|
|
5
5
|
|
|
6
6
|
export type IUseKgStation = {
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { default as KgWorkStationSelector } from './KgWorkStationSelector.vue';
|
|
2
|
+
|
|
3
|
+
/** @deprecated 已废弃, 请使用 {@link KgWorkStationSelector} */
|
|
4
|
+
const KgStation = KgWorkStationSelector;
|
|
5
|
+
|
|
6
|
+
export { KgWorkStationSelector, KgStation };
|
|
7
|
+
|
|
8
|
+
export * from './index.hooks';
|
|
9
|
+
export * from './index.store';
|
package/component/index.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
export * from './KgLocaleSelector';
|
|
1
2
|
export * from './KgNavBar';
|
|
2
|
-
export * from './KgStation';
|
|
3
3
|
export * from './KgTabBar';
|
|
4
|
-
export * from './
|
|
5
|
-
export * from './
|
|
4
|
+
export * from './KgUpdateNotice';
|
|
5
|
+
export * from './KgWarehouseSelector';
|
|
6
|
+
export * from './KgWorkStationSelector';
|
package/config/index.ts
CHANGED
|
@@ -14,5 +14,7 @@ const setup = kgConfig;
|
|
|
14
14
|
//----------------------------------------------------------------------------------------------------
|
|
15
15
|
//endregion
|
|
16
16
|
|
|
17
|
-
export * from './config.hooks';
|
|
18
17
|
export { kgConfig, setup };
|
|
18
|
+
|
|
19
|
+
export * from './config.hooks';
|
|
20
|
+
export * from './config.store';
|
package/index.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kengic/uni",
|
|
3
|
-
"version": "0.7.14-beta.
|
|
3
|
+
"version": "0.7.14-beta.4",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"postinstall": "node bin/postinstall.mjs"
|
|
6
6
|
},
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@dcloudio/uni-i18n": "3.0.0-alpha-3080220230428001",
|
|
19
19
|
"@dcloudio/uni-stacktracey": "3.0.0-alpha-3080220230428001",
|
|
20
20
|
"@dcloudio/vite-plugin-uni": "3.0.0-alpha-3080220230428001",
|
|
21
|
-
"@kengic/core.core": "0.0.
|
|
21
|
+
"@kengic/core.core": "0.0.2-beta.0",
|
|
22
22
|
"@kengic/pont": "2.1.2",
|
|
23
23
|
"@types/lodash-es": "4.17.12",
|
|
24
24
|
"@types/node": "18.16.3",
|
package/page/KgPageMy.vue
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<view class="my">
|
|
3
3
|
<UniList class="uni-list--setting">
|
|
4
|
-
<UniListItem link title="语言" :right-text="localeRightText$$" @click="
|
|
4
|
+
<UniListItem link title="语言" :right-text="localeRightText$$" @click="openKgLocaleSelector" />
|
|
5
5
|
<UniListItem link title="仓库" :right-text="warehouseRightText$$" @click="openKgWarehouse" />
|
|
6
6
|
<UniListItem link title="工作站 - 工作区" :right-text="stationRightText$$" @click="openKgStation" />
|
|
7
7
|
<UniListItem link title="后端服务地址" :right-text="apiUrl" />
|
|
@@ -15,31 +15,20 @@
|
|
|
15
15
|
</UniList>
|
|
16
16
|
</view>
|
|
17
17
|
|
|
18
|
-
<
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
<view class="login-config-form"> TODO</view>
|
|
22
|
-
<view class="buttons">
|
|
23
|
-
<button class="btn btn-cancel" @tap.stop="$LocalePopup$cancel()">取消</button>
|
|
24
|
-
<button :type="'primary' as any" class="btn btn-ok" @tap.stop="$LocalePopup$ok">确认</button>
|
|
25
|
-
</view>
|
|
26
|
-
</view>
|
|
27
|
-
</UniCard>
|
|
28
|
-
</UniPopup>
|
|
29
|
-
|
|
30
|
-
<KgWarehouse ref="kgWarehouseRef$"></KgWarehouse>
|
|
31
|
-
<KgStation ref="kgStationRef$"></KgStation>
|
|
18
|
+
<KgLocaleSelector ref="kgLocaleSelectorRef$" />
|
|
19
|
+
<KgWarehouseSelector ref="kgWarehouseRef$" />
|
|
20
|
+
<KgWorkStationSelector ref="kgStationRef$" />
|
|
32
21
|
<!--#ifdef APP-PLUS-->
|
|
33
|
-
<
|
|
22
|
+
<KgUpdateNotice />
|
|
34
23
|
<!--#endif-->
|
|
35
24
|
<KgTabBar />
|
|
36
25
|
</template>
|
|
37
26
|
|
|
38
27
|
<script setup lang="ts">
|
|
39
28
|
import { computed, ref } from 'vue';
|
|
40
|
-
import { useAppStore } from '../
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
29
|
+
import { useAppStore } from '../config/app.store';
|
|
30
|
+
import { KgTabBar, KgUpdateNotice, KgWarehouseSelector, KgWorkStationSelector, useKgStation, useKgWarehouse } from '../component';
|
|
31
|
+
import { UniList, UniListItem } from '../uni-ui';
|
|
43
32
|
import { KgUtil } from '../util';
|
|
44
33
|
|
|
45
34
|
const appStore = useAppStore();
|
|
@@ -50,7 +39,7 @@
|
|
|
50
39
|
// ----------------------------------------------------------------------------------------------------
|
|
51
40
|
const kgWarehouseRef$ = ref<any>(null);
|
|
52
41
|
const kgStationRef$ = ref<any>(null);
|
|
53
|
-
const
|
|
42
|
+
const kgLocaleSelectorRef$ = ref<any>(null);
|
|
54
43
|
|
|
55
44
|
/**
|
|
56
45
|
* 语言的右侧文本.
|
|
@@ -95,35 +84,21 @@
|
|
|
95
84
|
}
|
|
96
85
|
|
|
97
86
|
/**
|
|
98
|
-
*
|
|
87
|
+
* 打开「语言选择」.
|
|
99
88
|
*/
|
|
100
|
-
function
|
|
101
|
-
|
|
89
|
+
function openKgLocaleSelector() {
|
|
90
|
+
kgLocaleSelectorRef$.value?.open();
|
|
102
91
|
}
|
|
103
92
|
|
|
104
93
|
/**
|
|
105
|
-
*
|
|
106
|
-
*/
|
|
107
|
-
function $LocalePopup$cancel() {
|
|
108
|
-
localePopupRef$.value?.close();
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
/**
|
|
112
|
-
* 语言选择弹窗--确定.
|
|
113
|
-
*/
|
|
114
|
-
function $LocalePopup$ok() {
|
|
115
|
-
localePopupRef$.value?.close();
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
/**
|
|
119
|
-
* 打开仓库选择弹窗.
|
|
94
|
+
* 打开「仓库选择」.
|
|
120
95
|
*/
|
|
121
96
|
function openKgWarehouse() {
|
|
122
97
|
kgWarehouseRef$.value?.open();
|
|
123
98
|
}
|
|
124
99
|
|
|
125
100
|
/**
|
|
126
|
-
*
|
|
101
|
+
* 打开「工作站工作区选择」.
|
|
127
102
|
*/
|
|
128
103
|
function openKgStation() {
|
|
129
104
|
kgStationRef$.value?.open();
|
|
@@ -173,15 +148,4 @@
|
|
|
173
148
|
.my :deep .uni-list-item__content-title {
|
|
174
149
|
font-size: 13px;
|
|
175
150
|
}
|
|
176
|
-
|
|
177
|
-
.my--uni-popup--locale .uni-card {
|
|
178
|
-
margin: 0 1px 1px 1px !important;
|
|
179
|
-
box-shadow: none !important;
|
|
180
|
-
border-radius: 3px !important;
|
|
181
|
-
border-left-width: 1px !important;
|
|
182
|
-
padding: 0px !important;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.my--uni-popup--locale .uni-card .uni-card__header {
|
|
186
|
-
}
|
|
187
151
|
</style>
|
package/service/http-client.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { useAppStore } from '../
|
|
1
|
+
import { useAppStore } from '../config/app.store';
|
|
2
2
|
import { KgUtil } from '../util';
|
|
3
|
-
import { useKgWarehouse } from '../component/
|
|
4
|
-
import { useKgStation } from '../component/
|
|
3
|
+
import { useKgWarehouse } from '../component/KgWarehouseSelector/index.hooks';
|
|
4
|
+
import { useKgStation } from '../component/KgWorkStationSelector';
|
|
5
5
|
import { isNil } from 'lodash-es';
|
|
6
6
|
import dayjs from 'dayjs';
|
|
7
7
|
import { KG } from '../model';
|
|
@@ -305,8 +305,6 @@ const _httpClient: IHttpClient = {
|
|
|
305
305
|
break;
|
|
306
306
|
|
|
307
307
|
case 401:
|
|
308
|
-
// store.dispatch('logout');
|
|
309
|
-
|
|
310
308
|
reject(response);
|
|
311
309
|
break;
|
|
312
310
|
|
package/util/kg.util.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { cloneDeep, isArray, isNil, isObjectLike, reduce } from 'lodash-es';
|
|
|
2
2
|
import { toRaw, unref } from 'vue';
|
|
3
3
|
import { API } from '../api';
|
|
4
4
|
import { useKgStation, useKgWarehouse } from '../component';
|
|
5
|
-
import { useAppStore } from '../
|
|
5
|
+
import { useAppStore } from '../config/app.store';
|
|
6
6
|
import dayjs, { Dayjs } from 'dayjs';
|
|
7
7
|
import { KG } from '../model';
|
|
8
8
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { default as KgUpdatePopup } from './KgUpdatePopup.vue';
|
|
File without changes
|
|
File without changes
|