Browse Source

commit

master
hehongxing 3 years ago
parent
commit
cb3688d7b5
  1. 2
      04.系统编码/Frontend/src/components/DecisionSupport.vue
  2. 2
      04.系统编码/Frontend/src/components/MicrowaveRadiation.vue
  3. 2
      04.系统编码/Frontend/src/components/RamanLidar.vue
  4. 4
      04.系统编码/Frontend/src/components/SynergyEvaluation.vue
  5. 2
      04.系统编码/Frontend/src/components/SystemManagement.vue
  6. 2
      04.系统编码/Frontend/src/uilts/Config.ts
  7. 0
      04.系统编码/Frontend/src/uilts/String.ts
  8. 2
      04.系统编码/Frontend/src/uilts/axios.ts

2
04.系统编码/Frontend/src/components/DecisionSupport.vue

@ -62,7 +62,7 @@
<script lang="ts">
import { onMounted, reactive, toRefs } from 'vue';
import * as Tiff from 'browser-tiff.js';
import { DecisionSupportConfig } from '../hooks/Config';
import { DecisionSupportConfig } from '../uilts/Config';
export default {
name: 'DecisionSupport',

2
04.系统编码/Frontend/src/components/MicrowaveRadiation.vue

@ -101,7 +101,7 @@
<script lang="ts">
import { onMounted, reactive, toRefs } from 'vue';
import moment from "moment";
import { MicrowaveRadiationConfig } from '../hooks/Config';
import { MicrowaveRadiationConfig } from '../uilts/Config';
export default {
name: 'MicrowaveRadiation',

2
04.系统编码/Frontend/src/components/RamanLidar.vue

@ -82,7 +82,7 @@
<script lang="ts">
import { onMounted, reactive, toRefs } from 'vue';
import moment from "moment";
import { RamanLidarConfig } from '../hooks/Config';
import { RamanLidarConfig } from '../uilts/Config';
export default {
name: 'RamanLidar',

4
04.系统编码/Frontend/src/components/SynergyEvaluation.vue

@ -128,9 +128,9 @@
<script lang="ts">
import { onMounted, reactive, toRefs } from 'vue';
import { format } from '../hooks/String';
import { format } from '../uilts/String';
import * as Tiff from 'browser-tiff.js';
import { SynergyEvaluationConfig } from '../hooks/Config';
import { SynergyEvaluationConfig } from '../uilts/Config';
export default {
name: 'SynergyEvaluation',

2
04.系统编码/Frontend/src/components/SystemManagement.vue

@ -88,7 +88,7 @@
import {reactive, toRefs ,ref , onMounted} from 'vue';
import { post } from "../uilts/axios";
import { ElMessage } from 'element-plus'
import { format } from '../hooks/String';
import { format } from '../uilts/String';
export default {
name: 'SystemManagement',
setup() {

2
04.系统编码/Frontend/src/hooks/Config.ts → 04.系统编码/Frontend/src/uilts/Config.ts

@ -1,5 +1,5 @@
import { Moment } from "moment";
import { format } from "./String";
import { format } from "../uilts/String";
export class Config {
public static parentUrl: string = "http://112.124.40.88:8890/product/picture";

0
04.系统编码/Frontend/src/hooks/String.ts → 04.系统编码/Frontend/src/uilts/String.ts

2
04.系统编码/Frontend/src/uilts/axios.ts

@ -5,7 +5,7 @@ import { ElLoading } from 'element-plus'
let loading = null;
const service = axios.create({
baseURL:"http://localhost:8001",
baseURL:"http://112.124.40.88:8002",
timeout: 500000
})

Loading…
Cancel
Save