|
@@ -4,11 +4,32 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
+<script>
|
|
|
+ export default {
|
|
|
+ name: 'Home',
|
|
|
+ mounted() {
|
|
|
+ mui('body').on('tap', '.kfz', function() {
|
|
|
+ mui.toast('开发中');
|
|
|
+ });
|
|
|
+ mui('body').on('tap', '.jump', function() {
|
|
|
+ document.location.href = this.href;
|
|
|
+ });
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
<style lang="scss">
|
|
|
#app {
|
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
}
|
|
|
-</style>
|
|
|
|
|
|
+ .kfz,
|
|
|
+ .kfz a,
|
|
|
+ .kfz span,
|
|
|
+ .kfz p,
|
|
|
+ .kfz div {
|
|
|
+ color: #ddd !important;
|
|
|
+ }
|
|
|
+</style>
|