|
@@ -1,75 +1,70 @@
|
|
|
<template>
|
|
|
- <view style="width: 100%; height: 100vh; background: rgb(247, 248, 255)">
|
|
|
- <zj-page-container>
|
|
|
- <view class="toubuyangs">
|
|
|
- <view class="toubuyangsTab">
|
|
|
- <view class="toubuyangsTabItem" @click="tabQiehuan('AC')">
|
|
|
- <view>意外险</view>
|
|
|
- <view :class="{ hengxian: true, xuanzhong: tab == 'AC' }"> </view>
|
|
|
+ <zj-page-layout
|
|
|
+ :isScroll="true"
|
|
|
+ :refresherTriggered="refresherTriggered"
|
|
|
+ @refresherrefresh="refresherrefresh"
|
|
|
+ :hasFooter="true"
|
|
|
+ >
|
|
|
+ <view class="toubuyangs" slot="header">
|
|
|
+ <view class="toubuyangsTab">
|
|
|
+ <view class="toubuyangsTabItem" @click="tabQiehuan('AC')">
|
|
|
+ <view>意外险</view>
|
|
|
+ <view :class="{ hengxian: true, xuanzhong: tab == 'AC' }"> </view>
|
|
|
+ </view>
|
|
|
+ <view class="toubuyangsTabItem" @click="tabQiehuan('DS')">
|
|
|
+ <view>第三者责任险</view>
|
|
|
+ <view :class="{ hengxian: true, xuanzhong: tab == 'DS' }"></view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="myInsurance">
|
|
|
+ <view class="myInsuranceCart" v-for="(item, index) in list" :key="index" @click="gopage(item)">
|
|
|
+ <view class="myInsuranceCartbuju xiangxia">
|
|
|
+ <view class="">
|
|
|
+ {{ item.policyName }}
|
|
|
</view>
|
|
|
- <view class="toubuyangsTabItem" @click="tabQiehuan('DS')">
|
|
|
- <view>第三者责任险</view>
|
|
|
- <view :class="{ hengxian: true, xuanzhong: tab == 'DS' }"></view>
|
|
|
+ <view class="" style="color: red">
|
|
|
+ {{ { BZZ: '保障中', YSX: '失效', DSX: '待生效' }[item.policyOrderStatus] }}
|
|
|
</view>
|
|
|
</view>
|
|
|
- </view>
|
|
|
- <zj-page-fill>
|
|
|
- <zj-page-layout
|
|
|
- :isScroll="true"
|
|
|
- :refresherTriggered="refresherTriggered"
|
|
|
- @refresherrefresh="refresherrefresh"
|
|
|
- :hasFooter="true"
|
|
|
- >
|
|
|
- <view class="myInsurance">
|
|
|
- <view class="myInsuranceCart" v-for="(item, index) in list" :key="index" @click="gopage(item)">
|
|
|
- <view class="myInsuranceCartbuju xiangxia">
|
|
|
- <view class="">
|
|
|
- {{ item.policyName }}
|
|
|
- </view>
|
|
|
- <view class="" style="color: red">
|
|
|
- {{ { BZZ: '保障中', YSX: '失效', DSX: '待生效' }[item.policyOrderStatus] }}
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="">
|
|
|
- <view class="xiangxia"> 所属网点:{{ item.websitName }} </view>
|
|
|
- <view class="xiangxia">
|
|
|
- 保单类型:{{ { AC: '意外险', EM: '雇主险', IN: '工伤险', DS: '第三者责任险' }[item.type] }}
|
|
|
- </view>
|
|
|
- <view class="xiangxia"> 保单编号:{{ item.policyNumber }} </view>
|
|
|
- <view class="xiangxia"> 保单金额:{{ item.payAmount }} </view>
|
|
|
- <view class="xiangxia" v-if="item.startTime && item.endTime">
|
|
|
- 有效时间:{{ item.startTime ? item.startTime.split(' ')[0] : '' }}~{{
|
|
|
- item.endTime ? item.endTime.split(' ')[0] : ''
|
|
|
- }}
|
|
|
- </view>
|
|
|
- <view class="xiangxia" v-else> 有效时间: </view>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
+ <view class="">
|
|
|
+ <view class="xiangxia"> 所属网点:{{ item.websitName }} </view>
|
|
|
+ <view class="xiangxia">
|
|
|
+ 保单类型:{{ { AC: '意外险', EM: '雇主险', IN: '工伤险', DS: '第三者责任险' }[item.type] }}
|
|
|
+ </view>
|
|
|
+ <view class="xiangxia"> 保单编号:{{ item.policyNumber }} </view>
|
|
|
+ <view class="xiangxia"> 保单金额:{{ item.payAmount }} </view>
|
|
|
+ <view class="xiangxia" v-if="item.startTime && item.endTime">
|
|
|
+ 有效时间:{{ item.startTime ? item.startTime.split(' ')[0] : '' }}~{{
|
|
|
+ item.endTime ? item.endTime.split(' ')[0] : ''
|
|
|
+ }}
|
|
|
</view>
|
|
|
- <Loading :loadStatus="loadStatus" :dataList="list" />
|
|
|
- <zjDialogPicker
|
|
|
- ref="websitDialog"
|
|
|
- :isShow="isShowWebsitDialog"
|
|
|
- :multiple="false"
|
|
|
- :styleType="2"
|
|
|
- :title="'选择对应网点购买保险'"
|
|
|
- :list="baoxiandangqianxianxitishi"
|
|
|
- :keyName="'name'"
|
|
|
- @cancel="isShowWebsitDialog = false"
|
|
|
- @confirm="confirmWebsitDialog"
|
|
|
- >
|
|
|
- </zjDialogPicker>
|
|
|
- </zj-page-layout>
|
|
|
- </zj-page-fill>
|
|
|
- <view
|
|
|
- v-if="!!baoxiandangqianxianxitishi.length"
|
|
|
- class="bottom-container"
|
|
|
- style="box-sizing: border-box; padding: 20rpx"
|
|
|
- >
|
|
|
- <u-button text="去购买" shape="circle" type="primary" @click="qugoumai"> </u-button>
|
|
|
+ <view class="xiangxia" v-else> 有效时间: </view>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
- </zj-page-container>
|
|
|
- </view>
|
|
|
+ </view>
|
|
|
+ <Loading :loadStatus="loadStatus" :dataList="list" />
|
|
|
+ <zjDialogPicker
|
|
|
+ ref="websitDialog"
|
|
|
+ :isShow="isShowWebsitDialog"
|
|
|
+ :multiple="false"
|
|
|
+ :styleType="2"
|
|
|
+ :title="'选择对应网点购买保险'"
|
|
|
+ :list="baoxiandangqianxianxitishi"
|
|
|
+ :keyName="'name'"
|
|
|
+ @cancel="isShowWebsitDialog = false"
|
|
|
+ @confirm="confirmWebsitDialog"
|
|
|
+ >
|
|
|
+ </zjDialogPicker>
|
|
|
+ <view
|
|
|
+ slot="footer"
|
|
|
+ v-if="!!baoxiandangqianxianxitishi.length"
|
|
|
+ class="bottom-container"
|
|
|
+ style="box-sizing: border-box; padding: 20rpx"
|
|
|
+ >
|
|
|
+ <u-button text="去购买" shape="circle" type="primary" @click="qugoumai"> </u-button>
|
|
|
+ </view>
|
|
|
+ </zj-page-layout>
|
|
|
</template>
|
|
|
<script>
|
|
|
import zjDialogPicker from '@/components/zj-dialog/zj-dialog-picker.vue'
|