样式优化

This commit is contained in:
donqi 2023-02-20 23:18:47 +08:00
parent e63fb7a264
commit 97587d9857
1 changed files with 12 additions and 7 deletions

View File

@ -26,15 +26,15 @@
<view class="cuIcon-phone"></view>
</view>
</view>
<view class="solid-top margin-top-sm flex justify-between align-center padding-top">
<view class="flex flex-twice">
<text class="margin-right-xs">审批意见</text>
<input class="radius-input" @input="inputRemark($event, member)"></input>
<view class="solid-top margin-top-sm padding-top">
<text class="margin-right-xs">审批意见</text>
<view class="flex">
<textarea class="radius-input remark-textarea margin-tb" @input="inputRemark($event, member)"></textarea>
</view>
<view class="flex flex-sub justify-end">
<view class="cu-btn bg-main-color sm radius" @click="approvingMember(index, member, '同意')">同意</view>
<view class="cu-btn sm radius margin-left-xs" @click="approvingMember(index, member, '不同意')">不同意</view>
<view class="flex justify-end">
<view class="cu-btn bg-main-color radius" @click="approvingMember(index, member, '同意')">同意</view>
<view class="cu-btn radius margin-left-xs" @click="approvingMember(index, member, '不同意')">不同意</view>
</view>
</view>
</view>
@ -113,5 +113,10 @@
.cu-list+.cu-list {
margin-top: unset;
}
.remark-textarea {
height: 150rpx;
width: 100%;
}
</style>