cloud-business 0.1.131 → 0.1.132-2
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/.babelrc +22 -0
- package/.idea/cloud-business.iml +8 -0
- package/.idea/inspectionProfiles/Project_Default.xml +6 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/vcs.xml +6 -0
- package/.idea/workspace.xml +775 -0
- package/LICENSE +21 -0
- package/README.md +2 -0
- package/assets.json +132 -0
- package/{cloud-business.css → dist/cloud-business.css} +125 -35
- package/dist/cloud-business.esm.js +1 -0
- package/dist/cloud-business.js +1 -0
- package/dist/cloud-business.min.css +1 -0
- package/dist/cloud-business.min.js +1 -0
- package/dist/package.json +131 -0
- package/jsconfig.json +13 -0
- package/package.json +131 -1
- package/typings.d.ts +2 -0
- package/cloud-business.js +0 -1
- package/cloud-business.min.css +0 -1
- package/cloud-business.min.js +0 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019 Shuyun FF2E
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
package/assets.json
ADDED
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": " ",
|
|
3
|
+
"package": "cloud-react",
|
|
4
|
+
"logo": "https://brand-guide.shuyun.com/IAM/77c28a6547cd.png",
|
|
5
|
+
"assets": {
|
|
6
|
+
"atoms": [],
|
|
7
|
+
"examples": [
|
|
8
|
+
{
|
|
9
|
+
"type": "BLOCK",
|
|
10
|
+
"identifier": "basic-demo",
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"react": {
|
|
13
|
+
"type": "NPM",
|
|
14
|
+
"value": "16.14.0"
|
|
15
|
+
},
|
|
16
|
+
"cloud-react": {
|
|
17
|
+
"type": "NPM",
|
|
18
|
+
"value": "0.0.98"
|
|
19
|
+
},
|
|
20
|
+
"index.jsx": {
|
|
21
|
+
"type": "FILE",
|
|
22
|
+
"value": "/**\n+ * title: cloud-bread-crumbs\n+ */\n\n\n\nimport React from 'react';\nimport { BreadCrumbs, Button } from 'cloud-react';\n\nexport default class BreadCrumbsDemo extends React.Component {\n constructor(props) {\n super(props);\n this.state = {\n size: 'default'\n };\n }\n\n onChangeSize = size => {\n this.setState({ size });\n }\n\n onClickBreadCrumbs = item => {\n console.log(item);\n };\n\n getButtonType = size => {\n return this.state.size === size ? 'primary' : 'normal';\n }\n render() {\n const { size } = this.state;\n const { onChangeSize, onClickBreadCrumbs, getButtonType } = this;\n const list = [\n {\n key: 'home',\n title: '首页'\n },\n {\n key: 'bread-crumbs',\n title: '面包屑'\n },\n {\n key: 'a3',\n title: '查看详情'\n }\n ];\n\n\t\treturn (\n\t\t\t<>\n <div className=\"basic-action\">\n <Button type={getButtonType('large')} onClick={() => {onChangeSize('large')}}>large</Button>\n <Button type={getButtonType('default')} onClick={() => {onChangeSize('default')}}>default</Button>\n <Button type={getButtonType('small')} onClick={() => {onChangeSize('small')}}>small</Button>\n <Button type=\"link\" disabled>\n current: {size}\n </Button>\n </div>\n <div>\n <BreadCrumbs list={list} size={size} onClick={onClickBreadCrumbs.bind(this)}/>\n </div>\n </>\n\t\t);\n\t}\n}"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"type": "BLOCK",
|
|
28
|
+
"identifier": "basic-demo",
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"react": {
|
|
31
|
+
"type": "NPM",
|
|
32
|
+
"value": "16.14.0"
|
|
33
|
+
},
|
|
34
|
+
"cloud-react": {
|
|
35
|
+
"type": "NPM",
|
|
36
|
+
"value": "0.0.98"
|
|
37
|
+
},
|
|
38
|
+
"index.jsx": {
|
|
39
|
+
"type": "FILE",
|
|
40
|
+
"value": "/**\n+ * title: cloud-bread-crumbs\n+ */\n\n\n\nimport React from 'react';\nimport { BreadCrumbs, Button } from 'cloud-react';\n\nexport default class BreadCrumbsDemo extends React.Component {\n constructor(props) {\n super(props);\n this.state = {\n size: 'default'\n };\n }\n\n onChangeSize = size => {\n this.setState({ size });\n }\n\n onClickBreadCrumbs = item => {\n console.log(item);\n };\n\n getButtonType = size => {\n return this.state.size === size ? 'primary' : 'normal';\n }\n render() {\n const { size } = this.state;\n const { onChangeSize, onClickBreadCrumbs, getButtonType } = this;\n const list = [\n {\n key: 'home',\n title: '首页'\n },\n {\n key: 'bread-crumbs',\n title: '面包屑'\n },\n {\n key: 'a3',\n title: '查看详情'\n }\n ];\n\n\t\treturn (\n\t\t\t<>\n <div className=\"basic-action\">\n <Button type={getButtonType('large')} onClick={() => {onChangeSize('large')}}>large</Button>\n <Button type={getButtonType('default')} onClick={() => {onChangeSize('default')}}>default</Button>\n <Button type={getButtonType('small')} onClick={() => {onChangeSize('small')}}>small</Button>\n <Button type=\"link\" disabled>\n current: {size}\n </Button>\n </div>\n <div>\n <BreadCrumbs list={list} size={size} onClick={onClickBreadCrumbs.bind(this)}/>\n </div>\n </>\n\t\t);\n\t}\n}"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"type": "BLOCK",
|
|
46
|
+
"identifier": "basic-demo",
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"react": {
|
|
49
|
+
"type": "NPM",
|
|
50
|
+
"value": "16.14.0"
|
|
51
|
+
},
|
|
52
|
+
"cloud-react": {
|
|
53
|
+
"type": "NPM",
|
|
54
|
+
"value": "0.0.98"
|
|
55
|
+
},
|
|
56
|
+
"index.jsx": {
|
|
57
|
+
"type": "FILE",
|
|
58
|
+
"value": "import React from 'react';\nimport { Button, InputNumber } from 'cloud-react';\n\nconst blank = '\\u00A0';\n\nexport default class ButtonDemo extends React.Component {\n\trender() {\n\t\treturn (\n\t\t\t<>\n\t\t\t\t<div>\n\t\t\t\t\t<Button type=\"primary\">primary</Button>\n\t\t\t\t\t{blank}\n\t\t\t\t\t<Button type=\"normal\">normal</Button>\n\t\t\t\t\t{blank}\n\t\t\t\t\t<Button type=\"dashed\">dashed</Button>\n\t\t\t\t\t{blank}\n\t\t\t\t\t<Button type=\"link\">link</Button>\n\t\t\t\t</div>\n\t\t\t</>\n\t\t);\n\t}\n}"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"type": "BLOCK",
|
|
64
|
+
"identifier": "block-demo",
|
|
65
|
+
"dependencies": {
|
|
66
|
+
"react": {
|
|
67
|
+
"type": "NPM",
|
|
68
|
+
"value": "16.14.0"
|
|
69
|
+
},
|
|
70
|
+
"cloud-react": {
|
|
71
|
+
"type": "NPM",
|
|
72
|
+
"value": "0.0.98"
|
|
73
|
+
},
|
|
74
|
+
"index.jsx": {
|
|
75
|
+
"type": "FILE",
|
|
76
|
+
"value": "import React from 'react';\nimport { Button } from 'cloud-react';\n\nconst blank = '\\u00A0';\n\nexport default class ButtonDemo extends React.Component {\n\trender() {\n\t\treturn (\n\t\t\t<>\n\t\t\t\t<div>\n\t\t\t\t\t<Button block type=\"primary\">\n\t\t\t\t\t\tprimary\n\t\t\t\t\t</Button>\n\t\t\t\t\t{blank}\n\t\t\t\t\t<Button block type=\"normal\">\n\t\t\t\t\t\tnormal\n\t\t\t\t\t</Button>\n\t\t\t\t\t{blank}\n\t\t\t\t\t<Button block type=\"dashed\">\n\t\t\t\t\t\tdashed\n\t\t\t\t\t</Button>\n\t\t\t\t\t{blank}\n\t\t\t\t\t<Button block type=\"link\">\n\t\t\t\t\t\tlink\n\t\t\t\t\t</Button>\n\t\t\t\t</div>\n\t\t\t</>\n\t\t);\n\t}\n}"
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"type": "BLOCK",
|
|
82
|
+
"identifier": "basic-demo",
|
|
83
|
+
"dependencies": {
|
|
84
|
+
"react": {
|
|
85
|
+
"type": "NPM",
|
|
86
|
+
"value": "16.14.0"
|
|
87
|
+
},
|
|
88
|
+
"cloud-react": {
|
|
89
|
+
"type": "NPM",
|
|
90
|
+
"value": "0.0.98"
|
|
91
|
+
},
|
|
92
|
+
"index.jsx": {
|
|
93
|
+
"type": "FILE",
|
|
94
|
+
"value": "import React from 'react';\nimport { Button, InputNumber } from 'cloud-react';\n\nconst blank = '\\u00A0';\n\nexport default class ButtonDemo extends React.Component {\n\trender() {\n\t\treturn (\n\t\t\t<>\n\t\t\t\t<div>\n\t\t\t\t\t<Button type=\"primary\">primary</Button>\n\t\t\t\t\t{blank}\n\t\t\t\t\t<Button type=\"normal\">normal</Button>\n\t\t\t\t\t{blank}\n\t\t\t\t\t<Button type=\"dashed\">dashed</Button>\n\t\t\t\t\t{blank}\n\t\t\t\t\t<Button type=\"link\">link</Button>\n\t\t\t\t</div>\n\t\t\t</>\n\t\t);\n\t}\n}"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"type": "BLOCK",
|
|
100
|
+
"identifier": "block-demo",
|
|
101
|
+
"dependencies": {
|
|
102
|
+
"react": {
|
|
103
|
+
"type": "NPM",
|
|
104
|
+
"value": "16.14.0"
|
|
105
|
+
},
|
|
106
|
+
"cloud-react": {
|
|
107
|
+
"type": "NPM",
|
|
108
|
+
"value": "0.0.98"
|
|
109
|
+
},
|
|
110
|
+
"index.jsx": {
|
|
111
|
+
"type": "FILE",
|
|
112
|
+
"value": "import React from 'react';\nimport { Button } from 'cloud-react';\n\nconst blank = '\\u00A0';\n\nexport default class ButtonDemo extends React.Component {\n\trender() {\n\t\treturn (\n\t\t\t<>\n\t\t\t\t<div>\n\t\t\t\t\t<Button block type=\"primary\">\n\t\t\t\t\t\tprimary\n\t\t\t\t\t</Button>\n\t\t\t\t\t{blank}\n\t\t\t\t\t<Button block type=\"normal\">\n\t\t\t\t\t\tnormal\n\t\t\t\t\t</Button>\n\t\t\t\t\t{blank}\n\t\t\t\t\t<Button block type=\"dashed\">\n\t\t\t\t\t\tdashed\n\t\t\t\t\t</Button>\n\t\t\t\t\t{blank}\n\t\t\t\t\t<Button block type=\"link\">\n\t\t\t\t\t\tlink\n\t\t\t\t\t</Button>\n\t\t\t\t</div>\n\t\t\t</>\n\t\t);\n\t}\n}"
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"type": "BLOCK",
|
|
118
|
+
"identifier": "form-demo",
|
|
119
|
+
"dependencies": {
|
|
120
|
+
"cloud-react": {
|
|
121
|
+
"type": "NPM",
|
|
122
|
+
"value": "0.0.98"
|
|
123
|
+
},
|
|
124
|
+
"index.jsx": {
|
|
125
|
+
"type": "FILE",
|
|
126
|
+
"value": "import { Form, Field, Input } from 'cloud-react';\n\n// 简单场景\nfunction FormA() {\n\tconst field = Field.useField();\n\n\treturn (\n\t\t<Form field={field}>\n\t\t\t<Form.Item>\n\t\t\t\t<Input\n\t\t\t\t\t{...field.init('name', {\n\t\t\t\t\t\trules: [{ required: true, message: '用户名必须填写' }]\n\t\t\t\t\t})}\n\t\t\t\t/>\n\t\t\t</Form.Item>\n\t\t</Form>\n\t);\n}\n\n// 复杂场景,需要使用Nexus组件\nfunction FormB() {\n\tB;\n\tconst field = Field.useField();\n\n\treturn (\n\t\t<Form field={field}>\n\t\t\t<Form.Item>\n\t\t\t\t<UseNexus field={field} />\n\t\t\t</Form.Item>\n\t\t</Form>\n\t);\n}\n\nfunction UseNexus() {\n\treturn (\n\t\t<Form.Nexus>\n\t\t\t<Input\n\t\t\t\t{...field.init('firstName', {\n\t\t\t\t\trules: [{ required: true, message: '名字必须填写' }]\n\t\t\t\t})}\n\t\t\t/>\n\n\t\t\t<Input\n\t\t\t\t{...field.init('lastName', {\n\t\t\t\t\trules: [{ required: true, message: '姓氏必须填写' }]\n\t\t\t\t})}\n\t\t\t/>\n\t\t</Form.Nexus>\n\t);\n}"
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
]
|
|
131
|
+
}
|
|
132
|
+
}
|
|
@@ -4324,13 +4324,14 @@ body {
|
|
|
4324
4324
|
font-size: 14px;
|
|
4325
4325
|
color: rgba(0, 0, 0, 0.45);
|
|
4326
4326
|
width: 100%;
|
|
4327
|
+
margin-bottom: 16px;
|
|
4327
4328
|
}
|
|
4328
4329
|
.grid-area-new .customer-order-area-new .order-table-title .table-column1,
|
|
4329
4330
|
.grid-area-new .customer-order-area-new .order-table-title .table-column2,
|
|
4330
4331
|
.grid-area-new .customer-order-area-new .order-table-title .table-column5 {
|
|
4331
4332
|
height: 44px;
|
|
4332
4333
|
line-height: 20px;
|
|
4333
|
-
padding: 12px
|
|
4334
|
+
padding: 12px 0;
|
|
4334
4335
|
box-sizing: border-box;
|
|
4335
4336
|
background: #FAFAFA;
|
|
4336
4337
|
border-bottom: 1px solid #E8E8E8;
|
|
@@ -4342,18 +4343,28 @@ body {
|
|
|
4342
4343
|
.grid-area-new .customer-order-area-new .order-table-body {
|
|
4343
4344
|
width: 100%;
|
|
4344
4345
|
display: flex;
|
|
4346
|
+
gap: 16px;
|
|
4345
4347
|
flex-direction: column;
|
|
4346
|
-
height: calc(100% -
|
|
4348
|
+
height: calc(100% - 60px);
|
|
4347
4349
|
box-sizing: border-box;
|
|
4348
4350
|
overflow-y: auto;
|
|
4349
4351
|
overflow-x: hidden;
|
|
4350
4352
|
}
|
|
4353
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-total-amount {
|
|
4354
|
+
height: 39px;
|
|
4355
|
+
line-height: 39px;
|
|
4356
|
+
background: #FAFAFA;
|
|
4357
|
+
border-left: 1px solid #E8E8E8;
|
|
4358
|
+
border-right: 1px solid #E8E8E8;
|
|
4359
|
+
border-bottom: 1px solid #E8E8E8;
|
|
4360
|
+
padding-left: 12px;
|
|
4361
|
+
}
|
|
4351
4362
|
.grid-area-new .customer-order-area-new .order-table-body .order-temp-tip-width {
|
|
4352
|
-
width:
|
|
4363
|
+
width: -moz-fit-content;
|
|
4364
|
+
width: fit-content;
|
|
4353
4365
|
}
|
|
4354
4366
|
.grid-area-new .customer-order-area-new .order-table-body .order-info {
|
|
4355
4367
|
width: 100%;
|
|
4356
|
-
margin-top: 13px;
|
|
4357
4368
|
}
|
|
4358
4369
|
.grid-area-new .customer-order-area-new .order-table-body .order-title {
|
|
4359
4370
|
width: 100%;
|
|
@@ -4365,6 +4376,29 @@ body {
|
|
|
4365
4376
|
border-top: 1px solid #E8E8E8;
|
|
4366
4377
|
border-left: 1px solid #E8E8E8;
|
|
4367
4378
|
border-right: 1px solid #E8E8E8;
|
|
4379
|
+
border-bottom: 1px solid #E8E8E8;
|
|
4380
|
+
gap: 20px;
|
|
4381
|
+
}
|
|
4382
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.order-title-no-shop {
|
|
4383
|
+
background: white;
|
|
4384
|
+
border-top: none;
|
|
4385
|
+
}
|
|
4386
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.order-title-no-shop.order-title-has-children {
|
|
4387
|
+
background: #FAFAFA;
|
|
4388
|
+
}
|
|
4389
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.order-title-no-shop.order-title-has-children .order-special::after {
|
|
4390
|
+
top: 30px;
|
|
4391
|
+
}
|
|
4392
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.order-title-has-children {
|
|
4393
|
+
background: #FAFAFA;
|
|
4394
|
+
}
|
|
4395
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.order-title-has-children .order-special::before,
|
|
4396
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.order-title-has-children .order-special::after {
|
|
4397
|
+
display: block;
|
|
4398
|
+
}
|
|
4399
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.hide-angle .order-special::before,
|
|
4400
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title.hide-angle .order-special::after {
|
|
4401
|
+
display: none;
|
|
4368
4402
|
}
|
|
4369
4403
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-shop,
|
|
4370
4404
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other,
|
|
@@ -4390,13 +4424,10 @@ body {
|
|
|
4390
4424
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-shop .customer-view-icon-svg {
|
|
4391
4425
|
margin-right: 4px;
|
|
4392
4426
|
}
|
|
4393
|
-
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other,
|
|
4394
|
-
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-time {
|
|
4395
|
-
margin-left: 30px;
|
|
4396
|
-
}
|
|
4397
4427
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other span:nth-child(1),
|
|
4398
4428
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-time span:nth-child(1) {
|
|
4399
4429
|
color: rgba(0, 0, 0, 0.65);
|
|
4430
|
+
white-space: nowrap;
|
|
4400
4431
|
}
|
|
4401
4432
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other .copy-order-id,
|
|
4402
4433
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-time .copy-order-id {
|
|
@@ -4407,21 +4438,46 @@ body {
|
|
|
4407
4438
|
width: 180px;
|
|
4408
4439
|
}
|
|
4409
4440
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-special {
|
|
4410
|
-
|
|
4441
|
+
position: relative;
|
|
4442
|
+
max-width: 330px !important;
|
|
4443
|
+
}
|
|
4444
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-special::before {
|
|
4445
|
+
display: none;
|
|
4446
|
+
content: '';
|
|
4447
|
+
position: absolute;
|
|
4448
|
+
width: 10px;
|
|
4449
|
+
height: 10px;
|
|
4450
|
+
background: #FAFAFA;
|
|
4451
|
+
left: 50px;
|
|
4452
|
+
transform: rotate(45deg);
|
|
4453
|
+
top: 23px;
|
|
4454
|
+
border: 1px solid #E8E8E8;
|
|
4455
|
+
}
|
|
4456
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-special:after {
|
|
4457
|
+
display: none;
|
|
4458
|
+
content: '';
|
|
4459
|
+
position: absolute;
|
|
4460
|
+
width: 20px;
|
|
4461
|
+
height: 10px;
|
|
4462
|
+
background: #FAFAFA;
|
|
4463
|
+
top: 29px;
|
|
4464
|
+
left: 45px;
|
|
4411
4465
|
}
|
|
4412
4466
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-0 {
|
|
4413
|
-
width: calc((100% - 180px - 180px - 330px - 120px) / 2);
|
|
4467
|
+
max-width: calc((100% - 180px - 180px - 330px - 120px) / 2);
|
|
4414
4468
|
}
|
|
4415
4469
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-1-1 {
|
|
4416
|
-
width: calc((100% - 180px - 180px - 180px - 330px - 150px) / 2);
|
|
4470
|
+
max-width: calc((100% - 180px - 180px - 180px - 330px - 150px - 20px * 5 + 200px) / 2);
|
|
4417
4471
|
}
|
|
4418
4472
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-1-2 {
|
|
4419
|
-
width: calc((100% - 180px - 180px - 330px - 150px) / 3);
|
|
4473
|
+
max-width: calc((100% - 180px - 180px - 330px - 150px - 20px * 5 + 200px) / 3);
|
|
4420
4474
|
}
|
|
4421
4475
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-common-width-2 {
|
|
4422
|
-
width: calc((100% - 180px - 180px - 180px - 330px - 180px) / 3);
|
|
4476
|
+
max-width: calc((100% - 180px - 180px - 180px - 330px - 180px - 20px * 5 + 300px) / 3);
|
|
4423
4477
|
}
|
|
4424
|
-
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-shop {
|
|
4478
|
+
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-shop .order-shop-name {
|
|
4479
|
+
width: calc(100% - 20px);
|
|
4480
|
+
display: block;
|
|
4425
4481
|
overflow: hidden;
|
|
4426
4482
|
white-space: nowrap;
|
|
4427
4483
|
text-overflow: ellipsis;
|
|
@@ -4432,12 +4488,6 @@ body {
|
|
|
4432
4488
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other span {
|
|
4433
4489
|
display: inline-block;
|
|
4434
4490
|
}
|
|
4435
|
-
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other .copy-order-id {
|
|
4436
|
-
width: calc(100% - 60px);
|
|
4437
|
-
}
|
|
4438
|
-
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other .order-other-status {
|
|
4439
|
-
width: calc(100% - 70px);
|
|
4440
|
-
}
|
|
4441
4491
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other .copy-order-id,
|
|
4442
4492
|
.grid-area-new .customer-order-area-new .order-table-body .order-title .order-other .order-other-status {
|
|
4443
4493
|
display: inline-block;
|
|
@@ -4544,7 +4594,7 @@ body {
|
|
|
4544
4594
|
display: -webkit-box;
|
|
4545
4595
|
-webkit-box-orient: vertical;
|
|
4546
4596
|
-moz-box-orient: vertical;
|
|
4547
|
-
-webkit-line-clamp:
|
|
4597
|
+
-webkit-line-clamp: 3;
|
|
4548
4598
|
overflow: hidden;
|
|
4549
4599
|
}
|
|
4550
4600
|
.grid-area-new .customer-order-area-new .order-table-body .order-content .product-name a:hover {
|
|
@@ -4603,17 +4653,14 @@ body {
|
|
|
4603
4653
|
.grid-area-new .customer-order-area-new .order-table-body .order-content .order-content-4 p:nth-child(1) {
|
|
4604
4654
|
color: #FD830A;
|
|
4605
4655
|
}
|
|
4606
|
-
.grid-area-new .customer-order-area-new .order-extend-1 {
|
|
4607
|
-
width: calc(100% + 14.5%) !important;
|
|
4608
|
-
}
|
|
4609
4656
|
.grid-area-new .customer-order-area-new .order-extend-1 .table-column1 {
|
|
4610
|
-
width:
|
|
4657
|
+
width: 27.5% !important;
|
|
4611
4658
|
}
|
|
4612
4659
|
.grid-area-new .customer-order-area-new .order-extend-1 .table-column2 {
|
|
4613
|
-
width: 12.
|
|
4660
|
+
width: 12.7% !important;
|
|
4614
4661
|
}
|
|
4615
4662
|
.grid-area-new .customer-order-area-new .order-extend-1 .table-column5 {
|
|
4616
|
-
width: 21.
|
|
4663
|
+
width: 21.7% !important;
|
|
4617
4664
|
}
|
|
4618
4665
|
.grid-area-new .customer-order-area-new .order-extend-1 .order-content-1-1 {
|
|
4619
4666
|
width: calc(100% - 21.6% - 12.6%) !important;
|
|
@@ -4627,9 +4674,6 @@ body {
|
|
|
4627
4674
|
.grid-area-new .customer-order-area-new .order-extend-1 .order-content-4 {
|
|
4628
4675
|
width: 21.6% !important;
|
|
4629
4676
|
}
|
|
4630
|
-
.grid-area-new .customer-order-area-new .order-extend-2 {
|
|
4631
|
-
width: calc(100% + 14.5% + 14.5%) !important;
|
|
4632
|
-
}
|
|
4633
4677
|
.grid-area-new .customer-order-area-new .order-extend-2 .table-column1 {
|
|
4634
4678
|
width: 24.9% !important;
|
|
4635
4679
|
}
|
|
@@ -4651,14 +4695,11 @@ body {
|
|
|
4651
4695
|
.grid-area-new .customer-order-area-new .order-extend-2 .order-content-4 {
|
|
4652
4696
|
width: 19.1% !important;
|
|
4653
4697
|
}
|
|
4654
|
-
.grid-area-new .customer-order-area-new .order-extend-3 {
|
|
4655
|
-
width: calc(100% + 14.5% + 14.5% + 14.5%) !important;
|
|
4656
|
-
}
|
|
4657
4698
|
.grid-area-new .customer-order-area-new .order-extend-3 .table-column1 {
|
|
4658
|
-
width:
|
|
4699
|
+
width: 21.6% !important;
|
|
4659
4700
|
}
|
|
4660
4701
|
.grid-area-new .customer-order-area-new .order-extend-3 .table-column2 {
|
|
4661
|
-
width: 10.
|
|
4702
|
+
width: 10.2% !important;
|
|
4662
4703
|
}
|
|
4663
4704
|
.grid-area-new .customer-order-area-new .order-extend-3 .table-column5 {
|
|
4664
4705
|
width: 17.2% !important;
|
|
@@ -6466,6 +6507,55 @@ body {
|
|
|
6466
6507
|
flex: 1;
|
|
6467
6508
|
}
|
|
6468
6509
|
|
|
6510
|
+
.customer-view-wechat-detail {
|
|
6511
|
+
width: 256px;
|
|
6512
|
+
height: 494px;
|
|
6513
|
+
background-size: contain;
|
|
6514
|
+
background-repeat: no-repeat;
|
|
6515
|
+
padding: 76px 16px 43px;
|
|
6516
|
+
}
|
|
6517
|
+
.customer-view-wechat-detail .customer-view-wechat-preview {
|
|
6518
|
+
height: auto;
|
|
6519
|
+
overflow-y: auto;
|
|
6520
|
+
padding: 12px 18px;
|
|
6521
|
+
font-size: 12px;
|
|
6522
|
+
line-height: 20px;
|
|
6523
|
+
background: #fff;
|
|
6524
|
+
border-radius: 4px;
|
|
6525
|
+
}
|
|
6526
|
+
.customer-view-wechat-detail .customer-view-wechat-preview .customer-view-wechat-preview-title {
|
|
6527
|
+
display: flex;
|
|
6528
|
+
justify-content: space-between;
|
|
6529
|
+
font-size: 14px;
|
|
6530
|
+
color: #3c3c3c;
|
|
6531
|
+
font-weight: 500;
|
|
6532
|
+
}
|
|
6533
|
+
.customer-view-wechat-detail .customer-view-wechat-preview .customer-view-wechat-preview-fix-variate {
|
|
6534
|
+
color: rgba(0, 0, 0, 0.45);
|
|
6535
|
+
line-height: 20px;
|
|
6536
|
+
}
|
|
6537
|
+
.customer-view-wechat-detail .customer-view-wechat-preview .customer-view-wechat-preview-variate-item {
|
|
6538
|
+
display: flex;
|
|
6539
|
+
align-items: flex-start;
|
|
6540
|
+
color: rgba(0, 0, 0, 0.85);
|
|
6541
|
+
}
|
|
6542
|
+
.customer-view-wechat-detail .customer-view-wechat-preview .customer-view-wechat-preview-variate-item .customer-view-wechat-preview-variate-value {
|
|
6543
|
+
width: -moz-fit-content;
|
|
6544
|
+
width: fit-content;
|
|
6545
|
+
word-break: break-all;
|
|
6546
|
+
white-space: break-spaces;
|
|
6547
|
+
}
|
|
6548
|
+
.customer-view-wechat-detail .customer-view-wechat-preview .customer-view-wechat-preview-start-words {
|
|
6549
|
+
margin-bottom: 8px;
|
|
6550
|
+
}
|
|
6551
|
+
.customer-view-wechat-detail .customer-view-wechat-preview .customer-view-wechat-preview-detail {
|
|
6552
|
+
display: flex;
|
|
6553
|
+
justify-content: space-between;
|
|
6554
|
+
padding-top: 10px;
|
|
6555
|
+
border-top: 1px solid #e8e8e8;
|
|
6556
|
+
margin-top: 8px;
|
|
6557
|
+
}
|
|
6558
|
+
|
|
6469
6559
|
.shop-form {
|
|
6470
6560
|
display: flex;
|
|
6471
6561
|
align-items: center;
|