You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
lxwx_front/pages/my/feedBack.vue

77 lines
1.2 KiB

<template>
<view class="editInfo">
<view class="status_bar"><!-- 这里是状态栏 --></view>
<u-navbar @leftClick="leftClick" height="50" :autoBack="true">
<view
class="u-nav-slot"
slot="left"
>
<u-icon
name="arrow-left"
size="19"
></u-icon>
<view class="title">
关于我们
</view>
</view>
</u-navbar>
<view class="editInfoContent">
<u--textarea v-model="value2"
placeholder="请在这里输入"
height="240"
border="none"
count
maxlength="200"></u--textarea>
</view>
<view class="submitBtn">
提交
</view>
</view>
</template>
<script>
export default{
data(){
return{
value2:"",
}
},
methods:{
leftClick(){
}
}
}
</script>
<style lang="scss" scoped>
.u-nav-slot{
display: flex;
align-items: center;
.title{
font-size: 36upx;
color: #222222;
}
}
.editInfoContent{
margin:0 24upx;
margin-top:60px;
background: #FFFFFF;
border-radius: 20upx;
// padding: 0 30upx;
/deep/.u-textarea--radius{
border-radius: 20upx;
}
}
.submitBtn{
width:64%;
margin:80upx auto;
background: #0076F6;
border-radius: 60upx;
font-size: 30upx;
font-weight: 400;
color: #FFFFFF;
text-align: center;
padding:30upx 0;
}
</style>