free-fe-core-modules 0.0.48 → 0.0.49

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.
@@ -65,7 +65,7 @@
65
65
 
66
66
  <div v-else-if="(Field.onlyIcon || onlyIcon) && fieldData.value && fieldData.value[0]?.id">
67
67
  <q-img
68
- :src="$filter('serverThumb', `${fieldData.value[0].id}`)"
68
+ :src="$filter(Field?.Options?.NoThumb ? 'serverImage' : 'serverThumb', `${fieldData.value[0].id}`)"
69
69
  style="width:32px; max-height:32px;min-height:32px;"
70
70
  >
71
71
  </q-img>
@@ -210,6 +210,12 @@ export default defineComponent({
210
210
  Name: 'MaxValue',
211
211
  Default: '10m',
212
212
  },
213
+ {
214
+ Type: 'Boolean',
215
+ Default: false,
216
+ Label: '不使用缩略图',
217
+ Name: 'Options.NoThumb',
218
+ },
213
219
  ],
214
220
  Description: '',
215
221
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "free-fe-core-modules",
3
- "version": "0.0.48",
3
+ "version": "0.0.49",
4
4
  "main": "index.js",
5
5
  "repository": "https://github.com/freeeis/free-fe-core-modules.git",
6
6
  "author": "zhiquan",