| | |
| | | <div class="info_list_item_label">接收文件邮箱:</div> |
| | | <div class="info_list_item_val">{{form.email}}</div> |
| | | </div> |
| | | <div class="info_list_item"> |
| | | <div class="info_list_item_label">批增生效:</div> |
| | | <div class="info_list_item_val">{{form.addValidDays||0}}天</div> |
| | | </div> |
| | | <div class="info_list_item"> |
| | | <div class="info_list_item_label">批减生效:</div> |
| | | <div class="info_list_item_val">{{form.delValidDays||0}}天</div> |
| | | </div> |
| | | <div class="info_list_item"> |
| | | <div class="info_list_item_label">批改支持:</div> |
| | | <div class="info_list_item_val"> |
| | | <span style="margin-right: 50px">加保 <i :class="form.canAdd ==1?'el-icon-circle-check':'el-icon-circle-close'" :style="form.canAdd ==1?'color:green;font-weight:bold':'color:red;font-weight:bold'"></i></span> |
| | | <span style="margin-right: 50px">减保 <i :class="form.canReduce ==1?'el-icon-circle-check':'el-icon-circle-close'" :style="form.canReduce ==1?'color:green;font-weight:bold':'color:red;font-weight:bold'"></i></span> |
| | | <span>更换派遣单位 <i :class="form.canChangeUnit ==1?'el-icon-circle-check':'el-icon-circle-close'" :style="form.canChangeUnit ==1?'color:green;font-weight:bold':'color:red;font-weight:bold'"></i></span> |
| | | </div> |
| | | </div> |
| | | <div class="info_list_item"> |
| | | <div class="info_list_item_label">批改仅支持替换:</div> |
| | | <div class="info_list_item_val" v-if="form.delOnlyReplace == 1">是</div> |
| | | <div class="info_list_item_val" v-else>否</div> |
| | | </div> |
| | | <div class="info_list_item" style="width: 100%" v-if="form.type==1"> |
| | | <div class="info_list_item_label">方案确认书:</div> |
| | | <div class="info_list_item_val" ><a v-if="form.fanganFile && form.fanganFile.fileurlFull" style="cursor: pointer;color: #2E68EC" title="点击查看" @click="openFile(form.fanganFile.fileurlFull)">{{ form.fanganFile.name || '点击查看' }}</a></div> |
| | |
| | | import GlobalWindow from '@/components/common/GlobalWindow' |
| | | import OperaSolutionsWindow from '@/components/business/OperaSolutionsWindow' |
| | | import { solutionsId } from '@/api/business/solutions' |
| | | import {mapState} from "vuex"; |
| | | import { mapState } from 'vuex' |
| | | export default { |
| | | name: 'OperaSolutionsDescWindow', |
| | | extends: BaseOpera, |
| | |
| | | insureCycleUnit: '', |
| | | validTypeNum: '', |
| | | email: '', |
| | | canReduce: 0, |
| | | canChangeUnit: 0, |
| | | addValidDays: 0, |
| | | delValidDays: 0, |
| | | delOnlyReplace: 0, |
| | | canAdd: 0, |
| | | specialAgreement: '', |
| | | specialInfo: '', |
| | | ortherInfo: '', |
| | |
| | | specialInfo: '', |
| | | ortherInfo: '', |
| | | fanganFile:null, |
| | | canReduce: 0, |
| | | canChangeUnit: 0, |
| | | addValidDays: 0, |
| | | delValidDays: 0, |
| | | delOnlyReplace: 0, |
| | | canAdd: 0, |
| | | insuranceName: '', |
| | | signKeyword: '', |
| | | worktypeList: [], |