vue2-client 1.8.268 → 1.8.270

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.8.268",
3
+ "version": "1.8.270",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -19,6 +19,7 @@
19
19
  v-model="form[attr.model]"
20
20
  :read-only="readOnly"
21
21
  :disabled="disabled && !readOnly"
22
+ :whitespace="true"
22
23
  style="flex: 1; width: auto; min-width: 0;"
23
24
  :placeholder="attr.placeholder ? attr.placeholder : '请输入'+attr.name.replace(/\s*/g, '')"/>
24
25
  <a-button
@@ -40,6 +41,7 @@
40
41
  <a-input
41
42
  v-else
42
43
  v-model="form[attr.model]"
44
+ :whitespace="true"
43
45
  :read-only="readOnly"
44
46
  :disabled="disabled && !readOnly"
45
47
  style="width:100%"
@@ -33,8 +33,8 @@
33
33
 
34
34
  // 美化滚动条
35
35
  ::-webkit-scrollbar{
36
- height: 9px;
37
- width: 9px;
36
+ width: 7px;
37
+ height: 7px;
38
38
  }
39
39
 
40
40
  ::-webkit-scrollbar-thumb {
@@ -54,4 +54,5 @@
54
54
 
55
55
  ::-webkit-scrollbar-thumb:hover {
56
56
  background: @primary-3;
57
+ border: 0;
57
58
  }