调整前端代码格式符合ESLint规范
This commit is contained in:
+56
-58
@@ -5,65 +5,65 @@
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
import {loading} from "./utils/request";
|
||||
import { loading } from './utils/request'
|
||||
|
||||
export default {
|
||||
name: "ReportManager",
|
||||
data() {
|
||||
return {}
|
||||
},
|
||||
methods: {
|
||||
getQueryVariable(r, variable) {
|
||||
if (r) {
|
||||
var query = r.split('?');
|
||||
if (query && query.length == 2) {
|
||||
var vars = query[1].split("&");
|
||||
for (var i = 0; i < vars.length; i++) {
|
||||
var pair = vars[i].split("=");
|
||||
if (pair[0] == variable) {
|
||||
return pair[1];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
closeLoading() {
|
||||
loading.close();
|
||||
this.$store.commit('saveIsLoading', false);
|
||||
},
|
||||
},
|
||||
created() {
|
||||
let _that = this
|
||||
// var path = window.location.search
|
||||
// var ticket = this.getQueryVariable(path, 'ticket')
|
||||
// var loginType = this.getQueryVariable(path, 'loginType')
|
||||
// if (loginType == 1) {
|
||||
// window.open('http://10.12.1.78:9090/cas/login?service=http://192.168.144.22:9966/home', '_self');
|
||||
// } else {
|
||||
// // if (ticket) {
|
||||
// // var params = {
|
||||
// // service: 'http://localhost:8080/home',
|
||||
// // ticket: ticket
|
||||
// // }
|
||||
// // this.$api.login.loginByTicket(params).then(res => {
|
||||
// // if (res.respCode !== '0') {
|
||||
// // // this.verifyCode();
|
||||
// // return this.$message.error(res.data.message);
|
||||
// // }
|
||||
// // this.$message.success('登录成功');
|
||||
// // _that.$store.commit('saveUserInfo', res.data);
|
||||
// // _that.$router.push('/home');
|
||||
// // }).catch(_ => {
|
||||
// // // this.verifyCode();
|
||||
// // this.$router.push('/');
|
||||
// // })
|
||||
// //
|
||||
// // } else {
|
||||
// // this.$router.push('/');
|
||||
// // }
|
||||
// }
|
||||
export default {
|
||||
name: 'ReportManager',
|
||||
data () {
|
||||
return {}
|
||||
},
|
||||
methods: {
|
||||
getQueryVariable (r, variable) {
|
||||
if (r) {
|
||||
const query = r.split('?')
|
||||
if (query && query.length == 2) {
|
||||
const vars = query[1].split('&')
|
||||
for (let i = 0; i < vars.length; i++) {
|
||||
const pair = vars[i].split('=')
|
||||
if (pair[0] == variable) {
|
||||
return pair[1]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
closeLoading () {
|
||||
loading.close()
|
||||
this.$store.commit('saveIsLoading', false)
|
||||
}
|
||||
},
|
||||
created () {
|
||||
const _that = this
|
||||
// var path = window.location.search
|
||||
// var ticket = this.getQueryVariable(path, 'ticket')
|
||||
// var loginType = this.getQueryVariable(path, 'loginType')
|
||||
// if (loginType == 1) {
|
||||
// window.open('http://10.12.1.78:9090/cas/login?service=http://192.168.144.22:9966/home', '_self');
|
||||
// } else {
|
||||
// // if (ticket) {
|
||||
// // var params = {
|
||||
// // service: 'http://localhost:8080/home',
|
||||
// // ticket: ticket
|
||||
// // }
|
||||
// // this.$api.login.loginByTicket(params).then(res => {
|
||||
// // if (res.respCode !== '0') {
|
||||
// // // this.verifyCode();
|
||||
// // return this.$message.error(res.data.message);
|
||||
// // }
|
||||
// // this.$message.success('登录成功');
|
||||
// // _that.$store.commit('saveUserInfo', res.data);
|
||||
// // _that.$router.push('/home');
|
||||
// // }).catch(_ => {
|
||||
// // // this.verifyCode();
|
||||
// // this.$router.push('/');
|
||||
// // })
|
||||
// //
|
||||
// // } else {
|
||||
// // this.$router.push('/');
|
||||
// // }
|
||||
// }
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
@@ -118,7 +118,6 @@
|
||||
height: 24px !important;
|
||||
}
|
||||
|
||||
|
||||
/* =============================================== 页面加载 =============================================== */
|
||||
.el-loading-mask.is-fullscreen {
|
||||
z-index: 8888 !important;
|
||||
@@ -311,7 +310,6 @@
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* =============================================== search-tag =============================================== */
|
||||
.search-tag {
|
||||
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0) !important;
|
||||
|
||||
Reference in New Issue
Block a user