af-mobile-client-vue3 1.0.55 → 1.0.57

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.55",
4
+ "version": "1.0.57",
5
5
  "description": "Vue + Vite component lib",
6
6
  "license": "MIT",
7
7
  "engines": {
@@ -233,7 +233,7 @@ function handleFunctionStyle(funcString, param) {
233
233
  <VanRow gutter="20" class="card_item_header" align="center">
234
234
  <VanCol v-for="(column) in mainColumns" :key="`main_${column.dataIndex}`" :span="18">
235
235
  <p class="card_item_title" :style="handleFunctionStyle(column.styleFunctionForValue, item[column.dataIndex])">
236
- {{ item[column.dataIndex] }}
236
+ {{ item[column.dataIndex] ? item[column.dataIndex] : '--' }}
237
237
  </p>
238
238
  </VanCol>
239
239
  <VanCol v-for="(column) in subTitleColumns" :key="`subtitle_${column.dataIndex}`" :span="6">
@@ -10,7 +10,7 @@ import { useRoute } from "vue-router";
10
10
  import {onMounted,ref,getCurrentInstance} from 'vue'
11
11
  import XForm from '@af-mobile-client-vue3/components/data/XForm/index.vue'
12
12
  import {openApiLogic} from "@af-mobile-client-vue3/services/api/common";
13
- import {showDialog} from "vant/lib";
13
+ import {showDialog} from "vant";
14
14
  import {formatDate} from '@af-mobile-client-vue3/hooks/useCommon'
15
15
  let xForm = ref(null)
16
16
  let loading = ref(true)
@@ -1,5 +1,5 @@
1
1
  <script setup lang="ts">
2
- import { Loading as VanLoading, showDialog } from 'vant/lib'
2
+ import { Loading as VanLoading, showDialog } from 'vant'
3
3
  import { useRoute } from 'vue-router'
4
4
  import { onMounted, ref } from 'vue'
5
5
  import { http } from '@af-mobile-client-vue3/utils/http'
package/vite.config.ts CHANGED
@@ -12,7 +12,7 @@ export default ({ mode }: ConfigEnv): UserConfig => {
12
12
 
13
13
  const appProxys = {}
14
14
 
15
- const v4Server = 'http://192.168.50.67:31567'
15
+ const v4Server = 'http://192.168.50.67:31467'
16
16
  const localSystem = 'http://127.0.0.1:9014'
17
17
  const localGateway = 'http://127.0.0.1:8080'
18
18
  const v3Server = 'http://123.60.214.109:8406'