vue2-client 1.12.40 → 1.12.42

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.12.40",
3
+ "version": "1.12.42",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -25,7 +25,7 @@
25
25
  :allowHalf="allowHalf"
26
26
  disabled
27
27
  >
28
- <a-icon slot="character" :type="icon" />
28
+ <a-icon slot="character" :type="icon" theme="filled"/>
29
29
  </a-rate>
30
30
  </a-select-option>
31
31
  </a-select>
@@ -38,7 +38,7 @@
38
38
  :allowHalf="allowHalf"
39
39
  @change="handleRateChange"
40
40
  >
41
- <a-icon slot="character" :type="icon" />
41
+ <a-icon slot="character" :type="icon" theme="filled"/>
42
42
  </a-rate>
43
43
  </div>
44
44
  </template>
@@ -137,8 +137,13 @@ export default {
137
137
  </script>
138
138
 
139
139
  <style lang="less" scoped>
140
- .x-rate {
140
+ .x-rate::v-deep {
141
141
  width: 100%;
142
142
  display: inline-block;
143
+ .ant-select-selection {
144
+ height: 32px;
145
+ max-height: 32px;
146
+ overflow-y: scroll;
147
+ }
143
148
  }
144
149
  </style>
@@ -37,7 +37,7 @@
37
37
  />
38
38
  </template>
39
39
  <span v-else-if="item.slotType === 'rate'" :key="'rate-' + c_index">
40
- <x-rate :value="text" :disabled="true" :allow-half="item.allowHalf" :max-count="item.maxCount" />
40
+ <x-rate :value="text" :disabled="true" :allow-half="item.allowHalf" :icon="item.rateIcon" :max-count="item.maxCount" />
41
41
  </span>
42
42
  <span v-else-if="item.slotType === 'index'" :key="'index-' + c_index">
43
43
  {{ index + 1 }}