Commit 5f30d012 authored by qipeng's avatar qipeng

发票样式

parent db37a5a9
...@@ -8,7 +8,8 @@ ...@@ -8,7 +8,8 @@
<view class="application-listIn"> <view class="application-listIn">
<view class="listIn-name">开票状态</view> <view class="listIn-name">开票状态</view>
<view class="listIn-inputBox"> <view class="listIn-inputBox">
<view class="inputBox-text inputBox-textOrange">开票中</view> <view v-if="invoiceStatus==0" class="inputBox-text inputBox-textOrange">开票中</view>
<view v-else class="inputBox-text inputBox-textGreen">已开票</view>
</view> </view>
</view> </view>
<view class="application-listIn"> <view class="application-listIn">
...@@ -57,6 +58,7 @@ ...@@ -57,6 +58,7 @@
<view class="listIn-name">电子邮箱</view> <view class="listIn-name">电子邮箱</view>
<view class="listIn-inputBox"> <view class="listIn-inputBox">
<view class="inputBox-text">1260707304@qq.com</view> <view class="inputBox-text">1260707304@qq.com</view>
<view class="inputBox-toEm" v-if="invoiceStatus==1">已发送</view>
</view> </view>
</view> </view>
</view> </view>
...@@ -74,7 +76,11 @@ ...@@ -74,7 +76,11 @@
</view> </view>
<!--底部提交按钮--> <!--底部提交按钮-->
<view class="application-btnCase"> <view class="application-btnCase">
<view class="btnCase-btn">催一催</view> <view class="btnCase-btn" v-if="invoiceStatus==0">催一催</view>
<view class="btnCase-btnList" v-else>
<view class="btnList-style">发票下载</view>
<view class="btnList-style btnList-styleOrange">申请重开发票</view>
</view>
</view> </view>
</view> </view>
</template> </template>
...@@ -83,7 +89,7 @@ ...@@ -83,7 +89,7 @@
export default { export default {
data() { data() {
return { return {
invoiceStatus:1,
} }
}, },
onLoad(option) { onLoad(option) {
...@@ -140,6 +146,15 @@ export default { ...@@ -140,6 +146,15 @@ export default {
.inputBox-textOrange{ .inputBox-textOrange{
color: #FE6600; color: #FE6600;
} }
.inputBox-textGreen{
color: #00B42B;
}
.inputBox-toEm{
font-weight: 400;
font-size: 28rpx;
color: #165DFF;
line-height: 100rpx;
}
} }
} }
.application-listIn:nth-last-child(1){ .application-listIn:nth-last-child(1){
...@@ -179,5 +194,27 @@ export default { ...@@ -179,5 +194,27 @@ export default {
text-align: center; text-align: center;
margin: 0 auto; margin: 0 auto;
} }
.btnCase-btnList{
display: flex;
justify-content: space-between;
padding: 0 24rpx;
.btnList-style{
width: 340rpx;
height: 88rpx;
background: #FFFFFF;
border-radius: 50rpx;
border: 2rpx solid rgba(0,0,0,0.15);
font-weight: 400;
font-size: 32rpx;
color: #333333;
line-height: 86rpx;
text-align: center;
}
.btnList-styleOrange{
background: #FE6600;
border: 2rpx solid #FE6600;
color: #FFFFFF;
}
}
} }
</style> </style>
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