vue2-client 1.18.69 → 1.19.0

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.
@@ -144,22 +144,6 @@
144
144
  </template>
145
145
  </a-select-option>
146
146
  </template>
147
- <template v-else>
148
- <a-select-option
149
- v-for="item in $appdata.getDictionaryList(attr.keyName)"
150
- :key="item.value"
151
- :value="item.value + ''"
152
- >
153
- <!-- 徽标(badge) -->
154
- <x-badge
155
- :badge-key="attr.keyName"
156
- :replaceText="item.text"
157
- :value="item.value"
158
- :service-name="serviceName"
159
- :env="env"
160
- />
161
- </a-select-option>
162
- </template>
163
147
  </template>
164
148
  </a-select>
165
149
  <a-select
@@ -259,15 +243,6 @@
259
243
  </template>
260
244
  </a-select-option>
261
245
  </template>
262
- <template v-else>
263
- <a-select-option
264
- v-for="item in $appdata.getDictionaryList(attr.keyName)"
265
- :key="item.value"
266
- :value="item.value + ''"
267
- >
268
- {{ item.text }}
269
- </a-select-option>
270
- </template>
271
246
  </template>
272
247
  </a-select>
273
248
  <a-select
@@ -333,11 +308,6 @@
333
308
  {{ item.label }}
334
309
  </a-radio>
335
310
  </template>
336
- <template v-else>
337
- <a-radio v-for="(item, index) in $appdata.getDictionaryList(attr.keyName)" :key="index" :value="item.value">
338
- {{ item.text }}
339
- </a-radio>
340
- </template>
341
311
  </template>
342
312
  </a-radio-group>
343
313
  </a-form-model-item>