You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

78 lines
1012 B
Vue

<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
export default {
name: 'App',
provide() {
return {
reload: this.reload
}
},
data() {
return {
isAlive: true
}
},
methods: {
reload() {
this.isAlive = false;
this.$nextTick(function () {
this.isAlive = true
})
}
}
}
</script>
<style>
.ks-page{
margin: 20px 50px 0 0;
text-align: right;
}
.search-span {
font-size: 16px;
line-height: 32px;
margin-left: 10px;
margin-right: 10px;
}
.search-row{
background-color: #F7F8FA;
line-height: 80px;
margin-top: 20px;
width: 100%;
}
.search-col {
text-align: left;
padding-left: 10px;
}
.date-picker {
width: 240px !important;
}
.search-select {
width: 200px !important;
}
.search-btn {
margin-left: 20px;
}
.search-div-btn {
text-align: right;
padding-right: 20px;
float: right;
}
.table-margin-top {
margin-top: 20px;
}
</style>