25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <template>
- <view class="box">
- <view class="conmsg">
- <view class="conmsg-lab">
- <view class="conmsg-lab-1">
- 客户信息
- </view>
- <view class="conmsg-lab-2">
- 李先生/12385945986
- </view>
- </view>
- <view class="conmsg-lab" style="border: none;">
- <view class="conmsg-lab-1">
- 提醒时间
- </view>
- <view class="conmsg-lab-3">
- 请选择提醒时间(必填)
- </view>
- <view class="conmsg-lab-4">
- <image class="screen-sel-img" src="../../../static/images/right.png" mode=""></image>
- </view>
- </view>
- </view>
- <view class="conent">
- <u-input v-model="value" type="textarea" height="148" :auto-height="true" />
- </view>
- </view>
- </template>
-
- <script>
- export default{
- data(){
- return{
-
- }
- },
- methods:{
-
- }
- }
- </script>
-
- <style lang="scss" scoped>
- .box {
- width: 100%;
- height: 100%;
- background: #F8F8F8;
- }
- .conmsg{
- border-top: 1px solid #E0E0E0;
- padding: 0 30rpx;
- background: #fff;
- height: 208rpx;
- .conmsg-lab{
- display: flex;
- border-bottom: 1px solid #E0E0E0;
- height: 102rpx;
- font-size: 30rpx;
- font-weight: 400;
- line-height: 102rpx;
- color: #333333;
- .conmsg-lab-1{
- margin-right: 60rpx;
- }
- .conmsg-lab-3{
- color: #B2B2B2;
- }
- .conmsg-lab-4{
- width: 14rpx;
- height: 30rpx;
- margin-top: 6rpx;
- margin-left: auto;
- image{
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- .conent{
- margin-top: 20rpx;
- min-height: 208rpx;
- background: #FFFFFF;
- box-sizing: border-box;
- padding: 30rpx;
- margin-bottom: 20rpx;
- }
- </style>
|