@10yun/cv-mobile-ui 0.5.12 → 0.5.14

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.
@@ -187,6 +187,8 @@ export default {
187
187
  <style>
188
188
  .cv-picker {
189
189
  min-height: 35px;
190
+ display: flex;
191
+ flex: 1;
190
192
  }
191
193
  .cv-picker-item {
192
194
  height: 35px;
@@ -194,6 +196,7 @@ export default {
194
196
  float: left;
195
197
  margin-right: 10px;
196
198
  width: 100%;
199
+ font-size: 15px;
197
200
  }
198
201
  .cv-picker-item-placeholder {
199
202
  color: grey;
@@ -234,6 +234,8 @@ export default {
234
234
  <style>
235
235
  .cv-picker {
236
236
  min-height: 35px;
237
+ display: flex;
238
+ flex: 1;
237
239
  }
238
240
  .cv-picker-item {
239
241
  height: 35px;
@@ -241,6 +243,7 @@ export default {
241
243
  float: left;
242
244
  margin-right: 10px;
243
245
  width: 100%;
246
+ font-size: 15px;
244
247
  }
245
248
  .cv-picker-item-placeholder {
246
249
  color: grey;
@@ -295,6 +295,8 @@ export default {
295
295
  <style>
296
296
  .cv-picker {
297
297
  min-height: 35px;
298
+ display: flex;
299
+ flex: 1;
298
300
  }
299
301
  .cv-picker-item {
300
302
  height: 35px;
@@ -302,6 +304,7 @@ export default {
302
304
  float: left;
303
305
  margin-right: 10px;
304
306
  width: 100%;
307
+ font-size: 15px;
305
308
  }
306
309
  .cv-picker-item-placeholder {
307
310
  color: grey;
@@ -112,7 +112,7 @@ export default {
112
112
  .cv-textarea__content {
113
113
  min-height: 65px;
114
114
  line-height: 1.5em;
115
- font-size: 14px;
115
+ font-size: 15px;
116
116
  width: auto;
117
117
  }
118
118
  .cv-textarea__border {
@@ -18,7 +18,7 @@
18
18
 
19
19
  <script>
20
20
  export default {
21
- name: 'cvPickerTime',
21
+ name: 'cvTimeBase',
22
22
  props: {
23
23
  //默认输入框
24
24
  value: {
@@ -85,13 +85,14 @@ export default {
85
85
  <style>
86
86
  .cv-time-base {
87
87
  min-height: 35px;
88
+ display: flex;
89
+ flex: 1;
88
90
  }
89
91
  .cv-time-base-item {
90
92
  height: 35px;
91
93
  line-height: 35px;
92
- float: left;
93
- margin-right: 10px;
94
94
  width: 100%;
95
+ margin-left: 20px;
95
96
  }
96
97
  .cv-time-base-placeholder {
97
98
  color: grey;
@@ -1,30 +0,0 @@
1
- <template>
2
- <view class="cv-form-merge">
3
- <slot />
4
- </view>
5
- </template>
6
- <script>
7
- export default {
8
- name: 'cvFormMerge',
9
- props: {},
10
- data() {
11
- return {};
12
- },
13
- created() {}
14
- };
15
- </script>
16
-
17
- <style>
18
- .cv-form-merge {
19
- margin-bottom: 10px;
20
- background-color: #ffffff;
21
- overflow: auto;
22
- }
23
- .cv-form-merge /deep/ .cv-form-item {
24
- float: left;
25
- box-sizing: border-box;
26
- }
27
- .cv-form-merge /deep/ .cv-form-item:nth-child(n + 2) {
28
- border-bottom: solid 1px #eee;
29
- }
30
- </style>