| | |
| | | <image v-if="info.status === 3 || info.status === 4" src="@/static/icon/progress_shenqingtuihui@2x.png" mode="widthFix"></image> |
| | | <image v-if="info.status === 5 || info.status === 8" src="@/static/icon/progress_yituihui@2x.png" mode="widthFix"></image> |
| | | <image v-if="info.status === 6" src="@/static/icon/progress_yiguanbi@2x.png" mode="widthFix"></image> |
| | | <image v-if="info.status === 7" src="@/static/icon/progress_daichudan@2x.png" mode="widthFix"></image> |
| | | </view> |
| | | </template> |
| | | <view class="box_info_center"> |
| | |
| | | <template v-if="info && info.solutionType === 0"> |
| | | <!-- 已生效 --> |
| | | <view class="details_footer" v-if="info.status === 2"> |
| | | <u-button type="primary" shape="circle" color="#437CB3" text="查看申请单" @click="seePdf(info.applyFile.fileurlFull)"></u-button> |
| | | <u-button type="primary" shape="circle" color="#437CB3" text="查看申请单" @click="seePdf(info.applyUnitFile.fileurlFull)"></u-button> |
| | | <view style="width: 44rpx; height: 50rpx;"></view> |
| | | <u-button type="primary" shape="circle" color="#437CB3" text="查看批单" @click="seePdf(info.pidanFile.fileurlFull)"></u-button> |
| | | </view> |
| | |
| | | <view class="details_footer" v-if="info.status === 1"> |
| | | <u-button type="primary" shape="circle" color="#437CB3" @click="show = true" :plain="true" text="申请退回"></u-button> |
| | | <view style="width: 44rpx; height: 50rpx;"></view> |
| | | <u-button type="primary" shape="circle" color="#437CB3" text="查看申请单" @click="seePdf(info.applyFile.fileurlFull)"></u-button> |
| | | <u-button type="primary" shape="circle" color="#437CB3" text="查看申请单" @click="seePdf(info.applyUnitFile.fileurlFull)"></u-button> |
| | | </view> |
| | | <!-- 待签署 --> |
| | | <view class="details_footer" v-if="info.status === 0"> |
| | |
| | | </template> |
| | | <!-- 委托 --> |
| | | <template v-if="info && info.solutionType === 1"> |
| | | <!-- 已生效 --> |
| | | <view class="details_footer" v-if="info.status === 2"> |
| | | <u-button type="primary" shape="circle" color="#437CB3" text="查看申请单" @click="seePdf(info.applyUnitFile.fileurlFull)"></u-button> |
| | | <view style="width: 44rpx; height: 50rpx;"></view> |
| | | <u-button type="primary" shape="circle" color="#437CB3" text="查看批单" @click="seePdf(info.pidanFile.fileurlFull)"></u-button> |
| | | </view> |
| | | <!-- 待审核/待出单/投保中 --> |
| | | <view class="details_footer" v-if="info.status === 1 || info.status === 9 || info.status === 7"> |
| | | <u-button type="primary" shape="circle" color="#437CB3" text="查看申请单" @click="seePdf(info.applyFile.fileurlFull)"></u-button> |
| | | <u-button type="primary" shape="circle" color="#437CB3" text="查看申请单" @click="seePdf(info.applyUnitFile.fileurlFull)"></u-button> |
| | | </view> |
| | | <!-- 已退回 --> |
| | | <view class="details_footer" v-if="info.status === 5"> |
| | |
| | | </template> |
| | | |
| | | <script> |
| | | import { mapState } from 'vuex' |
| | | export default { |
| | | data() { |
| | | return { |
| | |
| | | onReachBottom() { |
| | | this.getList() |
| | | }, |
| | | computed: { |
| | | ...mapState(['userInfo']) |
| | | }, |
| | | methods: { |
| | | send () { |
| | | this.$u.api.sendSms({ |
| | | phone: this.userInfo.mobile |
| | | }).then(res => { |
| | | if (res.code === 200) { |
| | | this.num = 60 |
| | | this.setTime() |
| | | } |
| | | }) |
| | | }, |
| | | setTime () { |
| | | this.timer = setInterval(() => { |
| | | if (this.num === 0) { |
| | | clearInterval(this.timer) |
| | | this.timer = null |
| | | return |
| | | } |
| | | this.num = this.num - 1 |
| | | }, 1000) |
| | | }, |
| | | // 签署 |
| | | confirm1() { |
| | | if (!this.code) { |
| | |
| | | returnStyle(type) { |
| | | if ([2].includes(type)) { |
| | | return 'linear-gradient(#97DDC5 0%, #F7F7F7 100%);' |
| | | } else if ([1,0].includes(type)) { |
| | | } else if ([1,0,7].includes(type)) { |
| | | return 'linear-gradient( 180deg, #FBC88C 0%, #F7F7F7 100%);' |
| | | } else if ([3,4,5,8,6].includes(type)) { |
| | | return '' |
| | |
| | | returnStyle1(type) { |
| | | if ([2].includes(type)) { |
| | | return 'linear-gradient( 180deg, #E5F7F1 0%, rgba(255,255,255,0) 100%)' |
| | | } else if ([1,0].includes(type)) { |
| | | } else if ([1,0,7].includes(type)) { |
| | | return 'linear-gradient( 180deg, #FFF2E3 0%, rgba(255,255,255,0) 100%);' |
| | | } else if ([3,4,5,8,6].includes(type)) { |
| | | return '#ffffff' |
| | |
| | | position: fixed; |
| | | bottom: 0; |
| | | left: 0; |
| | | padding: 10rpx 30rpx; |
| | | padding: 10rpx 30rpx calc(env(safe-area-inset-bottom) + 10rpx) 30rpx; |
| | | box-sizing: border-box; |
| | | background-color: #ffffff; |
| | | display: flex; |
| | | align-items: center; |
| | | padding-bottom: env(safe-area-inset-bottom); |
| | | } |
| | | .code { |
| | | width: 100%; |