|
@@ -2,16 +2,16 @@
|
|
|
<el-config-provider :locale="locale">
|
|
|
<router-view v-slot="{ Component }">
|
|
|
<keep-alive>
|
|
|
- <component :is="Component"/>
|
|
|
+ <component :is="Component" />
|
|
|
</keep-alive>
|
|
|
</router-view>
|
|
|
</el-config-provider>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import {defineComponent} from 'vue'
|
|
|
+import { defineComponent } from 'vue'
|
|
|
import locale from 'element-plus/lib/locale/lang/zh-cn'
|
|
|
-import {useStore} from 'vuex'
|
|
|
+import { useStore } from 'vuex'
|
|
|
|
|
|
export default defineComponent({
|
|
|
name: 'App',
|
|
@@ -38,7 +38,7 @@ export default defineComponent({
|
|
|
function getWindowSize() {
|
|
|
const w = window.innerWidth
|
|
|
const h = window.innerHeight - 96
|
|
|
- return {w, h}
|
|
|
+ return { w, h }
|
|
|
}
|
|
|
</script>
|
|
|
|
|
@@ -189,13 +189,13 @@ function getWindowSize() {
|
|
|
|
|
|
table th.star div::before {
|
|
|
content: '*';
|
|
|
- color: #F56C6CFF;
|
|
|
+ color: #f56c6cff;
|
|
|
margin-right: 4px;
|
|
|
}
|
|
|
|
|
|
.bi_tian .el-form-item__label::before {
|
|
|
content: '*';
|
|
|
- color: #F56C6CFF;
|
|
|
+ color: #f56c6cff;
|
|
|
margin-right: 4px;
|
|
|
}
|
|
|
</style>
|