| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <template>
- <view class="page">
- <u-sticky zIndex="999" customNavHeight="0">
- <uni-NavBar headerTitle="提交核保" background="#fff" :isSlot="false" :rightSlot="false" :rightIcon="false">
- </uni-NavBar>
- <!-- 状态信息 -->
- <view class="status-card dis f-c a-c">
- <image src="/static/icon/quote/manualUnderwritingPageIcon.png" class="icon" mode="">
- </image>
- <text class="status-title">核保中</text>
- <text class="content">订单核保中,核保时间可能较长,请耐心等待</text>
- </view>
- </u-sticky>
- <!-- 内容区 -->
- <view class="body">
- <view class="carInfo">
- <view class="item dis a-c j-s " v-if="Info.carInfoVo">
- <text>车牌号</text>
- <text>{{Info.carInfoVo.licenseNo}}</text>
- </view>
- <view class="item dis a-c j-s " v-if="Info.policyHolderInfo">
- <text>投保人</text>
- <text>{{Info.policyHolderInfo.name}}</text>
- </view>
- <view class="item dis a-c j-s " v-if="Info.insCompanyVo">
- <text>保险公司</text>
- <text>{{Info.insCompanyVo[0].nameSimple}}</text>
- </view>
- <view class="item dis a-c j-s " v-if="Info.costs">
- <text>保费</text>
- <text>{{Info.costs.sumPremium}}</text>
- </view>
- <view class="item dis a-c j-s">
- <text>优惠金额</text>
- <text>无</text>
- </view>
- </view>
- </view>
- <view class="footer dis ">
- <view class="btn dis a-c j-c mr-3" @click="home">
- 返回首页
- </view>
- <view class="btn dis a-c j-c" @click="orderQuery">
- 查看订单
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- Info: {},
- }
- },
- onShow() {
- },
- onLoad(options) {
- if (options) {
- this.Info = JSON.parse(options.Info);
- }
- },
- methods: {
- orderQuery() {
- uni.reLaunch({
- url: '/pages/quote/quoteDetail?ordersNo=' + this.Info.order.ordersNo,
- })
- },
- home() {
- uni.switchTab({
- url: '/pages/index/index'
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- page {
- background-color: #f8f8f8;
- }
- .page {
- background-color: #f8f8f8;
- }
- .status-card {
- padding: 50rpx 10rpx;
- box-sizing: border-box;
- background-color: #fff;
- .icon {
- width: 90rpx;
- height: 90rpx;
- .dian {
- width: 40rpx;
- height: 10rpx;
- }
- }
- .status-title {
- font-size: 36rpx;
- color: #1F1F1F;
- font-weight: bold;
- margin-top: 30rpx;
- margin-bottom: 20rpx;
- }
- .content {
- font-size: 30rpx;
- color: #666;
- }
- }
- .body {
- padding: 20rpx 30rpx;
- box-sizing: border-box;
- .carInfo {
- padding: 0 20rpx;
- box-sizing: border-box;
- background: #FFFFFF;
- border-radius: 20rpx 20rpx 20rpx 20rpx;
- .item {
- padding: 15rpx 0;
- box-sizing: border-box;
- text:first-child {
- font-size: 30rpx;
- color: #666;
- }
- text:last-child {
- font-size: 30rpx;
- color: #333;
- font-weight: bold;
- }
- }
- }
- }
- //底部样式
- .footer {
- position: fixed;
- bottom: 0;
- left: 0;
- right: 0;
- padding: 25rpx 30rpx 55rpx;
- box-sizing: border-box;
- background: linear-gradient(0deg, #FFFFFF 0%, rgba(255, 254, 245, 0.7) 100%);
- border-radius: 0rpx 0rpx 0rpx 0rpx;
- backdrop-filter: blur(12rpx);
- .btn {
- width: 50%;
- padding: 18rpx 20rpx;
- box-sizing: border-box;
- background: rgba(253, 233, 53, 0.15);
- border-radius: 58rpx 58rpx 58rpx 58rpx;
- border: 1rpx solid #FDE935;
- font-size: 36rpx;
- color: #1F1F1F;
- }
- }
- </style>
|