af-mobile-client-vue3 1.0.89 → 1.0.90

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,7 +1,7 @@
1
1
  {
2
2
  "name": "af-mobile-client-vue3",
3
3
  "type": "module",
4
- "version": "1.0.89",
4
+ "version": "1.0.90",
5
5
  "description": "Vue + Vite component lib",
6
6
  "license": "MIT",
7
7
  "engines": {
@@ -67,7 +67,7 @@ const resultLabel = computed({
67
67
  return ''
68
68
  const res = props.columns.filter((item) => {
69
69
  const data = props.offOption ? item : item[props.option.value]
70
- return data === resultValue.value[0]
70
+ return data === resultValue.value
71
71
  })
72
72
  return res.length ? (props.offOption ? res[0] : res[0][props.option.text]) : ''
73
73
  },
@@ -400,6 +400,7 @@ function addOption() {
400
400
  <VanRow gutter="20" class="card_item_details" @click="emit('toDetail', item)">
401
401
  <VanCol v-for="column of detailColumns" :key="`details_${column.dataIndex}`" :span="column.span">
402
402
  <p>
403
+ {{ column.title }}:
403
404
  <XBadge
404
405
  :style="handleFunctionStyle(column.styleFunctionForValue, item[column.dataIndex])"
405
406
  :dict-name="column.dictName" :dict-value="item[column.dataIndex]"