@pisell/materials 2.2.115 → 2.2.116

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.
Files changed (29) hide show
  1. package/build/lowcode/assets-daily.json +11 -11
  2. package/build/lowcode/assets-dev.json +2 -2
  3. package/build/lowcode/assets-prod.json +11 -11
  4. package/build/lowcode/meta.js +1 -1
  5. package/build/lowcode/render/default/view.js +1 -1
  6. package/build/lowcode/view.js +1 -1
  7. package/es/components/table/Actions/component/ExportImport/components/ExportTable/function.js +2 -0
  8. package/lib/components/table/Actions/component/ExportImport/components/ExportTable/function.js +2 -0
  9. package/package.json +1 -1
  10. package/es/components/dataSourceComponents/provider/variables/VariablesContext.d.ts +0 -12
  11. package/es/components/dataSourceComponents/provider/variables/VariablesProvider.d.ts +0 -4
  12. package/es/components/page/index.d.ts +0 -6
  13. package/es/components/pisellGoodPassCard/index.d.ts +0 -50
  14. package/es/components/pisellQRScanner/index.d.ts +0 -24
  15. package/es/components/pisellQrcode/index.d.ts +0 -10
  16. package/es/components/productCard/index.d.ts +0 -7
  17. package/es/components/productCard/status.d.ts +0 -32
  18. package/es/components/productCard/types.d.ts +0 -84
  19. package/es/components/productCard/utils.d.ts +0 -31
  20. package/lib/components/dataSourceComponents/provider/variables/VariablesContext.d.ts +0 -12
  21. package/lib/components/dataSourceComponents/provider/variables/VariablesProvider.d.ts +0 -4
  22. package/lib/components/page/index.d.ts +0 -6
  23. package/lib/components/pisellGoodPassCard/index.d.ts +0 -50
  24. package/lib/components/pisellQRScanner/index.d.ts +0 -24
  25. package/lib/components/pisellQrcode/index.d.ts +0 -10
  26. package/lib/components/productCard/index.d.ts +0 -7
  27. package/lib/components/productCard/status.d.ts +0 -32
  28. package/lib/components/productCard/types.d.ts +0 -84
  29. package/lib/components/productCard/utils.d.ts +0 -31
@@ -99,6 +99,8 @@ export var batchExport = function batchExport(exportParams, exportImport) {
99
99
  params === null || params === void 0 || delete params.shipping_status;
100
100
  params === null || params === void 0 || delete params.payment_status;
101
101
  params === null || params === void 0 || delete params.status;
102
+ } else {
103
+ params === null || params === void 0 || delete params.ids;
102
104
  }
103
105
  params.export_select = exportImportTypeMap[type];
104
106
  return _batchExport(params);
@@ -76,6 +76,8 @@ var batchExport = (exportParams, exportImport) => {
76
76
  params == null ? true : delete params.shipping_status;
77
77
  params == null ? true : delete params.payment_status;
78
78
  params == null ? true : delete params.status;
79
+ } else {
80
+ params == null ? true : delete params.ids;
79
81
  }
80
82
  params.export_select = exportImportTypeMap[type];
81
83
  return _batchExport(params);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pisell/materials",
3
- "version": "2.2.115",
3
+ "version": "2.2.116",
4
4
  "main": "./lib/index.js",
5
5
  "module": "./es/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -1,12 +0,0 @@
