884054fb
“wangming”
项目初始化
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
subtitle?: string;
items: { label: string; type: ElementType; config?: Record<string, unknown> }[];
}[] = [
{
title: '模版信息',
items: [
{ label: 'Text', type: 'TEXT_STATIC' },
{ label: 'QR Code', type: 'QRCODE' },
{ label: 'Barcode', type: 'BARCODE' },
{ label: 'Blank Space', type: 'BLANK' },
{ label: 'Price', type: 'TEXT_PRICE' },
{ label: 'Image', type: 'IMAGE' },
{ label: 'Logo', type: 'IMAGE' },
],
},
{
title: '标签信息',
items: [
{ label: 'Label Name', type: 'TEXT_PRODUCT' },
{ label: 'Text', type: 'TEXT_STATIC' },
{ label: 'QR Code', type: 'QRCODE' },
{ label: 'Barcode', type: 'BARCODE' },
{ label: 'Nutrition Facts', type: 'NUTRITION' },
{ label: 'Price', type: 'TEXT_PRICE' },
{ label: 'Duration Date', type: 'DATE' },
{ label: 'Duration Time', type: 'TIME' },
{ label: 'Duration', type: 'DURATION' },
{ label: 'Image', type: 'IMAGE' },
{ label: 'Label Type', type: 'TEXT_STATIC' },
{ label: 'How-to', type: 'TEXT_STATIC' },
{ label: 'Expiration Alert', type: 'TEXT_STATIC' },
],
},
{
title: '自动生成',
items: [
{ label: 'Company', type: 'TEXT_STATIC' },
{ label: 'Employee', type: 'TEXT_STATIC' },
{ label: 'Current Date', type: 'DATE' },
{ label: 'Current Time', type: 'TIME' },
{ label: 'Label ID', type: 'TEXT_STATIC' },
],
},
{
title: '打印时输入',
subtitle: '点击添加到画布',
items: [
{ label: 'Text', type: 'TEXT_STATIC', config: { inputType: 'text' } },
{ label: 'Weight', type: 'WEIGHT' },
{ label: 'Number', type: 'TEXT_STATIC', config: { inputType: 'number', text: '0' } },
{ label: 'Date & Time', type: 'DATE', config: { inputType: 'datetime' } },
|
3d4c10ac
杨鑫
对接,标签产品
|
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
{
label: 'Multiple Options',
type: 'TEXT_STATIC',
config: {
inputType: 'options',
multipleOptionId: '',
selectedOptionValues: [],
text: '文本',
fontFamily: 'Arial',
fontSize: 14,
fontWeight: 'normal',
textAlign: 'left',
prefix: '¥',
},
},
|