12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <template>
- <view class="disagree-page">
- <scroll-view class="scroll-y" scroll-y="true">
- <view class="textarea-box">
- <view class="label-view">
- <text>原因</text>
- </view>
- <textarea class="textarea"
- placeholder="请输入"
- placeholder-style="color: #B8BECC"
- :maxlength="-1"
- auto-height
- />
- </view>
- </scroll-view>
- <view class="fixed-buttom-btn">
- <text class="btn-text">确定</text>
- </view>
- </view>
- </template>
- <script>
- // 不认可原因
- export default {
- created() {
- uni.setNavigationBarTitle({
- title: '原因'
- });
- }
- }
- </script>
- <style lang="less">
- .disagree-page {
- height: 100%;
- .scroll-y {
- height: calc(100% - 87.5rpx);
- padding-top: 15rpx;
- .textarea-box {
- display: flex;
- width: 100%;
- background-color: #fff;
- padding: 25rpx 0;
- padding-left: 25rpx;
- .label-view {
- width: 175rpx;
- line-height: 37.5rpx;
- >text {
- font-size: 22.5rpx;
- color: #666F80;
- }
- }
- .textarea {
- flex: 1;
- min-height: 768.75rpx;
- padding: 0 25rpx;
- line-height: 37.5rpx;
- font-size: 22.5rpx;
- color: #525866;
- box-sizing: border-box;
- }
- }
- }
- }
- </style>
|