1
- /// <reference types="react" />
2
- export interface VariablesContextType {
3
- children?: React.ReactNode;
4
- variables?: Record<string, any>;
5
- registerVariable?: (value: Record<string, any>) => void;
6
- parseVariable?: (str: string, localVariables?: Record<string, any>) => any;
7
- registerValueVariable?: (componentId: string, value: Record<string, any>) => void;
8
- registerFunctionVariable?: (componentId: string, value: Record<string, any>) => void;
9
- subscribeVariables?: (listener: (allVariables: Record<string, any>, updateVariables: Record<string, any>) => void) => () => void;
10
- }
11
- export declare const VariablesContext: import("react").Context<VariablesContextType>;
12
- export default VariablesContext;
@@ -1,4 +0,0 @@
1
- import React from 'react';
2
- import { VariablesContextType } from './VariablesContext';
3
- declare const VariablesProvider: React.FC<VariablesContextType>;
4
- export default VariablesProvider;
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- import { ConfigProviderProps } from '../config-provider';
3
- interface PageProps extends ConfigProviderProps {
4
- }
5
- declare const Page: (props: PageProps) => JSX.Element;
6
- export default Page;
@@ -1,50 +0,0 @@
1
- import React from 'react';
2
- import './index.less';
3
- interface ApplicableProductDetails {
4
- amount: string;
5
- type: string;
6
- resource_id: number;
7
- title: string;
8
- original_amount: string;
9
- }
10
- interface Discount {
11
- id: number;
12
- product_name: string;
13
- encoded: string;
14
- code: string;
15
- tag: string;
16
- expire_time?: string;
17
- product_id: number;
18
- relation_type: string;
19
- par_value: string;
20
- used_par_value: string;
21
- limit_status: string;
22
- limited_relation_product_data: any;
23
- balance: string;
24
- format_title: any;
25
- product: any;
26
- savedAmount: number;
27
- isDisabled: boolean;
28
- isSelected?: boolean;
29
- isAvailable?: boolean;
30
- isUsed?: boolean;
31
- applicableProductIds?: number[];
32
- applicableProductDetails: ApplicableProductDetails[];
33
- appliedProductDetails: any[];
34
- }
35
- export interface PisellGoodPassCardProps {
36
- /**数据源 */
37
- dataSource: Array<Discount>;
38
- /**事件 */
39
- onChange?: (current: {
40
- id: string | number;
41
- isSelected: boolean;
42
- }) => void;
43
- /**样式 */
44
- style: React.CSSProperties;
45
- /**快捷展示排序 */
46
- mixedSort?: (val: Discount[]) => Discount[];
47
- isInModal: boolean;
48
- }
49
- declare const index: (props: PisellGoodPassCardProps) => JSX.Element;
50
- export default index;
@@ -1,24 +0,0 @@
1
- import React from 'react';
2
- import './index.less';
3
- export interface PisellQRScannerProps {
4
- /** 是否可见 */
5
- visible: boolean;
6
- /** 是否显示上传图片按钮 */
7
- showUpload?: boolean;
8
- /** 关闭回调 */
9
- onClose: () => void;
10
- /** 扫码成功回调 */
11
- onScan: (value: string) => void;
12
- /**
13
- * 样式属性,可选
14
- * 注意: 不应传入renderMode等不必要属性
15
- */
16
- style?: React.CSSProperties;
17
- /** 类名,可选 */
18
- className?: string;
19
- }
20
- /**
21
- * 二维码扫描组件
22
- */
23
- declare const PisellQRScanner: React.FC<PisellQRScannerProps>;
24
- export default PisellQRScanner;
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- import './index.less';
3
- interface PisellQrcodeProps {
4
- size?: number;
5
- platform: 'pc' | 'h5' | 'ipad';
6
- value: string;
7
- className: string;
8
- }
9
- declare const PisellQrcode: React.FC<PisellQrcodeProps>;
10
- export default PisellQrcode;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import { ProductCardTypes } from './types';
3
- import './index.less';
4
- declare const ProductCard: React.FC<ProductCardTypes> & {
5
- V2: any;
6
- };
7
- export default ProductCard;
@@ -1,32 +0,0 @@
1
- import { ProductCardTypes, bundleType, optionType, productType } from './types';
2
- /**
3
- * @title: 套餐数据
4
- * @description:
5
- * @return {*}
6
- * @Author: WangHan
7
- * @Date: 2025-01-02 23:21
8
- */
9
- export declare const defaultBundle: bundleType;
10
- /**
11
- * @description: 单规格
12
- * @return {*}
13
- * @Author: WangHan
14
- * @Date: 2025-01-02 23:00
15
- */
16
- export declare const defaultOption: optionType;
17
- /**
18
- * @title: 商品商品类型
19
- * @description:
20
- * @return {*}
21
- * @Author: WangHan
22
- * @Date: 2025-01-02 22:48
23
- */
24
- export declare const defaultProduct: productType;
25
- /**
26
- * @title: 默认数据
27
- * @description:
28
- * @return {*}
29
- * @Author: WangHan
30
- * @Date: 2024-12-12 16:49
31
- */
32
- export declare const defaultValue: ProductCardTypes;
@@ -1,84 +0,0 @@
1
- export declare type bundleType = {
2
- id: number;
3
- name: string;
4
- num: number;
5
- price: number;
6
- total: number;
7
- origin_total?: number;
8
- price_type?: string;
9
- options?: optionType[];
10
- };
11
- /**
12
- * @description:
13
- * @return {*}
14
- * @Author: WangHan
15
- * @Date: 2025-01-02 23:00
16
- */
17
- export declare type optionType = {
18
- id: number;
19
- name: string;
20
- num: number;
21
- price: number;
22
- total: number;
23
- origin_total?: number;
24
- };
25
- /**
26
- * @title: 商品商品类型
27
- * @description:
28
- * @return {*}
29
- * @Author: WangHan
30
- * @Date: 2025-01-02 22:48
31
- */
32
- export declare type productType = {
33
- _id: string | number;
34
- id: number;
35
- name: string;
36
- price: number;
37
- total: number;
38
- num: number;
39
- origin_total?: number;
40
- image?: string;
41
- isShowNote?: boolean;
42
- note?: string;
43
- like_status?: string;
44
- bundle?: bundleType[];
45
- options?: optionType[];
46
- isShowAction?: boolean;
47
- actionText?: string;
48
- errorMessage?: string;
49
- product_option_string?: string;
50
- discount_reason?: string;
51
- relation_products?: any[];
52
- resource_id?: string | number;
53
- relation_form_name?: string;
54
- holder_title?: string;
55
- start_date?: string;
56
- end_date?: string;
57
- is_show_duration?: boolean;
58
- is_show_week?: boolean;
59
- };
60
- /**
61
- * 排序总配置
62
- */
63
- export declare type ProductCardTypes = {
64
- dataSource: productType;
65
- isShowImage?: boolean;
66
- isShowHolder?: boolean;
67
- isShowNote?: boolean;
68
- isShowPackageNote?: boolean;
69
- isShowDelete?: boolean;
70
- disabledEdit?: boolean;
71
- locale?: string;
72
- symbol?: string;
73
- isShowChangeHolder?: boolean;
74
- isShowChangeResource?: boolean;
75
- isShowChangeDate?: boolean;
76
- onAction?: (val: any) => void;
77
- onDelete?: (val: any) => void;
78
- onNote?: (val: any) => void;
79
- onLike?: (val: any) => void;
80
- onCard?: (val: any) => void;
81
- onChangeResource?: (val: any) => void;
82
- osWarnTips?: Array<string>;
83
- [key: string]: any;
84
- };
@@ -1,31 +0,0 @@
1
- import 'dayjs/locale/zh-cn';
2
- import 'dayjs/locale/en';
3
- import 'dayjs/locale/zh-tw';
4
- /**
5
- * @title: 是否英文
6
- * @description:
7
- * @param {any} item
8
- * @return {*}
9
- * @Author: WangHan
10
- * @Date: 2024-12-28 22:49
11
- */
12
- export declare const isEn: (item: any) => boolean;
13
- /**
14
- * @title: 跨日预约时间
15
- * @description:
16
- * @param {any} item
17
- * @return {*}
18
- * @Author: WangHan
19
- * @Date: 2024-12-28 22:50
20
- */
21
- export declare const formatMultiDayDate: (item: any) => string;
22
- /**
23
- * @title: 格式化服务的 开始时间-结束时间-时长, 用于展示
24
- * @description:
25
- * @param {any} item
26
- * @param {any} currentDate
27
- * @return {*}
28
- * @Author: zhiwei.Wang
29
- * @Date: 2024-04-26 14:04
30
- */
31
- export declare const getServiceTime: (item: any, currentDate: any) => string;
@@ -1,12 +0,0 @@
1
- /// <reference types="react" />
2
- export interface VariablesContextType {
3
- children?: React.ReactNode;
4
- variables?: Record<string, any>;
5
- registerVariable?: (value: Record<string, any>) => void;
6
- parseVariable?: (str: string, localVariables?: Record<string, any>) => any;
7
- registerValueVariable?: (componentId: string, value: Record<string, any>) => void;
8
- registerFunctionVariable?: (componentId: string, value: Record<string, any>) => void;
9
- subscribeVariables?: (listener: (allVariables: Record<string, any>, updateVariables: Record<string, any>) => void) => () => void;
10
- }
11
- export declare const VariablesContext: import("react").Context<VariablesContextType>;
12
- export default VariablesContext;
@@ -1,4 +0,0 @@
1
- import React from 'react';
2
- import { VariablesContextType } from './VariablesContext';
3
- declare const VariablesProvider: React.FC<VariablesContextType>;
4
- export default VariablesProvider;
@@ -1,6 +0,0 @@
1
- /// <reference types="react" />
2
- import { ConfigProviderProps } from '../config-provider';
3
- interface PageProps extends ConfigProviderProps {
4
- }
5
- declare const Page: (props: PageProps) => JSX.Element;
6
- export default Page;
@@ -1,50 +0,0 @@
1
- import React from 'react';
2
- import './index.less';
3
- interface ApplicableProductDetails {
4
- amount: string;
5
- type: string;
6
- resource_id: number;
7
- title: string;
8
- original_amount: string;
9
- }
10
- interface Discount {
11
- id: number;
12
- product_name: string;
13
- encoded: string;
14
- code: string;
15
- tag: string;
16
- expire_time?: string;
17
- product_id: number;
18
- relation_type: string;
19
- par_value: string;
20
- used_par_value: string;
21
- limit_status: string;
22
- limited_relation_product_data: any;
23
- balance: string;
24
- format_title: any;
25
- product: any;
26
- savedAmount: number;
27
- isDisabled: boolean;
28
- isSelected?: boolean;
29
- isAvailable?: boolean;
30
- isUsed?: boolean;
31
- applicableProductIds?: number[];
32
- applicableProductDetails: ApplicableProductDetails[];
33
- appliedProductDetails: any[];
34
- }
35
- export interface PisellGoodPassCardProps {
36
- /**数据源 */
37
- dataSource: Array<Discount>;
38
- /**事件 */
39
- onChange?: (current: {
40
- id: string | number;
41
- isSelected: boolean;
42
- }) => void;
43
- /**样式 */
44
- style: React.CSSProperties;
45
- /**快捷展示排序 */
46
- mixedSort?: (val: Discount[]) => Discount[];
47
- isInModal: boolean;
48
- }
49
- declare const index: (props: PisellGoodPassCardProps) => JSX.Element;
50
- export default index;
@@ -1,24 +0,0 @@
1
- import React from 'react';
2
- import './index.less';
3
- export interface PisellQRScannerProps {
4
- /** 是否可见 */
5
- visible: boolean;
6
- /** 是否显示上传图片按钮 */
7
- showUpload?: boolean;
8
- /** 关闭回调 */
9
- onClose: () => void;
10
- /** 扫码成功回调 */
11
- onScan: (value: string) => void;
12
- /**
13
- * 样式属性,可选
14
- * 注意: 不应传入renderMode等不必要属性
15
- */
16
- style?: React.CSSProperties;
17
- /** 类名,可选 */
18
- className?: string;
19
- }
20
- /**
21
- * 二维码扫描组件
22
- */
23
- declare const PisellQRScanner: React.FC<PisellQRScannerProps>;
24
- export default PisellQRScanner;
@@ -1,10 +0,0 @@
1
- import React from 'react';
2
- import './index.less';
3
- interface PisellQrcodeProps {
4
- size?: number;
5
- platform: 'pc' | 'h5' | 'ipad';
6
- value: string;
7
- className: string;
8
- }
9
- declare const PisellQrcode: React.FC<PisellQrcodeProps>;
10
- export default PisellQrcode;
@@ -1,7 +0,0 @@
1
- import React from 'react';
2
- import { ProductCardTypes } from './types';
3
- import './index.less';
4
- declare const ProductCard: React.FC<ProductCardTypes> & {
5
- V2: any;
6
- };
7
- export default ProductCard;
@@ -1,32 +0,0 @@
1
- import { ProductCardTypes, bundleType, optionType, productType } from './types';
2
- /**
3
- * @title: 套餐数据
4
- * @description:
5
- * @return {*}
6
- * @Author: WangHan
7
- * @Date: 2025-01-02 23:21
8
- */
9
- export declare const defaultBundle: bundleType;
10
- /**
11
- * @description: 单规格
12
- * @return {*}
13
- * @Author: WangHan
14
- * @Date: 2025-01-02 23:00
15
- */
16
- export declare const defaultOption: optionType;
17
- /**
18
- * @title: 商品商品类型
19
- * @description:
20
- * @return {*}
21
- * @Author: WangHan
22
- * @Date: 2025-01-02 22:48
23
- */
24
- export declare const defaultProduct: productType;
25
- /**
26
- * @title: 默认数据
27
- * @description:
28
- * @return {*}
29
- * @Author: WangHan
30
- * @Date: 2024-12-12 16:49
31
- */
32
- export declare const defaultValue: ProductCardTypes;
@@ -1,84 +0,0 @@
1
- export declare type bundleType = {
2
- id: number;
3
- name: string;
4
- num: number;
5
- price: number;
6
- total: number;
7
- origin_total?: number;
8
- price_type?: string;
9
- options?: optionType[];
10
- };
11
- /**
12
- * @description:
13
- * @return {*}
14
- * @Author: WangHan
15
- * @Date: 2025-01-02 23:00
16
- */
17
- export declare type optionType = {
18
- id: number;
19
- name: string;
20
- num: number;
21
- price: number;
22
- total: number;
23
- origin_total?: number;
24
- };
25
- /**
26
- * @title: 商品商品类型
27
- * @description:
28
- * @return {*}
29
- * @Author: WangHan
30
- * @Date: 2025-01-02 22:48
31
- */
32
- export declare type productType = {
33
- _id: string | number;
34
- id: number;
35
- name: string;
36
- price: number;
37
- total: number;
38
- num: number;
39
- origin_total?: number;
40
- image?: string;
41
- isShowNote?: boolean;
42
- note?: string;
43
- like_status?: string;
44
- bundle?: bundleType[];
45
- options?: optionType[];
46
- isShowAction?: boolean;
47
- actionText?: string;
48
- errorMessage?: string;
49
- product_option_string?: string;
50
- discount_reason?: string;
51
- relation_products?: any[];
52
- resource_id?: string | number;
53
- relation_form_name?: string;
54
- holder_title?: string;
55
- start_date?: string;
56
- end_date?: string;
57
- is_show_duration?: boolean;
58
- is_show_week?: boolean;
59
- };
60
- /**
61
- * 排序总配置
62
- */
63
- export declare type ProductCardTypes = {
64
- dataSource: productType;
65
- isShowImage?: boolean;
66
- isShowHolder?: boolean;
67
- isShowNote?: boolean;
68
- isShowPackageNote?: boolean;
69
- isShowDelete?: boolean;
70
- disabledEdit?: boolean;
71
- locale?: string;
72
- symbol?: string;
73
- isShowChangeHolder?: boolean;
74
- isShowChangeResource?: boolean;
75
- isShowChangeDate?: boolean;
76
- onAction?: (val: any) => void;
77
- onDelete?: (val: any) => void;
78
- onNote?: (val: any) => void;
79
- onLike?: (val: any) => void;
80
- onCard?: (val: any) => void;
81
- onChangeResource?: (val: any) => void;
82
- osWarnTips?: Array<string>;
83
- [key: string]: any;
84
- };
@@ -1,31 +0,0 @@
1
- import 'dayjs/locale/zh-cn';
2
- import 'dayjs/locale/en';
3
- import 'dayjs/locale/zh-tw';
4
- /**
5
- * @title: 是否英文
6
- * @description:
7
- * @param {any} item
8
- * @return {*}
9
- * @Author: WangHan
10
- * @Date: 2024-12-28 22:49
11
- */
12
- export declare const isEn: (item: any) => boolean;
13
- /**
14
- * @title: 跨日预约时间
15
- * @description:
16
- * @param {any} item
17
- * @return {*}
18
- * @Author: WangHan
19
- * @Date: 2024-12-28 22:50
20
- */
21
- export declare const formatMultiDayDate: (item: any) => string;
22
- /**
23
- * @title: 格式化服务的 开始时间-结束时间-时长, 用于展示
24
- * @description:
25
- * @param {any} item
26
- * @param {any} currentDate
27
- * @return {*}
28
- * @Author: zhiwei.Wang
29
- * @Date: 2024-04-26 14:04
30
- */
31
- export declare const getServiceTime: (item: any, currentDate: any) => string;