37 lines
808 B
Vue
37 lines
808 B
Vue
<template>
|
|
|
|
</template>
|
|
|
|
<script setup>
|
|
import { onLaunch } from '@dcloudio/uni-app'
|
|
//小程序加载的时候调用该方法
|
|
</script>
|
|
|
|
<style>
|
|
/*每个页面公共css */
|
|
/* //设置圆角 */
|
|
checkbox.round .wx-checkbox-input,
|
|
checkbox.round .uni-checkbox-input {
|
|
border-radius: 100upx;
|
|
border: 1px solid #ec6330;
|
|
}
|
|
|
|
/* //设置背景色 */
|
|
checkbox.red[checked] .wx-checkbox-input,
|
|
checkbox.red.checked .uni-checkbox-input {
|
|
background-color: #E79EA1 !important;
|
|
border-color: #ebebeb !important;
|
|
color: #ffffff !important;
|
|
}
|
|
|
|
/* //元素使用的时候就是使用 round 和 red */
|
|
|
|
@font-face {
|
|
font-family: 'FangZhengFonts';
|
|
src: url('https://carboner.cn:8888/api/file/download/FangZhengFonts.ttf') format('truetype');
|
|
}
|
|
|
|
view {
|
|
font-family: 'FangZhengFonts';
|
|
}
|
|
</style> |