加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
App.vue 1.34 KB
一键复制 编辑 原始数据 按行查看 历史
boyce 提交于 2021-06-09 10:26 . 修改了rouyer
<script>
export default {
onLaunch: function() {
},
onShow: function() {
},
onHide: function() {
},
methods:{
}
};
</script>
<style>
/*每个页面公共css */
@import './common/css/main.css';
@import './common/css/uni.css';
@import './common/css/icon.css';
page {
background: #f7f6fb;
}
.content {
display: flex;
flex: 1;
flex-direction: column;
padding: 20upx;
}
.input-group {
background-color: #ffffff;
margin-top: 40upx;
position: relative;
}
.input-group::before {
position: absolute;
right: 0;
top: 0;
left: 0;
height: 1upx;
content: '';
-webkit-transform: scaleY(0.5);
transform: scaleY(0.5);
background-color: #c8c7cc;
}
.input-group::after {
position: absolute;
right: 0;
bottom: 0;
left: 0;
height: 1upx;
content: '';
-webkit-transform: scaleY(0.5);
transform: scaleY(0.5);
background-color: #c8c7cc;
}
.input-row {
display: flex;
flex-direction: row;
position: relative;
}
.input-row .title {
width: 20%;
height: 80upx;
min-height: 80upx;
padding: 15upx 0;
padding-left: 30upx;
line-height: 80upx;
}
.input-row.border::after {
position: absolute;
right: 0;
bottom: 0;
left: 15upx;
height: 1upx;
content: '';
-webkit-transform: scaleY(0.5);
transform: scaleY(0.5);
background-color: #c8c7cc;
}
.btn-row {
margin-top: 50upx;
padding: 20upx;
}
button.primary {
background-color: #0faeff;
}
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化