Browse Source

修改静态文件

develop
fuguobin 11 months ago
parent
commit
a355762be0
  1. BIN
      public/static/images/liangfaliangqu.gif
  2. BIN
      public/static/images/liangfaliangquyibeng.gif
  3. BIN
      public/static/images/sanfasanqu.gif
  4. BIN
      public/static/images/sanfasanquyibeng.gif
  5. BIN
      public/static/images/yifaliangqu.gif
  6. BIN
      public/static/images/yifaliangquyibeng.gif
  7. BIN
      public/static/images/yifasanqu.gif
  8. BIN
      public/static/images/yifayiqu.gif
  9. BIN
      public/static/images/yifayiquyibeng.gif
  10. BIN
      public/static/images/yifaysanquyibeng.gif
  11. 4
      src/views/monitoring/screen/components/main.vue
  12. 15
      vite.config.ts

BIN
public/static/images/liangfaliangqu.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

BIN
public/static/images/liangfaliangquyibeng.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 MiB

BIN
public/static/images/sanfasanqu.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 MiB

BIN
public/static/images/sanfasanquyibeng.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 MiB

BIN
public/static/images/yifaliangqu.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 MiB

BIN
public/static/images/yifaliangquyibeng.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 MiB

BIN
public/static/images/yifasanqu.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 MiB

BIN
public/static/images/yifayiqu.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 947 KiB

BIN
public/static/images/yifayiquyibeng.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 948 KiB

BIN
public/static/images/yifaysanquyibeng.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 MiB

4
src/views/monitoring/screen/components/main.vue

@ -210,8 +210,8 @@ const userInfo = JSON.parse(userStorageInfo === null ? '' : userStorageInfo);
// const baseApi = "http://board.heatiot.cn:8001/prod-api"//websocket
//const baseApi = import.meta.env.VITE_APP_BASE_API
//const apiUrl = baseApi.replace(/https?:/, '');
// const wsUrl = `ws://${window.location.host}/ws/websocket/${userInfo.userName}`; //websocket
const wsUrl = `ws://10.10.10.56:9010/websocket/${userInfo.userName}`; //websocket
const wsUrl = `ws://${window.location.host}/ws/websocket/${userInfo.userName}`; //websocket
// const wsUrl = `ws://10.10.10.56:9010/websocket/${userInfo.userName}`; //websocket
const emit = defineEmits(['tableHeaderData']);
// const listData = ref([

15
vite.config.ts

@ -44,23 +44,14 @@ export default defineConfig(({ mode }: ConfigEnv): UserConfig => {
force: false, //是否强制依赖预构建
hmr: true, //配置HMR
proxy: {
'/dev-api': {
target: 'http://172.1.2.39:9010/', //本地接口地址
[env.VITE_APP_BASE_API]: {
// target: 'http://172.1.2.39:9010/', //本地接口地址
// target: 'http://172.1.2.90:9010/', //本地接口地址
// target: 'http://10.10.10.56:9010/', //线上测试接口地址
target: 'http://10.10.10.56:9010/', //线上测试接口地址
changeOrigin: true,
rewrite: path => path.replace(/^\/dev-api/, '')
}
}
// proxy: {
// [env.VITE_APP_BASE_API]: {
// // target: 'http://172.1.2.196:9010/', //本地接口地址
// target: 'http://172.1.2.158:9010/', //本地接口地址
// // target: 'http://10.10.10.56:9010/', //线上测试接口地址
// changeOrigin: true,
// rewrite: path => path.replace(new RegExp('^' + env.VITE_APP_BASE_API), '')
// }
// }
},
plugins: [
vue(),

Loading…
Cancel
Save