| | |
| | | <el-form-item label="员工姓名" prop="memberName"> |
| | | <el-input v-model="searchForm.memberName" placeholder="请输入" @keypress.enter.native="search"></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="报案单位" prop="companyId"> |
| | | <el-form-item label="身份证" prop="memberIdcardNo"> |
| | | <el-input v-model="searchForm.memberIdcardNo" placeholder="请输入" @keypress.enter.native="search"></el-input> |
| | | </el-form-item> |
| | | <el-form-item label="报案单位" prop="companyId" v-if="userInfo.type === 0"> |
| | | <el-select v-model="searchForm.companyId" placeholder="请选择" @keypress.enter.native="search"> |
| | | <el-option |
| | | v-for="item in companyList" |
| | |
| | | <section> |
| | | <el-button type="primary" @click="search">搜索</el-button> |
| | | <el-button @click="reset">重置</el-button> |
| | | <el-button @click="$refs.operaSettleClaimsWindow.open('报案详情')">详情</el-button> |
| | | </section> |
| | | </el-form> |
| | | <!-- 表格和分页 --> |
| | |
| | | <el-table-column prop="reportNum" label="报案号" min-width="100px"></el-table-column> |
| | | <el-table-column prop="companyName" label="报案企业" min-width="100px"></el-table-column> |
| | | <el-table-column prop="memberName" label="出险人" min-width="100px"></el-table-column> |
| | | <el-table-column prop="memberIdcardNo" label="身份证号" min-width="100px"></el-table-column> |
| | | <el-table-column prop="solutionName" label="保险方案" min-width="100px"></el-table-column> |
| | | <el-table-column prop="duName" label="派遣单位" min-width="100px"></el-table-column> |
| | | <el-table-column prop="worktypeName" label="所属工种" min-width="100px"></el-table-column> |
| | |
| | | import OperaSettleClaimsWindow from '@/components/business/OperaSettleClaimsWindow' |
| | | import {all as solutionAll} from '@/api/business/solutions' |
| | | import {pageAll as companyAll} from '@/api/business/company' |
| | | import { mapState } from 'vuex' |
| | | export default { |
| | | name: 'SettleClaims', |
| | | extends: BaseTable, |
| | |
| | | companyId: '', |
| | | duName: '', |
| | | memberName:'', |
| | | memberIdcardNo:'', |
| | | status: '', |
| | | informantName: '' |
| | | } |
| | | } |
| | | }, |
| | | computed: { |
| | | ...mapState(['userInfo']) |
| | | }, |
| | | created () { |
| | | this.config({ |
| | | module: '理赔申请表', |