bxs-tools-ui 1.3.7 → 1.3.8-1
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/README.md +2 -2
- package/lib/add-and-take/index.css +99 -3
- package/lib/add-and-take/index.js +20427 -6012
- package/lib/adjust-baoe/index.js +4203 -4032
- package/lib/business-card/index.js +144 -18
- package/lib/bxs-utils/index.js +511 -511
- package/lib/canvas-poster/index.js +141 -15
- package/lib/index.css +99 -3
- package/lib/index.js +24610 -24197
- package/lib/insure-calculate/index.js +5153 -5151
- package/lib/person-info/index.js +4950 -4955
- package/lib/product-info/index.js +22760 -22764
- package/package.json +4 -3
- package/packages/add-and-take/components/interest-items.css +96 -0
- package/packages/add-and-take/components/interest-items.vue +293 -0
- package/packages/add-and-take/handler.js +80 -1
- package/packages/add-and-take/index.css +2 -1
- package/packages/add-and-take/index.vue +119 -148
- package/packages/planbook-input/components/product-table.css +1 -1
- package/packages/planbook-input/components/product-table.vue +8 -3
- package/packages/planbook-input/readme.md +1 -1
package/README.md
CHANGED
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
* 交易计算模块
|
|
9
9
|
* 一些业务相关的函数
|
|
10
10
|
|
|
11
|
-
[组件预览](
|
|
12
|
-
[文档说明](
|
|
11
|
+
[组件预览](https://docs.winbaoxian.cn/bxs-tools-ui/demo.html#/Home)
|
|
12
|
+
[文档说明](https://docs.winbaoxian.cn/bxs-tools-ui/docs.html#/)
|
|
@@ -55,6 +55,101 @@ html{-webkit-text-size-adjust:100%;text-size-adjust:100%}body{font-family:system
|
|
|
55
55
|
-webkit-text-fill-color: #333 !important;
|
|
56
56
|
}
|
|
57
57
|
|
|
58
|
+
.bxt-aat-interest-form {
|
|
59
|
+
font-size: 13px
|
|
60
|
+
}
|
|
61
|
+
.bxt-aat-interest-form input {
|
|
62
|
+
border: none;
|
|
63
|
+
vertical-align: middle;
|
|
64
|
+
background: transparent;
|
|
65
|
+
-webkit-appearance: none;
|
|
66
|
+
-moz-appearance: none;
|
|
67
|
+
appearance: none;
|
|
68
|
+
}
|
|
69
|
+
.bxt-aat-interest-form .bxt-aatif-item {
|
|
70
|
+
display: -webkit-box;
|
|
71
|
+
display: -webkit-flex;
|
|
72
|
+
display: -moz-box;
|
|
73
|
+
display: -ms-flexbox;
|
|
74
|
+
display: flex;
|
|
75
|
+
margin-right: 10px;
|
|
76
|
+
margin-bottom: 9px;
|
|
77
|
+
border-radius: 6px
|
|
78
|
+
}
|
|
79
|
+
.bxt-aat-interest-form .bxt-aatif-item .bxt-aatifi-left {
|
|
80
|
+
-webkit-box-flex: 0;
|
|
81
|
+
-webkit-flex: 0 0 5em;
|
|
82
|
+
-moz-box-flex: 0;
|
|
83
|
+
-ms-flex: 0 0 5em;
|
|
84
|
+
flex: 0 0 5em;
|
|
85
|
+
margin-right: 7px;
|
|
86
|
+
margin-bottom: 12px;
|
|
87
|
+
color: #999;
|
|
88
|
+
text-align: right;
|
|
89
|
+
}
|
|
90
|
+
.bxt-aat-interest-form .bxt-aatif-item .bxt-aatifi-right {
|
|
91
|
+
-webkit-box-flex: 1;
|
|
92
|
+
-webkit-flex: 1;
|
|
93
|
+
-moz-box-flex: 1;
|
|
94
|
+
-ms-flex: 1;
|
|
95
|
+
flex: 1
|
|
96
|
+
}
|
|
97
|
+
.bxt-aat-interest-form .bxt-aatif-item .bxt-aatifi-right .bxt-aatifi-right-options > span {
|
|
98
|
+
display: inline-block;
|
|
99
|
+
width: 42%;
|
|
100
|
+
margin: 0 9px 12px 0;
|
|
101
|
+
padding: 3px 6px;
|
|
102
|
+
text-align: center;
|
|
103
|
+
border-radius: 50px;
|
|
104
|
+
background: rgba(0, 0, 0, 0.04);
|
|
105
|
+
}
|
|
106
|
+
.bxt-aat-interest-form .bxt-aatif-item .bxt-aatifi-right .bxt-aatifi-right-options > span.active {
|
|
107
|
+
color: #0a64fe;
|
|
108
|
+
font-weight: bold;
|
|
109
|
+
background: #e6effe;
|
|
110
|
+
}
|
|
111
|
+
.bxt-aat-interest-form .bxt-aatif-item .bxt-aatifi-right .bxt-aatifi-right-custom {
|
|
112
|
+
position: relative;
|
|
113
|
+
margin-top: 6px;
|
|
114
|
+
margin-bottom: 9px;
|
|
115
|
+
padding: 12px;
|
|
116
|
+
background: #f4f8ff;
|
|
117
|
+
border-radius: 6px
|
|
118
|
+
}
|
|
119
|
+
.bxt-aat-interest-form .bxt-aatif-item .bxt-aatifi-right .bxt-aatifi-right-custom .bxt-aatifi-right-custom-input input {
|
|
120
|
+
width: 110px;
|
|
121
|
+
padding: 3px 9px;
|
|
122
|
+
background: white;
|
|
123
|
+
margin-right: 6px;
|
|
124
|
+
border: 1px solid #e6e6e6;
|
|
125
|
+
border-radius: 50px;
|
|
126
|
+
vertical-align: middle;
|
|
127
|
+
}
|
|
128
|
+
.bxt-aat-interest-form .bxt-aatif-item .bxt-aatifi-right .bxt-aatifi-right-custom .bxt-aatifi-right-custom-input span {
|
|
129
|
+
vertical-align: middle;
|
|
130
|
+
}
|
|
131
|
+
.bxt-aat-interest-form .bxt-aatif-item .bxt-aatifi-right .bxt-aatifi-right-custom .bxt-aatifi-right-custom-tips span {
|
|
132
|
+
display: inline-block;
|
|
133
|
+
margin-top: 12px;
|
|
134
|
+
padding: 3px 9px;
|
|
135
|
+
border-radius: 50px;
|
|
136
|
+
color: #666;
|
|
137
|
+
border: 1px solid #d3d3d3;
|
|
138
|
+
background: #f5f5f5;
|
|
139
|
+
}
|
|
140
|
+
.bxt-aat-interest-form .bxt-aatif-item .bxt-aatifi-right .bxt-aatifi-right-custom::before {
|
|
141
|
+
position: absolute;
|
|
142
|
+
top: -4px;
|
|
143
|
+
left: 20%;
|
|
144
|
+
display: inline-block;
|
|
145
|
+
width: 10px;
|
|
146
|
+
height: 10px;
|
|
147
|
+
background: #f4f8ff;
|
|
148
|
+
content: '';
|
|
149
|
+
-webkit-transform: rotate(45deg);
|
|
150
|
+
transform: rotate(45deg);
|
|
151
|
+
}
|
|
152
|
+
|
|
58
153
|
:root {
|
|
59
154
|
|
|
60
155
|
/* 主色 */
|
|
@@ -474,7 +569,8 @@ footer {
|
|
|
474
569
|
background: white;
|
|
475
570
|
text-align: center;
|
|
476
571
|
}
|
|
477
|
-
.bxt-add-and-take .bxt-aat-footer .bxt-aat-footer-wrapper span.bxt-aat-footer-delete-all-btn
|
|
572
|
+
.bxt-add-and-take .bxt-aat-footer .bxt-aat-footer-wrapper span.bxt-aat-footer-delete-all-btn,
|
|
573
|
+
.bxt-add-and-take .bxt-aat-footer .bxt-aat-footer-wrapper span.bxt-aat-footer-recommend-btn {
|
|
478
574
|
display: -webkit-box;
|
|
479
575
|
display: -webkit-flex;
|
|
480
576
|
display: -moz-box;
|
|
@@ -491,12 +587,12 @@ footer {
|
|
|
491
587
|
background: none;
|
|
492
588
|
text-align: left
|
|
493
589
|
}
|
|
494
|
-
.bxt-add-and-take .bxt-aat-footer .bxt-aat-footer-wrapper span.bxt-aat-footer-delete-all-btn .icon-delete_rubbish {
|
|
590
|
+
.bxt-add-and-take .bxt-aat-footer .bxt-aat-footer-wrapper span.bxt-aat-footer-delete-all-btn .icon-delete_rubbish, .bxt-add-and-take .bxt-aat-footer .bxt-aat-footer-wrapper span.bxt-aat-footer-recommend-btn .icon-delete_rubbish {
|
|
495
591
|
margin-right: 3px;
|
|
496
592
|
font-size: 24px;
|
|
497
593
|
vertical-align: middle;
|
|
498
594
|
}
|
|
499
|
-
.bxt-add-and-take .bxt-aat-footer .bxt-aat-footer-wrapper span.bxt-aat-footer-delete-all-btn em {
|
|
595
|
+
.bxt-add-and-take .bxt-aat-footer .bxt-aat-footer-wrapper span.bxt-aat-footer-delete-all-btn em, .bxt-add-and-take .bxt-aat-footer .bxt-aat-footer-wrapper span.bxt-aat-footer-recommend-btn em {
|
|
500
596
|
vertical-align: middle;
|
|
501
597
|
}
|
|
502
598
|
.bxt-add-and-take .bxt-aat-footer .bxt-aat-footer-wrapper span.bxt-aat-footer-ok-btn {
|