| | |
| | | <el-button |
| | | v-show="showTerminationBtn" |
| | | type="primary" |
| | | @click="submitForm" |
| | | @click="Terminationcase" |
| | | >终止案例</el-button |
| | | > |
| | | <el-button v-show="ReviewBtn" type="primary" @click="ReviewFn" |
| | | <el-button v-show="Reportforreview" type="primary" @click="ReviewFn" |
| | | >上报审核</el-button |
| | | > |
| | | <el-button v-show="makeastepforward" type="primary" @click="ReviewFn" |
| | | >下一步</el-button |
| | | > |
| | | <el-button @click="cancel">取 消</el-button> |
| | | <!-- <el-button @click="handleapproval">提交审核</el-button> --> |
| | |
| | | </el-col> |
| | | </el-row> |
| | | </el-form> |
| | | <div slot="footer" class="dialog-footer"> |
| | | <el-button v-show="showSaveBtn" type="primary" @click="submitForm" |
| | | >保存评估信息</el-button |
| | | > |
| | | <el-button |
| | | v-show="showTerminationBtn" |
| | | type="primary" |
| | | @click="Terminationcase" |
| | | >终止案例</el-button |
| | | > |
| | | <el-button v-show="makeastepforward" type="primary" @click="ReviewFn" |
| | | >下一步</el-button |
| | | > |
| | | <el-button @click="cancel">取 消</el-button> |
| | | </div> |
| | | </div> |
| | | <!-- 捐献确认 --> |
| | | <div class="boxdiv" v-show="actives == 2"></div> |
| | | <div class="boxdiv" v-show="actives == 2"> |
| | | <el-form |
| | | ref="affirmform" |
| | | :model="affirmform" |
| | | :rules="affirmrules" |
| | | label-width="100px" |
| | | label-position="right" |
| | | > |
| | | <el-row> |
| | | <el-col :span="12"> |
| | | <el-form-item |
| | | label="亲属关系" |
| | | prop="kinship" |
| | | class="relation" |
| | | align="left" |
| | | > |
| | | <el-checkbox-group v-model="form.kinship"> |
| | | <el-checkbox |
| | | v-for="dict in dict.type.sys_Kinship" |
| | | :key="dict.value" |
| | | :label="dict.value" |
| | | > |
| | | {{ dict.label }} |
| | | </el-checkbox> |
| | | </el-checkbox-group> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="6"> |
| | | <el-form-item label="子女数量" prop="kinshipChildrennum"> |
| | | <el-input |
| | | v-model="form.kinshipChildrennum" |
| | | placeholder="请输入数量" |
| | | /> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | | <el-row> |
| | | <el-col :span="6"> |
| | | <el-form-item label="亲属姓名" prop="name"> |
| | | <el-input v-model="form.name" placeholder="请输入姓名" /> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="6"> |
| | | <el-form-item |
| | | align="left" |
| | | label="与捐赠者关系" |
| | | prop="familyrelations" |
| | | > |
| | | <el-select |
| | | v-model="form.familyrelations" |
| | | placeholder="请选择与捐赠者关系" |
| | | > |
| | | <el-option |
| | | v-for="dict in dict.type.sys_FamilyRelation" |
| | | :key="dict.value" |
| | | :label="dict.label" |
| | | :value="dict.value" |
| | | ></el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-col> |
| | | |
| | | <el-col :span="12"> |
| | | <el-form-item label="身份证号" prop="idcardno"> |
| | | <el-input |
| | | ref="updateBSvalue" |
| | | class="sfzcode" |
| | | v-model="form.idcardno" |
| | | placeholder="请输入证件号码" |
| | | /> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | | <el-row> |
| | | <el-col :span="12"> |
| | | <el-form-item label="亲属籍贯" prop="residenceaddresss"> |
| | | <div> |
| | | <li_area_select |
| | | v-model="defultAddresss" |
| | | ref="residenceaddresss" |
| | | ></li_area_select> |
| | | <!-- <div>{{defultAddress}}</div> --> |
| | | </div> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="12"> |
| | | <el-form-item label="现住地址" prop="residenceaddress"> |
| | | <el-input |
| | | v-model="form.residenceaddress" |
| | | placeholder="请输入内容" |
| | | /> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | | <el-row> </el-row> |
| | | <el-row> |
| | | <el-col :span="6"> |
| | | <el-form-item label="联系电话" prop="phone"> |
| | | <el-input v-model="form.phone" placeholder="请输入联系电话" /> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | | <el-row> |
| | | <el-col :span="18"> |
| | | <el-form-item align="left" label="捐献决定"> |
| | | <el-checkbox-group v-model="form.organdecision"> |
| | | <el-checkbox |
| | | v-for="dict in dict.type.sys_OrganDecision" |
| | | :key="dict.label" |
| | | :label="dict.label" |
| | | > |
| | | {{ dict.label }} |
| | | </el-checkbox> |
| | | </el-checkbox-group> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="6"> |
| | | <el-form-item label="其他" prop="organdecisionOther"> |
| | | <el-input |
| | | v-model="form.organdecisionOther" |
| | | placeholder="请输入其他" |
| | | /> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | | <el-row> |
| | | <el-col :span="6"> |
| | | <el-form-item label="负责人" prop="responsibleuserid"> |
| | | <el-select |
| | | v-model="form.responsibleuserid" |
| | | placeholder="请选择" |
| | | > |
| | | <el-option |
| | | v-for="item in leaderlist" |
| | | :key="item.reportNo" |
| | | :label="item.reportName" |
| | | :value="item.reportNo" |
| | | > |
| | | </el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="6"> |
| | | <el-form-item label="协调员1" prop="coordinateduserido"> |
| | | <el-select |
| | | v-model="form.coordinateduserido" |
| | | placeholder="请选择" |
| | | > |
| | | <el-option |
| | | v-for="item in coordinatorlist1" |
| | | :key="item.reportNo" |
| | | :label="item.reportName" |
| | | :value="item.reportNo" |
| | | > |
| | | </el-option> |
| | | </el-select> |
| | | </el-form-item> |
| | | </el-col> |
| | | <el-col :span="6"> |
| | | <el-form-item label="协调员2" prop="coordinateduseridt"> |
| | | <el-select |
| | | v-model="form.coordinateduseridt" |
| | | placeholder="请选择" |
| | | > |
| | | <el-option |
| | | v-for="item in coordinatorlist1" |
| | | :key="item.reportNo" |
| | | :label="item.reportName" |
| | | :value="item.reportNo" |
| | | > |
| | | </el-option> |
| | | </el-select> |
| | | </el-form-item> </el-col |
| | | ><el-col :span="6"> |
| | | <el-form-item |
| | | align="left" |
| | | label="签字日期" |
| | | prop="signdate" |
| | | style="over-flow: hidden" |
| | | > |
| | | <el-date-picker |
| | | clearable |
| | | size="small" |
| | | v-model="form.signdate" |
| | | type="date" |
| | | value-format="yyyy-MM-dd hh:mm:ss" |
| | | placeholder="选择签字日期" |
| | | > |
| | | </el-date-picker> |
| | | </el-form-item> |
| | | </el-col> |
| | | </el-row> |
| | | </el-form> |
| | | <div slot="footer" class="dialog-footer"> |
| | | <el-button v-show="showSaveBtn" type="primary" @click="submitForm" |
| | | >保存评估信息</el-button |
| | | > |
| | | <el-button |
| | | v-show="showTerminationBtn" |
| | | type="primary" |
| | | @click="Terminationcase" |
| | | >终止案例</el-button |
| | | > |
| | | <el-button v-show="makeastepforward" type="primary" @click="ReviewFn" |
| | | >下一步</el-button |
| | | > |
| | | <el-button @click="cancel">取 消</el-button> |
| | | </div> |
| | | </div> |
| | | <div class="boxdiv" v-show="actives == 3">伦理审查</div> |
| | | <div class="boxdiv" v-show="actives == 4">器官分配</div> |
| | | <div class="boxdiv" v-show="actives == 5">获取见证</div> |
| | |
| | | shi: "", |
| | | qu: "" |
| | | }, |
| | | // 表单校验 |
| | | // 顶部数据校验 |
| | | rules: { |
| | | name: [ |
| | | { required: true, message: "请输入捐献者姓名", trigger: "blur" } |
| | |
| | | ] |
| | | // treatmenthospitalno: [{ required: true, message: "请选择医疗机构", trigger: "change" }], |
| | | }, |
| | | // 潜在捐献效验 |
| | | latentrules: { |
| | | bloodtype: [ |
| | | { required: true, message: "请选择ABO血型", trigger: "blur" } |
| | |
| | | this.latentform = this.form; |
| | | }); |
| | | }, |
| | | // 切换tab |
| | | on_click(e) { |
| | | console.log(e); |
| | | if (e != "" || e != null) { |
| | | this.actives = e; |
| | | } |
| | | } |
| | | }, |
| | | // 前进步骤 |
| | | makeastepforward(){}, |
| | | // 上报审核 |
| | | Reportforreview(){}, |
| | | // 终止案例 |
| | | Terminationcase(){}, |
| | | // 返回上一页 |
| | | cancel(){}, |
| | | } |
| | | }; |
| | | </script> |