@pisell/private-materials 6.1.15 → 6.1.16
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/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/index.js +1 -1
- package/build/lowcode/meta.js +1 -1
- package/build/lowcode/preview.js +144 -144
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +8 -8
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +8 -8
- package/es/components/Sales/Summary/utils.d.ts +1 -1
- package/es/components/booking/components/actionButtons/index.d.ts +2 -0
- package/es/components/booking/components/actionButtons/index.js +93 -12
- package/es/components/booking/components/actionButtons/index.less +71 -4
- package/es/components/booking/components/footer/index.js +1 -1
- package/es/components/booking/components/footer/index.less +3 -2
- package/es/components/booking/components/footer/utils.js +1 -0
- package/es/components/booking/components/tabPane/index.js +6 -20
- package/es/components/booking/components/tabPane/index.less +1 -1
- package/es/components/booking/components/voucher/index.js +7 -4
- package/es/components/booking/components/voucherModal/index.d.ts +19 -0
- package/es/components/booking/components/voucherModal/index.js +47 -0
- package/es/components/booking/components/voucherModal/index.less +23 -0
- package/es/components/booking/forms/forms.js +1 -1
- package/es/components/booking/info/index.less +1 -1
- package/es/components/booking/info/pet/index.less +1 -1
- package/es/components/booking/info/service/index.less +1 -1
- package/es/components/booking/locales.d.ts +3 -0
- package/es/components/booking/locales.js +12 -6
- package/es/components/booking/utils.d.ts +2 -2
- package/es/components/eftposPay/store/index.d.ts +1 -1
- package/es/components/productSelect/components/productGroup/index.js +20 -4
- package/es/components/productSelect/components/productGroup/index.less +17 -0
- package/es/components/shoppingCart/components/Cart/Product.js +5 -3
- package/es/components/shoppingCart/components/Cart/index.less +1 -1
- package/es/components/ticketBooking/components/ticketBooking/index.js +1 -1
- package/es/components/ticketBooking/components/ticketBooking/index.less +1 -1
- package/es/components/ticketBooking/locales.d.ts +3 -0
- package/es/components/ticketBooking/locales.js +3 -0
- package/es/plus/clientCard/index.less +3 -6
- package/lib/components/Sales/Summary/utils.d.ts +1 -1
- package/lib/components/booking/components/actionButtons/index.d.ts +2 -0
- package/lib/components/booking/components/actionButtons/index.js +64 -12
- package/lib/components/booking/components/actionButtons/index.less +71 -4
- package/lib/components/booking/components/footer/index.js +1 -1
- package/lib/components/booking/components/footer/index.less +3 -2
- package/lib/components/booking/components/footer/utils.js +1 -0
- package/lib/components/booking/components/tabPane/index.js +5 -26
- package/lib/components/booking/components/tabPane/index.less +1 -1
- package/lib/components/booking/components/voucher/index.js +5 -4
- package/lib/components/booking/components/voucherModal/index.d.ts +19 -0
- package/lib/components/booking/components/voucherModal/index.js +83 -0
- package/lib/components/booking/components/voucherModal/index.less +23 -0
- package/lib/components/booking/forms/forms.js +1 -1
- package/lib/components/booking/info/index.less +1 -1
- package/lib/components/booking/info/pet/index.less +1 -1
- package/lib/components/booking/info/service/index.less +1 -1
- package/lib/components/booking/locales.d.ts +3 -0
- package/lib/components/booking/locales.js +12 -6
- package/lib/components/booking/utils.d.ts +2 -2
- package/lib/components/eftposPay/store/index.d.ts +1 -1
- package/lib/components/productSelect/components/productGroup/index.js +16 -3
- package/lib/components/productSelect/components/productGroup/index.less +17 -0
- package/lib/components/shoppingCart/components/Cart/Product.js +5 -4
- package/lib/components/shoppingCart/components/Cart/index.less +1 -1
- package/lib/components/ticketBooking/components/ticketBooking/index.js +1 -1
- package/lib/components/ticketBooking/components/ticketBooking/index.less +1 -1
- package/lib/components/ticketBooking/locales.d.ts +3 -0
- package/lib/components/ticketBooking/locales.js +3 -0
- package/lib/plus/clientCard/index.less +3 -6
- package/package.json +1 -1
@@ -0,0 +1,83 @@
|
|
1
|
+
var __create = Object.create;
|
2
|
+
var __defProp = Object.defineProperty;
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
4
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
5
|
+
var __getProtoOf = Object.getPrototypeOf;
|
6
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
7
|
+
var __export = (target, all) => {
|
8
|
+
for (var name in all)
|
9
|
+
__defProp(target, name, { get: all[name], enumerable: true });
|
10
|
+
};
|
11
|
+
var __copyProps = (to, from, except, desc) => {
|
12
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
13
|
+
for (let key of __getOwnPropNames(from))
|
14
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
15
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
16
|
+
}
|
17
|
+
return to;
|
18
|
+
};
|
19
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
20
|
+
// If the importer is in node compatibility mode or this is not an ESM
|
21
|
+
// file that has been converted to a CommonJS file using a Babel-
|
22
|
+
// compatible transform (i.e. "__esModule" has not been set), then set
|
23
|
+
// "default" to the CommonJS "module.exports" for node compatibility.
|
24
|
+
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
25
|
+
mod
|
26
|
+
));
|
27
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
28
|
+
|
29
|
+
// src/components/booking/components/voucherModal/index.tsx
|
30
|
+
var voucherModal_exports = {};
|
31
|
+
__export(voucherModal_exports, {
|
32
|
+
default: () => voucherModal_default
|
33
|
+
});
|
34
|
+
module.exports = __toCommonJS(voucherModal_exports);
|
35
|
+
var import_react = __toESM(require("react"));
|
36
|
+
var import_antd = require("antd");
|
37
|
+
var import_voucher = __toESM(require("../voucher"));
|
38
|
+
var import_index = require("./index.less");
|
39
|
+
var VoucherModal = ({
|
40
|
+
visible,
|
41
|
+
onClose,
|
42
|
+
state,
|
43
|
+
dispatch,
|
44
|
+
source
|
45
|
+
}) => {
|
46
|
+
var _a, _b, _c;
|
47
|
+
return /* @__PURE__ */ import_react.default.createElement(
|
48
|
+
import_antd.Modal,
|
49
|
+
{
|
50
|
+
title: null,
|
51
|
+
open: visible,
|
52
|
+
onCancel: onClose,
|
53
|
+
footer: null,
|
54
|
+
width: 600,
|
55
|
+
className: `pisell-voucher-modal ${!visible ? "pisell-voucher-modal--hidden" : ""}`,
|
56
|
+
forceRender: true
|
57
|
+
},
|
58
|
+
/* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-voucher-modal-content" }, /* @__PURE__ */ import_react.default.createElement(
|
59
|
+
import_voucher.default,
|
60
|
+
{
|
61
|
+
state: {
|
62
|
+
...state,
|
63
|
+
service: {
|
64
|
+
...state.service || {},
|
65
|
+
value: ((_a = state.service) == null ? void 0 : _a.value) || []
|
66
|
+
},
|
67
|
+
addons: {
|
68
|
+
...state.addons || {},
|
69
|
+
value: ((_b = state.addons) == null ? void 0 : _b.value) || []
|
70
|
+
},
|
71
|
+
client: {
|
72
|
+
...state.client || {},
|
73
|
+
value: ((_c = state.client) == null ? void 0 : _c.value) || {}
|
74
|
+
}
|
75
|
+
},
|
76
|
+
dispatch,
|
77
|
+
source,
|
78
|
+
isInModal: true
|
79
|
+
}
|
80
|
+
))
|
81
|
+
);
|
82
|
+
};
|
83
|
+
var voucherModal_default = VoucherModal;
|
@@ -0,0 +1,23 @@
|
|
1
|
+
.pisell-voucher-modal {
|
2
|
+
.ant-modal-body {
|
3
|
+
padding: 0;
|
4
|
+
}
|
5
|
+
|
6
|
+
.pisell-voucher-modal-content {
|
7
|
+
max-height: 70vh;
|
8
|
+
overflow-y: auto;
|
9
|
+
}
|
10
|
+
|
11
|
+
// 隐藏状态下的样式优化
|
12
|
+
&.pisell-voucher-modal--hidden {
|
13
|
+
// 当弹窗隐藏时,可以通过一些样式来优化性能
|
14
|
+
// 例如暂停动画、降低 GPU 使用等
|
15
|
+
.pisell-voucher-modal-content {
|
16
|
+
// 暂停内容中的动画和过渡效果
|
17
|
+
* {
|
18
|
+
animation-play-state: paused !important;
|
19
|
+
transition: none !important;
|
20
|
+
}
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
@@ -147,7 +147,7 @@ var Forms = (0, import_model.Provider)((props) => {
|
|
147
147
|
"div",
|
148
148
|
{
|
149
149
|
className: "pisell-lowcode__booking-field-wrap",
|
150
|
-
style: { padding: hideTitle ? 0 : "
|
150
|
+
style: { padding: hideTitle ? 0 : "0" },
|
151
151
|
key: d.form_id
|
152
152
|
},
|
153
153
|
hideTitle ? null : /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__booking-field-title" }, d.form.title),
|
@@ -264,6 +264,7 @@ declare const _default: {
|
|
264
264
|
'pisell2.clear-cart-modal.clear-items-only': string;
|
265
265
|
'pisell2.clear-cart-modal.clear-all-reset': string;
|
266
266
|
'pisell2.clear-cart-modal.empty-cart-tip': string;
|
267
|
+
'pisell2.voucher-modal.title': string;
|
267
268
|
'pisell2.text.change.pet.title': string;
|
268
269
|
'pisell2.text.change.pet.content': string;
|
269
270
|
'pisell2.text.change.pet.content1': string;
|
@@ -564,6 +565,7 @@ declare const _default: {
|
|
564
565
|
'pisell2.clear-cart-modal.clear-items-only': string;
|
565
566
|
'pisell2.clear-cart-modal.clear-all-reset': string;
|
566
567
|
'pisell2.clear-cart-modal.empty-cart-tip': string;
|
568
|
+
'pisell2.voucher-modal.title': string;
|
567
569
|
'pisell2.text.change.pet.title': string;
|
568
570
|
'pisell2.text.change.pet.content': string;
|
569
571
|
'pisell2.text.change.pet.content1': string;
|
@@ -864,6 +866,7 @@ declare const _default: {
|
|
864
866
|
'pisell2.clear-cart-modal.clear-items-only': string;
|
865
867
|
'pisell2.clear-cart-modal.clear-all-reset': string;
|
866
868
|
'pisell2.clear-cart-modal.empty-cart-tip': string;
|
869
|
+
'pisell2.voucher-modal.title': string;
|
867
870
|
'pisell2.text.change.pet.title': string;
|
868
871
|
'pisell2.text.change.pet.content': string;
|
869
872
|
'pisell2.text.change.pet.content1': string;
|
@@ -299,8 +299,8 @@ var locales_default = {
|
|
299
299
|
"pisell2.text.cancel": "Cancel",
|
300
300
|
// Action Buttons
|
301
301
|
"pisell2.action-buttons.clear": "Clear",
|
302
|
-
"pisell2.action-buttons.manuel-order": "Manual\nOrder
|
303
|
-
"pisell2.action-buttons.customise-item": "
|
302
|
+
"pisell2.action-buttons.manuel-order": "Manual\nOrder $",
|
303
|
+
"pisell2.action-buttons.customise-item": "Cust. \nItem",
|
304
304
|
"pisell2.action-buttons.no-items-to-adjust": "No items in cart to adjust price.",
|
305
305
|
"pisell2.action-buttons.adjust-order-price": "Adjust Order Price",
|
306
306
|
"pisell2.action-buttons.price-adjusted-success": "Order price adjusted successfully.",
|
@@ -324,6 +324,8 @@ var locales_default = {
|
|
324
324
|
"pisell2.clear-cart-modal.clear-items-only": "Clear Items Only",
|
325
325
|
"pisell2.clear-cart-modal.clear-all-reset": "Clear All &\nReset Cart",
|
326
326
|
"pisell2.clear-cart-modal.empty-cart-tip": "Cart is empty",
|
327
|
+
// Voucher Modal
|
328
|
+
"pisell2.voucher-modal.title": "Vouchers & Discounts",
|
327
329
|
"pisell2.text.change.pet.title": "You have changed the holder information. Do you want to keep the items under their name?",
|
328
330
|
"pisell2.text.change.pet.content": "Selecting “Keep” will move the items to Open Items. Selecting “Discard” will clear all items under the holder’s name.",
|
329
331
|
"pisell2.text.change.pet.content1": "Reservation-type items cannot be added to the Open Items cart and will be removed.",
|
@@ -636,8 +638,8 @@ var locales_default = {
|
|
636
638
|
"pisell2.text.cancel": "取消",
|
637
639
|
// Action Buttons
|
638
640
|
"pisell2.action-buttons.clear": "清空",
|
639
|
-
"pisell2.action-buttons.manuel-order": "手动\n订单
|
640
|
-
"pisell2.action-buttons.customise-item": "
|
641
|
+
"pisell2.action-buttons.manuel-order": "手动\n订单 $",
|
642
|
+
"pisell2.action-buttons.customise-item": "自定义\n商品",
|
641
643
|
"pisell2.action-buttons.no-items-to-adjust": "购物车中没有商品可调整价格。",
|
642
644
|
"pisell2.action-buttons.adjust-order-price": "调整订单价格",
|
643
645
|
"pisell2.action-buttons.price-adjusted-success": "订单价格调整成功。",
|
@@ -661,6 +663,8 @@ var locales_default = {
|
|
661
663
|
"pisell2.clear-cart-modal.clear-items-only": "仅清空商品",
|
662
664
|
"pisell2.clear-cart-modal.clear-all-reset": "清空所有内容\n并重置购物车",
|
663
665
|
"pisell2.clear-cart-modal.empty-cart-tip": "当前购物车为空",
|
666
|
+
// Voucher Modal
|
667
|
+
"pisell2.voucher-modal.title": "券码管理",
|
664
668
|
"pisell2.text.change.pet.title": "您已变更持有人信息,是否保留该持有人名下的商品?",
|
665
669
|
"pisell2.text.change.pet.content": "选择“保留”将商品添加到未分配商品(公共购物车)中;选择“不保留”将清空该持有人名下的所有商品。",
|
666
670
|
"pisell2.text.change.pet.content1": "预约类商品无法添加到公共购物车,将会被删除。",
|
@@ -973,8 +977,8 @@ var locales_default = {
|
|
973
977
|
"pisell2.text.cancel": "取消",
|
974
978
|
// Action Buttons
|
975
979
|
"pisell2.action-buttons.clear": "清空",
|
976
|
-
"pisell2.action-buttons.manuel-order": "手動\n訂單
|
977
|
-
"pisell2.action-buttons.customise-item": "
|
980
|
+
"pisell2.action-buttons.manuel-order": "手動\n訂單 $",
|
981
|
+
"pisell2.action-buttons.customise-item": "自定義\n商品",
|
978
982
|
"pisell2.action-buttons.no-items-to-adjust": "購物車中沒有商品可調整價格。",
|
979
983
|
"pisell2.action-buttons.adjust-order-price": "調整訂單價格",
|
980
984
|
"pisell2.action-buttons.price-adjusted-success": "訂單價格調整成功。",
|
@@ -998,6 +1002,8 @@ var locales_default = {
|
|
998
1002
|
"pisell2.clear-cart-modal.clear-items-only": "僅清空商品",
|
999
1003
|
"pisell2.clear-cart-modal.clear-all-reset": "清空所有內容\n並重置購物車",
|
1000
1004
|
"pisell2.clear-cart-modal.empty-cart-tip": "當前購物車為空",
|
1005
|
+
// Voucher Modal
|
1006
|
+
"pisell2.voucher-modal.title": "券碼管理",
|
1001
1007
|
"pisell2.text.change.pet.title": "您已變更持有人信息,是否保留該持有人名下的商品?",
|
1002
1008
|
"pisell2.text.change.pet.content": "選擇“保留”將商品添加到未分配商品(公共購物車)中;選擇“不保留”將清空該持有人名下的所有商品。",
|
1003
1009
|
"pisell2.text.change.pet.content1": "預約類商品無法添加到公共購物車,將會被刪除。",
|
@@ -165,10 +165,10 @@ export declare const getProductTotalPrice: (item: any) => number;
|
|
165
165
|
export declare const getDuration: (duration: number | {
|
166
166
|
type: string;
|
167
167
|
value: number;
|
168
|
-
}) => number |
|
168
|
+
}) => number | {
|
169
169
|
type: string;
|
170
170
|
value: number;
|
171
|
-
};
|
171
|
+
} | "flexible";
|
172
172
|
export declare const isWalkIn: (customer_id?: number | string) => boolean;
|
173
173
|
export declare const getIsEdit: (state: any) => boolean;
|
174
174
|
export {};
|
@@ -295,7 +295,7 @@ export declare const backUpFree: (payload: Partial<State>) => {
|
|
295
295
|
name?: string | undefined;
|
296
296
|
symbol?: string | undefined;
|
297
297
|
amount?: string | number | undefined;
|
298
|
-
mode?: "
|
298
|
+
mode?: "pay" | "fullPay" | "refund" | "query" | undefined;
|
299
299
|
order_id?: string | number | undefined;
|
300
300
|
eftpos?: "payo" | "tyro" | "windcave" | "stripe" | "linkly" | undefined;
|
301
301
|
action?: "amount" | "deviceList" | "pay" | undefined;
|
@@ -71,6 +71,12 @@ var ProductGroup = ({
|
|
71
71
|
}
|
72
72
|
return `${import_utils.locales.getText("pisell2.product-select.stock")}:${item.stock_quantity}`;
|
73
73
|
};
|
74
|
+
const getTextCover = (title) => {
|
75
|
+
if (!title) return "";
|
76
|
+
const cleanTitle = title.trim();
|
77
|
+
if (cleanTitle.length === 0) return "";
|
78
|
+
return cleanTitle.substring(0, 2).toUpperCase();
|
79
|
+
};
|
74
80
|
const renderPrice = (item) => {
|
75
81
|
const {
|
76
82
|
price: _price,
|
@@ -93,12 +99,12 @@ var ProductGroup = ({
|
|
93
99
|
className: (0, import_classnames.default)("product-card", {
|
94
100
|
selected: currentProductId && item.id === currentProductId
|
95
101
|
}),
|
96
|
-
|
102
|
+
onTouchStart: () => {
|
97
103
|
console.log("进入 renderItem onClick");
|
98
104
|
onSelectProduct == null ? void 0 : onSelectProduct(item);
|
99
105
|
}
|
100
106
|
},
|
101
|
-
isProductCover
|
107
|
+
isProductCover ? /* @__PURE__ */ import_react.default.createElement(
|
102
108
|
"div",
|
103
109
|
{
|
104
110
|
className: "card-left",
|
@@ -107,13 +113,20 @@ var ProductGroup = ({
|
|
107
113
|
height: imgHeight || "auto"
|
108
114
|
}
|
109
115
|
},
|
110
|
-
/* @__PURE__ */ import_react.default.createElement(
|
116
|
+
item.cover ? /* @__PURE__ */ import_react.default.createElement(
|
111
117
|
"img",
|
112
118
|
{
|
113
119
|
loading: "lazy",
|
114
120
|
src: item.cover,
|
115
121
|
style: { borderRadius: radius }
|
116
122
|
}
|
123
|
+
) : /* @__PURE__ */ import_react.default.createElement(
|
124
|
+
"div",
|
125
|
+
{
|
126
|
+
className: "text-cover",
|
127
|
+
style: { borderRadius: radius }
|
128
|
+
},
|
129
|
+
getTextCover(item.title)
|
117
130
|
)
|
118
131
|
) : null,
|
119
132
|
/* @__PURE__ */ import_react.default.createElement("div", { className: "card-right" }, !!isTitle ? /* @__PURE__ */ import_react.default.createElement("div", { className: "title" }, item.title) : null, !!isSubtitle && item.subtitle ? /* @__PURE__ */ import_react.default.createElement("div", { className: "subtitle" }, item.subtitle) : null, !!isStock && !!item.is_track ? /* @__PURE__ */ import_react.default.createElement("div", { className: "stock" }, getStockText(item)) : null, renderPrice(item))
|
@@ -106,6 +106,23 @@
|
|
106
106
|
height: 100%;
|
107
107
|
object-fit: cover;
|
108
108
|
}
|
109
|
+
|
110
|
+
.text-cover {
|
111
|
+
width: 100%;
|
112
|
+
height: 100%;
|
113
|
+
display: flex;
|
114
|
+
align-items: center;
|
115
|
+
justify-content: center;
|
116
|
+
background: #dedede;
|
117
|
+
color: #6c6c6c;
|
118
|
+
font-size: 60px;
|
119
|
+
font-weight: 600;
|
120
|
+
text-align: center;
|
121
|
+
line-height: 1;
|
122
|
+
letter-spacing: 1px;
|
123
|
+
border-radius: 8px;
|
124
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
125
|
+
}
|
109
126
|
}
|
110
127
|
|
111
128
|
.card-right {
|
@@ -33,7 +33,7 @@ __export(Product_exports, {
|
|
33
33
|
});
|
34
34
|
module.exports = __toCommonJS(Product_exports);
|
35
35
|
var import_react = __toESM(require("react"));
|
36
|
-
var
|
36
|
+
var import_materials = require("@pisell/materials");
|
37
37
|
var import_useClearCart = __toESM(require("../../hooks/useClearCart"));
|
38
38
|
var import_useContext = require("../../hooks/useContext");
|
39
39
|
var import_useAddService = __toESM(require("../../hooks/useAddService"));
|
@@ -103,11 +103,11 @@ var Product = (props) => {
|
|
103
103
|
return (0, import_react.useMemo)(() => {
|
104
104
|
console.log("render cart");
|
105
105
|
return /* @__PURE__ */ import_react.default.createElement("div", { className: "pisell-lowcode__shopping-cart-content" }, clearCart, lists == null ? void 0 : lists.map((item) => {
|
106
|
-
let Comp =
|
106
|
+
let Comp = import_materials.ProductCard;
|
107
107
|
let isRetail;
|
108
108
|
if (state.scenario === "booking2") {
|
109
109
|
isRetail = (0, import_utils.isNormalProductByDurationSchedule)(item == null ? void 0 : item._origin);
|
110
|
-
Comp = isRetail ?
|
110
|
+
Comp = isRetail ? import_materials.ProductCard.V2 : import_materials.ProductCard;
|
111
111
|
}
|
112
112
|
return /* @__PURE__ */ import_react.default.createElement(
|
113
113
|
Comp,
|
@@ -147,7 +147,8 @@ var Product = (props) => {
|
|
147
147
|
onChangeHolder: (e) => handleChange(item, "change_holder", e),
|
148
148
|
onAddHolder: (e) => handleChange(item, "add_holder", e),
|
149
149
|
...productParams,
|
150
|
-
...getProductCardStyleProps(isRetail ? "retail" : "appointment")
|
150
|
+
...getProductCardStyleProps(isRetail ? "retail" : "appointment"),
|
151
|
+
scenario: state.scenario
|
151
152
|
}
|
152
153
|
);
|
153
154
|
}), !hideAddBtn && platform !== "h5" && isAdd ? (0, import_useAddService.default)(id, "more") : null);
|
@@ -2,6 +2,7 @@ declare const _default: {
|
|
2
2
|
en: {
|
3
3
|
'pisell2.ticket-booking.info': string;
|
4
4
|
'pisell2.ticket-booking.notes': string;
|
5
|
+
'pisell2.ticket-booking.note': string;
|
5
6
|
'pisell2.ticket-booking.forms': string;
|
6
7
|
'pisell2.ticket-booking.sales': string;
|
7
8
|
'pisell2.ticket-booking.payment': string;
|
@@ -60,6 +61,7 @@ declare const _default: {
|
|
60
61
|
'zh-CN': {
|
61
62
|
'pisell2.ticket-booking.info': string;
|
62
63
|
'pisell2.ticket-booking.notes': string;
|
64
|
+
'pisell2.ticket-booking.note': string;
|
63
65
|
'pisell2.ticket-booking.forms': string;
|
64
66
|
'pisell2.ticket-booking.sales': string;
|
65
67
|
'pisell2.ticket-booking.payment': string;
|
@@ -118,6 +120,7 @@ declare const _default: {
|
|
118
120
|
'zh-HK': {
|
119
121
|
'pisell2.ticket-booking.info': string;
|
120
122
|
'pisell2.ticket-booking.notes': string;
|
123
|
+
'pisell2.ticket-booking.note': string;
|
121
124
|
'pisell2.ticket-booking.forms': string;
|
122
125
|
'pisell2.ticket-booking.sales': string;
|
123
126
|
'pisell2.ticket-booking.payment': string;
|
@@ -26,6 +26,7 @@ var locales_default = {
|
|
26
26
|
en: {
|
27
27
|
"pisell2.ticket-booking.info": "Info",
|
28
28
|
"pisell2.ticket-booking.notes": "Notes",
|
29
|
+
"pisell2.ticket-booking.note": "Note",
|
29
30
|
"pisell2.ticket-booking.forms": "Forms",
|
30
31
|
"pisell2.ticket-booking.sales": "Sales",
|
31
32
|
"pisell2.ticket-booking.payment": "Payment",
|
@@ -84,6 +85,7 @@ var locales_default = {
|
|
84
85
|
"zh-CN": {
|
85
86
|
"pisell2.ticket-booking.info": "信息",
|
86
87
|
"pisell2.ticket-booking.notes": "备注",
|
88
|
+
"pisell2.ticket-booking.note": "备注",
|
87
89
|
"pisell2.ticket-booking.forms": "表单",
|
88
90
|
"pisell2.ticket-booking.sales": "销售",
|
89
91
|
"pisell2.ticket-booking.payment": "付款",
|
@@ -142,6 +144,7 @@ var locales_default = {
|
|
142
144
|
"zh-HK": {
|
143
145
|
"pisell2.ticket-booking.info": "資訊",
|
144
146
|
"pisell2.ticket-booking.notes": "備註",
|
147
|
+
"pisell2.ticket-booking.note": "備註",
|
145
148
|
"pisell2.ticket-booking.forms": "表单",
|
146
149
|
"pisell2.ticket-booking.sales": "銷售",
|
147
150
|
"pisell2.ticket-booking.payment": "付款",
|
@@ -411,12 +411,6 @@
|
|
411
411
|
text-align: center;
|
412
412
|
}
|
413
413
|
|
414
|
-
.pisell-client-card__name-tags {
|
415
|
-
justify-content: center;
|
416
|
-
flex-direction: column;
|
417
|
-
gap: 8px;
|
418
|
-
}
|
419
|
-
|
420
414
|
.pisell-client-card__fields {
|
421
415
|
align-items: center;
|
422
416
|
}
|
@@ -470,6 +464,9 @@
|
|
470
464
|
font-size: 12px;
|
471
465
|
color: #8c8c8c;
|
472
466
|
margin-top: 2px;
|
467
|
+
overflow: hidden;
|
468
|
+
text-overflow: ellipsis;
|
469
|
+
white-space: nowrap;
|
473
470
|
}
|
474
471
|
|
475
472
|
.pisell-client-card__plugin-icon {
|