update:更新适老化

This commit is contained in:
2021-10-14 16:22:21 +08:00
parent 30892a757e
commit bee04f2c04
14 changed files with 652 additions and 153 deletions

View File

@@ -8,15 +8,24 @@
</template>
<script>
import { mgop } from "@aligov/jssdk-mgop";
import { projectSelectChangeStyle } from "@/olderMode/1.js";
import $ from "jquery";
export default {
data() {
return {
info: {}
info: {
title: "无数据",
publicTime: "2020-1-1"
}
};
},
created() {
projectSelectChangeStyle();
this.onInit();
},
mounted() {
$(".container").addClass("old_container");
},
methods: {
// 获取数据
onInit() {
@@ -94,4 +103,10 @@ export default {
font-size: 16px;
}
}
.old_container {
.title,
.date {
font-size: 22px;
}
}
</style>