diff --git a/.env.development b/.env.development index 248fe20..eba4a62 100644 --- a/.env.development +++ b/.env.development @@ -1,2 +1,2 @@ # VITE_APP_URL = http://192.168.31.82:8771 -VITE_APP_URL = http://192.168.31.118:8771 \ No newline at end of file +VITE_APP_URL = http://18.167.251.121:10095 \ No newline at end of file diff --git a/.env.production b/.env.production index 4d28888..f904b9e 100644 --- a/.env.production +++ b/.env.production @@ -1 +1 @@ -VITE_APP_URL = http://18.167.251.121:10096 \ No newline at end of file +VITE_APP_URL = http://18.167.251.121:10095 \ No newline at end of file diff --git a/package.json b/package.json index 727e0cf..6abf0ff 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,9 @@ "private": true, "scripts": { "dev": "vite", - "build": "run-p type-check build-only", + "build": "vite build", "preview": "vite preview", - "build-only": "vite build", + "build-typeCheck": "run-p type-check build-only", "type-check": "vue-tsc --noEmit", "lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore", "format": "prettier --write src/", diff --git a/src/views/Workshop/selectModel.vue b/src/views/Workshop/selectModel.vue index 77a35e5..c96db73 100644 --- a/src/views/Workshop/selectModel.vue +++ b/src/views/Workshop/selectModel.vue @@ -2,7 +2,6 @@ import { onMounted, onUnmounted, reactive, toRefs, computed } from "vue"; import HeaderTitle from '@/components/HeaderTitle.vue' import { useRouter } from 'vue-router' -import imgReturn from '@/assets/images/workshop/posture/posture_1.png' import { useGenerateStore } from '@/stores' const router = useRouter() //const props = defineProps({ @@ -16,27 +15,27 @@ let data = reactive({ [ { id:1, - imgUrl:imgReturn, + imgUrl:'imgReturn', }, { id:2, - imgUrl:imgReturn, + imgUrl:'imgReturn', }, { id:3, - imgUrl:imgReturn, + imgUrl:'imgReturn', }, { id:4, - imgUrl:imgReturn, + imgUrl:'imgReturn', }, { id:5, - imgUrl:imgReturn, + imgUrl:'imgReturn', }, { id:6, - imgUrl:imgReturn, + imgUrl:'imgReturn', }, ], diff --git a/tsconfig.json b/tsconfig.json index 8056160..0ba7f82 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,7 +12,9 @@ }, "skipLibCheck": true, "strict": false, - "noEmit": true + "noEmit": true, + "noImplicitAny": false, + "noEmitOnError": false }, "references": [