vue2-client 1.9.88 → 1.9.89

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.9.88",
3
+ "version": "1.9.89",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -35,21 +35,21 @@
35
35
  @click="emitFunc(attr.inputOnAfterFunc,attr)">
36
36
  {{ attr.inputOnAfterName }}
37
37
  </a-button>
38
- <!-- 状态按钮 -->
39
- <x-status-button
40
- v-else
41
- :states="parseStates(attr.inputOnAfterName, attr.inputOnAfterFunc)"
42
- v-on="generateDynamicEvents(attr.inputOnAfterFunc, attr)"
43
- style="flex: 1; width: auto; min-width: 4rem; max-width: 6rem"
44
- />
45
38
  <!-- 仅可以配置 一个按钮 以及 一个图标插槽 -->
46
39
  <a-button
47
40
  style="width: 2rem; flex-shrink: 0;"
48
- v-if="attr.inputOnAfterIcon"
41
+ v-else-if="attr.inputOnAfterIcon"
49
42
  :type="attr.inputOnAfterIcon && attr.inputOnAfterName ? 'primary' :''"
50
43
  :icon="attr.inputOnAfterIcon || 'question'"
51
44
  @click="emitFunc(attr.inputOnAfterIconFunc,attr)">
52
45
  </a-button>
46
+ <!-- 状态按钮 -->
47
+ <x-status-button
48
+ v-else
49
+ :states="parseStates(attr.inputOnAfterName, attr.inputOnAfterFunc)"
50
+ v-on="generateDynamicEvents(attr.inputOnAfterFunc, attr)"
51
+ style="flex: 1; width: auto; min-width: 4rem; max-width: 6rem"
52
+ />
53
53
  </a-input-group>
54
54
  <a-input-number
55
55
  v-else-if="attr.numberInput && !readOnly"