@dazhicheng/ui 1.5.247 → 1.5.249

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.
@@ -0,0 +1,29 @@
1
+ /** 亏损原因一级下拉项 */
2
+ export type LossPrimaryReasonDropdownItem = {
3
+ id?: number;
4
+ businessLine?: string;
5
+ /** 业务类型:TICKETING / REFUND / REBOOK */
6
+ businessType?: string;
7
+ reasonName?: string;
8
+ [key: string]: any;
9
+ };
10
+ /** 亏损原因细类下拉项 */
11
+ export type LossSecondaryReasonDropdownItem = {
12
+ id?: number;
13
+ primaryReasonId?: number;
14
+ reasonName?: string;
15
+ [key: string]: any;
16
+ };
17
+ /** 一级下拉列表 GET /rule/lossReason/primaryDropdownList */
18
+ export declare function primaryDropdownListLossReason(params?: {
19
+ businessLine?: string;
20
+ businessType?: string;
21
+ }, options?: {
22
+ [key: string]: any;
23
+ }): Promise<LossPrimaryReasonDropdownItem[]>;
24
+ /** 二级下拉列表 GET /rule/lossReason/secondaryDropdownList */
25
+ export declare function secondaryDropdownListLossReason(params?: {
26
+ primaryReasonId?: number;
27
+ }, options?: {
28
+ [key: string]: any;
29
+ }): Promise<LossSecondaryReasonDropdownItem[]>;
@@ -0,0 +1,17 @@
1
+ import { request as s } from "../utils/xhr.js";
2
+ async function e(o, r) {
3
+ return s.get({
4
+ url: "/rule/lossReason/primaryDropdownList",
5
+ params: o
6
+ });
7
+ }
8
+ async function t(o, r) {
9
+ return s.get({
10
+ url: "/rule/lossReason/secondaryDropdownList",
11
+ params: o
12
+ });
13
+ }
14
+ export {
15
+ e as primaryDropdownListLossReason,
16
+ t as secondaryDropdownListLossReason
17
+ };
@@ -0,0 +1,28 @@
1
+ /** 供应商配置号基础信息 */
2
+ export type SupplierConfigBaseInfoItem = {
3
+ id?: number;
4
+ supplierConfigPcc?: string;
5
+ supplierManageId?: number;
6
+ supplierManageName?: string;
7
+ [key: string]: any;
8
+ };
9
+ /** 有效供应商列表项 */
10
+ export type SupplierManageListItem = {
11
+ id?: number;
12
+ supplierCode?: string;
13
+ supplierName?: string;
14
+ [key: string]: any;
15
+ };
16
+ /**
17
+ * 获取全部配置号列表
18
+ * POST /supplier/supplierConfigManage/config/getAllConfigList
19
+ */
20
+ export declare function getAllConfigListSupplierConfigManage(body?: Record<string, any>, options?: {
21
+ [key: string]: any;
22
+ }): Promise<SupplierConfigBaseInfoItem[]>;
23
+ /** 获取所有有效供应商 GET /supplier/supplierManage/listAllValid */
24
+ export declare function listAllValidSupplierManage(params?: {
25
+ searchKey?: string;
26
+ }, options?: {
27
+ [key: string]: any;
28
+ }): Promise<SupplierManageListItem[]>;
@@ -0,0 +1,17 @@
1
+ import { request as l } from "../utils/xhr.js";
2
+ async function p(i = {}, n) {
3
+ return l.post({
4
+ url: "/supplier/supplierConfigManage/config/getAllConfigList",
5
+ params: i
6
+ });
7
+ }
8
+ async function r(i, n) {
9
+ return l.get({
10
+ url: "/supplier/supplierManage/listAllValid",
11
+ params: i
12
+ });
13
+ }
14
+ export {
15
+ p as getAllConfigListSupplierConfigManage,
16
+ r as listAllValidSupplierManage
17
+ };
@@ -70,8 +70,6 @@ declare function __VLS_template(): {
70
70
  };
71
71
  $refs: {
72
72
  [x: string]: unknown;
73
- } & {
74
- contentRef: HTMLDivElement;
75
73
  };
76
74
  $slots: Readonly<{
77
75
  [name: string]: Slot<any> | undefined;
@@ -96,7 +94,7 @@ declare function __VLS_template(): {
96
94
  }) => any) | undefined;
97
95
  }>, {
98
96
  handleSubmit: () => void;
99
- openModal: ({ columns, displayFields, disabledColumnField, isExport }: import('./components/TableColumnModal.vue').OpenModalParams) => void;
97
+ openModal: ({ columns: source, displayFields, disabledColumnField, isExport }: import('./components/TableColumnModal.vue').OpenModalParams) => void;
100
98
  setModalProps(modalProps: import('../../../index').ModalRenderState): void;
101
99
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
102
100
  "on-submit": (val: {
@@ -135,7 +133,7 @@ declare function __VLS_template(): {
135
133
  }) => any) | undefined;
136
134
  }>, "setModalProps" | "openModal" | "handleSubmit"> & import('vue').ShallowUnwrapRef<{
137
135
  handleSubmit: () => void;
138
- openModal: ({ columns, displayFields, disabledColumnField, isExport }: import('./components/TableColumnModal.vue').OpenModalParams) => void;
136
+ openModal: ({ columns: source, displayFields, disabledColumnField, isExport }: import('./components/TableColumnModal.vue').OpenModalParams) => void;
139
137
  setModalProps(modalProps: import('../../../index').ModalRenderState): void;
140
138
  }> & {} & import('vue').ComponentCustomProperties & {} & {
141
139
  $slots: {
@@ -258,8 +256,6 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
258
256
  };
259
257
  $refs: {
260
258
  [x: string]: unknown;
261
- } & {
262
- contentRef: HTMLDivElement;
263
259
  };
264
260
  $slots: Readonly<{
265
261
  [name: string]: Slot<any> | undefined;
@@ -284,7 +280,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
284
280
  }) => any) | undefined;
285
281
  }>, {
286
282
  handleSubmit: () => void;
287
- openModal: ({ columns, displayFields, disabledColumnField, isExport }: import('./components/TableColumnModal.vue').OpenModalParams) => void;
283
+ openModal: ({ columns: source, displayFields, disabledColumnField, isExport }: import('./components/TableColumnModal.vue').OpenModalParams) => void;
288
284
  setModalProps(modalProps: import('../../../index').ModalRenderState): void;
289
285
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
290
286
  "on-submit": (val: {
@@ -323,7 +319,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
323
319
  }) => any) | undefined;
324
320
  }>, "setModalProps" | "openModal" | "handleSubmit"> & import('vue').ShallowUnwrapRef<{
325
321
  handleSubmit: () => void;
326
- openModal: ({ columns, displayFields, disabledColumnField, isExport }: import('./components/TableColumnModal.vue').OpenModalParams) => void;
322
+ openModal: ({ columns: source, displayFields, disabledColumnField, isExport }: import('./components/TableColumnModal.vue').OpenModalParams) => void;
327
323
  setModalProps(modalProps: import('../../../index').ModalRenderState): void;
328
324
  }> & {} & import('vue').ComponentCustomProperties & {} & {
329
325
  $slots: {