Commit c3d5f62e by kyle

样式修改

parent 76b016d6
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
<style> <style>
.supportDeclarationContainer{ .supportDeclarationContainer{
padding-bottom: 60px; padding-bottom: 160rpx;
text-align: center; text-align: center;
color: #ccc; color: #ccc;
display: flex; display: flex;
......
...@@ -16,8 +16,10 @@ ...@@ -16,8 +16,10 @@
<input class="uni-input" type="{{item.type}}" v-model="item.value" placeholder="请输入" :disabled="isReadonly"/> <input class="uni-input" type="{{item.type}}" v-model="item.value" placeholder="请输入" :disabled="isReadonly"/>
<span>{{item.unit}}</span> <span>{{item.unit}}</span>
</div> </div>
<div v-else-if="item.type==='select'" style="width:30%"> <div v-else-if="item.type==='select'" style="width:55%">
<uni-data-select v-model="item.value" :localdata="repaymentMethodLists"></uni-data-select> <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> </div>
</li> </li>
</ul> </ul>
...@@ -56,6 +58,7 @@ ...@@ -56,6 +58,7 @@
data(){ data(){
return{ return{
slectedMethod:1, slectedMethod:1,
slectedMethod1:1,
accumulationFundParams:[ accumulationFundParams:[
{id:'00',text:'公积金贷款余额',value:null,type:'digit',unit:'元',alias:'oldHouseLoanBalance'}, {id:'00',text:'公积金贷款余额',value:null,type:'digit',unit:'元',alias:'oldHouseLoanBalance'},
{id:'01',text:'公积金还款方式',value:null,type:'select',unit:'',alias:'oldCalcuteType'}, {id:'01',text:'公积金还款方式',value:null,type:'select',unit:'',alias:'oldCalcuteType'},
...@@ -336,15 +339,15 @@ ...@@ -336,15 +339,15 @@
&.actived{ &.actived{
color: #6B4000; color: #6B4000;
} }
&.actived::after{ &.actived::before{
display: block; display: block;
content: ""; content: "";
position: absolute; position: absolute;
left: 80%; right: 0;
top: 20%; bottom: 0;
width: 0; width: 0;
height: 0; height: 0;
border: 40rpx solid #fed9a1; border: 18rpx solid #fed9a1;
border-top-color: transparent; border-top-color: transparent;
border-left-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