This commit is contained in:
18500206848
2024-02-02 14:44:30 +08:00
parent 6647042acb
commit 91172a730c
255 changed files with 24805 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<template>
<view class="jl-form-item">
<view class="jl-form-item__label">{{prop}}</view>
<view class="jl-form-item__content">
<slot></slot>
</view>
</view>
</template>
<script>
export default {
props: {
prop: String,
},
};
</script>
<style>
.jl-form-item {
margin-bottom: 30rpx;
}
.jl-form-item__label {
float: left;
font-family: PingFangSC-Regular;
font-size: 32rpx;
color: #333333;
letter-spacing: 0;
line-height: 88rpx;
}
.jl-form-item__content {
position: relative;
}
.jl-form-item__content .jl-input-intext {
padding: 0;
}
</style>