Commit c3d5f62e by kyle

样式修改

parent 76b016d6
......@@ -24,7 +24,7 @@
<style>
.supportDeclarationContainer{
padding-bottom: 60px;
padding-bottom: 160rpx;
text-align: center;
color: #ccc;
display: flex;
......
......@@ -16,8 +16,10 @@
<input class="uni-input" type="{{item.type}}" v-model="item.value" placeholder="请输入" :disabled="isReadonly"/>
<span>{{item.unit}}</span>
</div>
<div v-else-if="item.type==='select'" style="width:30%">
<uni-data-select v-model="item.value" :localdata="repaymentMethodLists"></uni-data-select>
<div v-else-if="item.type==='select'" style="width:55%">
<view class="btn_wrapper">
<button class="min-btn" @click="slectedMethod1=listItem.value;item.value=listItem.value" :class="{actived:slectedMethod1 == listItem.value}" type="default" plain="true" v-for="listItem of repaymentMethodLists">{{listItem.text}}</button>
</view>
</div>
</li>
</ul>
......@@ -56,6 +58,7 @@
data(){
return{
slectedMethod:1,
slectedMethod1:1,
accumulationFundParams:[
{id:'00',text:'公积金贷款余额',value:null,type:'digit',unit:'元',alias:'oldHouseLoanBalance'},
{id:'01',text:'公积金还款方式',value:null,type:'select',unit:'',alias:'oldCalcuteType'},
......@@ -336,15 +339,15 @@
&.actived{
color: #6B4000;
}
&.actived::after{
&.actived::before{
display: block;
content: "";
position: absolute;
left: 80%;
top: 20%;
right: 0;
bottom: 0;
width: 0;
height: 0;
border: 40rpx solid #fed9a1;
border: 18rpx solid #fed9a1;
border-top-color: transparent;
border-left-color: transparent;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment