|
@ -30,7 +30,7 @@
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0 lh27">姓名:</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-input :readonly="!editable" v-model="data2.patient.name" placeholder="" clearable></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@ -38,7 +38,7 @@
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0 lh27">编号:</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-input :readonly="!editable" v-model="data2.number" placeholder="" clearable></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@ -46,58 +46,66 @@
|
|
|
<tr>
|
|
|
<td class="col-w300 c-t-center">随访时间</td>
|
|
|
<td colspan="3">
|
|
|
<el-date-picker :readonly="!editable" v-model="data2" type="date" placeholder="选择日期">
|
|
|
<el-date-picker :readonly="!editable" v-model="data2.followup_date" format="yyyy-MM-dd" value-format="yyyy-MM-dd" type="date" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w300 c-t-center">随访方式</td>
|
|
|
<td colspan="3">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">门诊</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">家庭</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.way">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">门诊</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">家庭</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w300 c-t-center">患者类型</td>
|
|
|
<td colspan="3">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">初治</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">复治</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.patient_type">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">初治</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">复治</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w300 c-t-center">痰菌情况</td>
|
|
|
<td colspan="3">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">阳性</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">阴性</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="3">未查痰</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.sputum_bacterium">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">阳性</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">阴性</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="3">未查痰</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w300 c-t-center">耐药情况</td>
|
|
|
<td colspan="3">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">耐药</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">非耐药</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未检测</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.drug_resistant">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">耐药</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">非耐药</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="3">未检测</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w300">症状及体征:
|
|
|
<el-checkbox-group v-model="check" :disabled="!editable">
|
|
|
<el-checkbox label="1" style="margin-left:30px;">没有盗汗</el-checkbox>
|
|
|
<el-checkbox label="1">咳嗽咳痰</el-checkbox>
|
|
|
<el-checkbox label="1">低热盗汗</el-checkbox>
|
|
|
<el-checkbox label="1">咳血或血痰</el-checkbox>
|
|
|
<el-checkbox label="1">胸痛消瘦</el-checkbox>
|
|
|
<el-checkbox label="1">恶心纳差</el-checkbox>
|
|
|
<el-checkbox label="1">头痛失眠</el-checkbox>
|
|
|
<el-checkbox label="1">视物模糊</el-checkbox>
|
|
|
<el-checkbox label="1">皮肤瘙痒、皮疹</el-checkbox>
|
|
|
<el-checkbox label="1">耳鸣、听力下降</el-checkbox>
|
|
|
<el-checkbox-group v-model="data2.symptom" :disabled="!editable">
|
|
|
<el-checkbox label="0" style="margin-left:30px;">没有症状</el-checkbox>
|
|
|
<el-checkbox label="1">咳嗽咳痰</el-checkbox>
|
|
|
<el-checkbox label="2">低热盗汗</el-checkbox>
|
|
|
<el-checkbox label="3">咳血或血痰</el-checkbox>
|
|
|
<el-checkbox label="4">胸痛消瘦</el-checkbox>
|
|
|
<el-checkbox label="5">恶心纳差</el-checkbox>
|
|
|
<el-checkbox label="6">头痛失眠</el-checkbox>
|
|
|
<el-checkbox label="7">视物模糊</el-checkbox>
|
|
|
<el-checkbox label="8">皮肤瘙痒、皮疹</el-checkbox>
|
|
|
<el-checkbox label="9">耳鸣、听力下降</el-checkbox>
|
|
|
</el-checkbox-group>
|
|
|
</td>
|
|
|
<td colspan="3" style="vertical-align: initial;">
|
|
|
其他:
|
|
|
<el-input type="textarea" :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-input type="textarea" :readonly="!editable" v-model="data2.symptom_other_desc" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -109,19 +117,29 @@
|
|
|
化疗方案
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-input :readonly="!editable" v-model="data2.drug_use.chemotherapy" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center">用法</td>
|
|
|
<td>
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.drug_use.method">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">每日</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">间歇</el-radio>
|
|
|
</el-radio-group>
|
|
|
<!--<el-input :readonly="!editable" v-model="data2.drug_use.method" placeholder="" clearable></el-input>-->
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center">药品剂型</td>
|
|
|
<td>
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.drug_use.dosage_form">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">固定剂量复合制剂</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">散装药</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="3">板式组合药</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="4">注射剂</el-radio>
|
|
|
</el-radio-group>
|
|
|
<!--<el-input :readonly="!editable" v-model="data2.drug_use.dosage_form" placeholder="" clearable></el-input>-->
|
|
|
</td>
|
|
|
</tr>
|
|
|
</table>
|
|
@ -130,10 +148,12 @@
|
|
|
<tr>
|
|
|
<td class="col-w300 c-t-center">督导人员选择</td>
|
|
|
<td colspan="2">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">医生</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">家属</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">自服药</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">其他</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.superviser.superviser_type">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">医生</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">家属</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="3">自服药</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="4">其他</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -145,16 +165,20 @@
|
|
|
单独的居室
|
|
|
</td>
|
|
|
<td>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">有</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">无</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.home_environment.seperate_room">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">有</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">无</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center">通风情况</td>
|
|
|
<td>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">良好</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">一般</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">差</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.home_environment.air">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">良好</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">一般</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="3">差</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -163,13 +187,13 @@
|
|
|
吸烟
|
|
|
</td>
|
|
|
<td>
|
|
|
<input type="text"> 支/天
|
|
|
<el-input :readonly="!editable" v-model="data2.life_style.smoke" placeholder="" clearable></el-input>支/天
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center">喝酒</td>
|
|
|
<td>
|
|
|
<input type="text"> 两/天
|
|
|
<el-input :readonly="!editable" v-model="data2.life_style.drink" placeholder="" clearable></el-input>两/天
|
|
|
</td>
|
|
|
</tr>
|
|
|
</table>
|
|
@ -185,73 +209,91 @@
|
|
|
</td>
|
|
|
<td>
|
|
|
地点:
|
|
|
<el-input type="textarea" :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-input type="textarea" :readonly="!editable" v-model="data2.health_edu.get_drug_addr" placeholder="" clearable></el-input>
|
|
|
<br> 时间:
|
|
|
<el-date-picker :readonly="!editable" v-model="data2" type="date" placeholder="选择日期">
|
|
|
<el-date-picker :readonly="!editable" v-model="data2.health_edu.get_drug_time" format="yyyy-MM-dd" value-format="yyyy-MM-dd" type="date" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>服药记录卡的填写</td>
|
|
|
<td>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.health_edu.drug_fill_record_card">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>服药方法及药品存放</td>
|
|
|
<td>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.health_edu.drug_store">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>肺结核治疗疗程</td>
|
|
|
<td>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.health_edu.phthisis_treatment">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>不规律服药危害</td>
|
|
|
<td>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.health_edu.harm_of_irregular_take_drug">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>服药后不良反应及处理</td>
|
|
|
<td>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.health_edu.drug_bad_reaction">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>治疗期间复诊查痰</td>
|
|
|
<td>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.health_edu.check_sputum_again">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>外出期间如何坚持服药</td>
|
|
|
<td>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.health_edu.insist_take_drug">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>生活习惯及注意事项</td>
|
|
|
<td>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.health_edu.life_way">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td>密切接触者检查</td>
|
|
|
<td>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
<el-radio-group :disabled="!editable" v-model="data2.health_edu.close_contact_patient">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">掌握</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未掌握</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
</table>
|
|
@ -260,16 +302,14 @@
|
|
|
<tr>
|
|
|
<td class="col-w300 c-t-center">下次随访时间</td>
|
|
|
<td>
|
|
|
<el-date-picker :readonly="!editable" v-model="data2" type="date" placeholder="选择日期">
|
|
|
<el-date-picker :readonly="!editable" v-model="data2.next_followup_date" type="date" format="yyyy-MM-dd" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w300 c-t-center">评估医生签名</td>
|
|
|
<td>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">耐药</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">非耐药</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">未检测</el-radio>
|
|
|
<el-input :readonly="!editable" v-model="data2.life_style.signature_doctor_name" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
</table>
|
|
@ -291,37 +331,92 @@
|
|
|
el: "#app",
|
|
|
data: function () {
|
|
|
return {
|
|
|
editable: true,
|
|
|
editable: false,
|
|
|
isEditBtn: true,
|
|
|
data2: "",
|
|
|
data2: {
|
|
|
symptom: [],
|
|
|
patient: {},
|
|
|
drug_use: {},
|
|
|
superviser: {},
|
|
|
home_environment: {},
|
|
|
life_style: {},
|
|
|
health_edu: {}
|
|
|
},
|
|
|
radio: "",
|
|
|
input: '',
|
|
|
check: '',
|
|
|
followupId: Request['id'],
|
|
|
version: Request['version']
|
|
|
check: [],
|
|
|
followupId: Request['id'] || '1888113',
|
|
|
version: Request['version'] || "v1"
|
|
|
}
|
|
|
},
|
|
|
mounted: function () {
|
|
|
this.getData()
|
|
|
},
|
|
|
methods: {
|
|
|
getData: function () {
|
|
|
var vm = this
|
|
|
// fangshiAPI.getPostpartumVisitDetails({ followupId: this.followupId || '3' }).then(function (res) {
|
|
|
// if (res.status == 200) {
|
|
|
// var data = res.data
|
|
|
// } else {
|
|
|
// top.toastr.error(res.msg);
|
|
|
// }
|
|
|
// })
|
|
|
fangshiAPI.getPhthisisFirstCheckRecord({ followupId: this.followupId }).then(function (res) {
|
|
|
if (res.status == 200) {
|
|
|
var data = res.data
|
|
|
var isEmpty = true
|
|
|
for(var k in data){
|
|
|
if(k){
|
|
|
isEmpty = false
|
|
|
break
|
|
|
}
|
|
|
}
|
|
|
if(!isEmpty){
|
|
|
if(!data.symptom){
|
|
|
data.symptom = []
|
|
|
} else {
|
|
|
data.symptom = data.symptom.split(",")
|
|
|
}
|
|
|
if(!data.patient){
|
|
|
data.patient = {}
|
|
|
}
|
|
|
if(!data.drug_use){
|
|
|
data.drug_use = {}
|
|
|
}
|
|
|
if(!data.superviser){
|
|
|
data.superviser = {}
|
|
|
}
|
|
|
if(!data.home_environment){
|
|
|
data.home_environment = {}
|
|
|
}
|
|
|
if(!data.life_style){
|
|
|
data.life_style = {}
|
|
|
}
|
|
|
if(!data.health_edu){
|
|
|
data.health_edu = {}
|
|
|
}
|
|
|
vm.data2 = data
|
|
|
} else {
|
|
|
var btn = document.getElementsByClassName('button')[0]
|
|
|
btn.innerHTML = '保存'
|
|
|
vm.isEditBtn = false
|
|
|
vm.editable = true
|
|
|
}
|
|
|
} else {
|
|
|
top.toastr.error(res.msg);
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
editData: function () {
|
|
|
// this.postpartumVisitDetails.create_time = null
|
|
|
// this.postpartumVisitDetails.version = this.version //版本号
|
|
|
// fangshiAPI.savePostpartumVisitDetails({ followupId: this.followupId || '3', postpartumVisitDetails: JSON.stringify(this.postpartumVisitDetails) }).then(function (res) {
|
|
|
// if (res.status == 200) {
|
|
|
// top.toastr.info('保存成功')
|
|
|
// } else {
|
|
|
// top.toastr.error(res.msg);
|
|
|
// }
|
|
|
// })
|
|
|
editData: function () {
|
|
|
this.data2.version = this.version //版本号
|
|
|
this.data2.followup_id = this.followupId
|
|
|
if(this.data2.symptom ){
|
|
|
this.data2.symptom = this.data2.symptom.join(",")
|
|
|
} else {
|
|
|
this.data2.symptom = ""
|
|
|
}
|
|
|
|
|
|
fangshiAPI.savePhthisisFirstCheckRecord({ jsonData: JSON.stringify(this.data2) }).then(function (res) {
|
|
|
if (res.status == 200) {
|
|
|
top.toastr.info('保存成功')
|
|
|
} else {
|
|
|
top.toastr.error(res.msg);
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
editBtn: function () {
|
|
|
this.isEditBtn = !this.isEditBtn
|