|
@@ -18,8 +18,8 @@
|
|
|
</el-row>
|
|
|
<el-row :gutter="0">
|
|
|
<el-col :span="8">
|
|
|
- <el-form-item label="住院号码" prop="AAA28">
|
|
|
- <el-input v-model="ruleForm.AAA28" disabled placeholder="请输入"></el-input>
|
|
|
+ <el-form-item label="住院号码" prop="ZYH">
|
|
|
+ <el-input v-model="ruleForm.ZYH" disabled placeholder="请输入"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
@@ -167,7 +167,13 @@ export default {
|
|
|
blbh: ''
|
|
|
}
|
|
|
}
|
|
|
- }
|
|
|
+ },
|
|
|
+ AAA28: {
|
|
|
+ type: String,
|
|
|
+ default() {
|
|
|
+ return false;
|
|
|
+ },
|
|
|
+ },
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
@@ -211,7 +217,7 @@ export default {
|
|
|
ZKKS: [
|
|
|
{ required: true, message: '请输入', trigger: 'blur' }
|
|
|
],
|
|
|
-
|
|
|
+
|
|
|
JSR: [
|
|
|
{ required: true, message: '请输入', trigger: 'blur' }
|
|
|
],
|
|
@@ -251,6 +257,7 @@ export default {
|
|
|
this.getDeportmentList()
|
|
|
this.getCaseCateList()
|
|
|
this.$set(this.ruleForm, 'basis', this.data.text)
|
|
|
+ this.$set(this.ruleForm, 'ZYH', this.AAA28)
|
|
|
},
|
|
|
methods: {
|
|
|
// 质控分类
|
|
@@ -309,7 +316,7 @@ export default {
|
|
|
getBlInfo({ blbh: this.data.blbh }).then(res => {
|
|
|
const { AAA28, JSKS, JSR, ZYH } = res.data
|
|
|
this.$set(this.ruleForm, 'AAA28', AAA28)
|
|
|
- this.$set(this.ruleForm, 'ZYH', ZYH)
|
|
|
+ // this.$set(this.ruleForm, 'ZYH', ZYH)
|
|
|
this.$set(this.ruleForm, 'JSKS', JSKS)
|
|
|
this.$set(this.ruleForm, 'JSR', JSR)
|
|
|
})
|
|
@@ -338,7 +345,7 @@ export default {
|
|
|
id: ele.dep_id,
|
|
|
name: ele.name
|
|
|
})
|
|
|
- });
|
|
|
+ });
|
|
|
}
|
|
|
}).catch(error => {
|
|
|
console.log(error)
|
|
@@ -348,9 +355,9 @@ export default {
|
|
|
getCaseCateList() {
|
|
|
this.$axios.post('/bl_zk/getCaseCate').then(res => {
|
|
|
const { data } = res
|
|
|
-
|
|
|
+
|
|
|
if (data.length) {
|
|
|
- this.caseCates = data
|
|
|
+ this.caseCates = data
|
|
|
}
|
|
|
}).catch(error => {
|
|
|
console.log(error)
|