| | |
| | | <span v-if="model.status === 1">保单状态:已签章</span> |
| | | <span v-if="model.status === 2">保单状态:已上传批单</span> |
| | | <span v-if="model.status === 3 || model.status === 4">保单状态:退回申请</span> |
| | | <span v-if="model.status ===5 || model.status === 8">保单状态:已退回</span> |
| | | <span v-if="model.status === 5 || model.status === 8">保单状态:已退回</span> |
| | | <span v-if="model.status ===7">保单状态:已关闭</span> |
| | | <span>提交时间:{{ model.createDate }}</span> |
| | | </div> |
| | | <div class="desc_item_label_right"> |
| | | <template v-if="userInfo.type === 1"> |
| | | <el-button type="primary" @click="$refs.ApplyChangeDetails.open('加减保详单',apply,model)">导出详单</el-button> |
| | | <el-button v-if="model.status == 4" type="primary" @click="$refs.OperaInsuranceApply.open('投保申请', {id: dataId})">再次投保</el-button> |
| | | <el-button type="primary" v-if="model.status == 0" @click="goSign">签署申请单</el-button> |
| | | <el-button v-if="[2, 3, 5, 7, 8].includes(model.status)" type="primary" @click="viewToubaodan">申请退回</el-button> |
| | | <el-button v-if="[5, 8].includes(model.status)" type="primary" @click="$refs.additionSubtractionApplication.open('加减保申请', {id: dataId})">再次投保</el-button> |
| | | <el-button type="primary" v-if="model.status == 0" @click="goSign">签署申请单</el-button> |
| | | <el-button v-if="[2, 3, 7].includes(model.status)" type="primary">申请退回</el-button> |
| | | <el-button v-if="model.status == 5" type="primary" @click="viewApplyFile">查看申请单</el-button> |
| | | <el-button v-if="model.status == 5" type="primary" @click="viewPidan">查看批单</el-button> |
| | | <el-button v-if="model.status == 2" type="primary" @click="closeApply">关闭订单</el-button> |
| | | <el-button v-if="[5, 8].includes(model.status)" type="primary" @click="closeOrder">关闭订单</el-button> |
| | | </template> |
| | | <template v-else> |
| | | <el-button type="primary" @click="$refs.ApplyChangeDetails.open('加减保详单',apply,model)">导出详单</el-button> |
| | |
| | | applyChagneDetailPage, |
| | | getJiajianBaoSignLink |
| | | } from '@/api/business/insuranceApply' |
| | | import { applyChangeOpt } from '@/api/business/applyChange' |
| | | import OperaInsuranceApply from '@/components/enterprise/OperaInsuranceApplyWindow' |
| | | import { mapState } from 'vuex' |
| | | |
| | |
| | | resetting() { |
| | | this.search() |
| | | }, |
| | | closeOrder() { |
| | | this.$confirm('确认关闭次保单吗?', '提示', { |
| | | confirmButtonText: '确定', |
| | | cancelButtonText: '取消', |
| | | type: 'warning' |
| | | }).then(() => { |
| | | applyChangeOpt({ |
| | | optType: 6, |
| | | applyId: this.model.id |
| | | }).then(res => { |
| | | this.getDetail() |
| | | }).catch(e => { |
| | | this.$message.error(e) |
| | | }) |
| | | }).catch(() => { |
| | | |
| | | }); |
| | | }, |
| | | search() { |
| | | this.currentPage = 1 |
| | | this.getList() |