소스 검색

init

newStyle
wangxiaohua 4 년 전
부모
커밋
39fcc1767f
2개의 변경된 파일5개의 추가작업 그리고 4개의 파일을 삭제
  1. +1
    -1
      src/page/wel.vue
  2. +4
    -3
      src/views/Equipment/state.vue

+ 1
- 1
src/page/wel.vue 파일 보기

@@ -976,7 +976,7 @@ export default {
}else{
this.$router.push({
path: "/Equipment/state",
query: { flag: 2,electricity:20},
query: { flag: 2,electricity:'20'},
});
}
},


+ 4
- 3
src/views/Equipment/state.vue 파일 보기

@@ -723,11 +723,12 @@ export default {
mounted() {
if(this.$route.query.flag){
if(this.$route.query.flag==1){
this.searchForm.onLine='0'
this.searchForm.onLine='0';
}else{
this.searchForm.onLine='1'
this.searchForm.onLine='1';
this.searchForm.electricity=this.$route.query.electricity
}
this.searchForm.electricity=this.$route.query.electricity
}
// asd
this.getTableList();


불러오는 중...
취소
저장