Browse Source

病例收集功能修改完成

360view
bianyaqi 2 years ago
parent
commit
2cc8cc05fe
  1. 50
      src/components/360View/collection.vue

50
src/components/360View/collection.vue

@ -106,7 +106,6 @@ export default {
}
},
collectData(val) {
console.log(val)
if (!val.length) {
this.disabled = false
this.addParam.id = ''
@ -209,22 +208,41 @@ export default {
},
//
handleAddPatient() {
const params = {
createDate: this.$moment().format('YYYY-MM-DD HH:mm:ss'),
patientId: this.patientId,
platform: this.platform,
remark: this.remark,
treeId: this.curNode.id
}
console.log(this.curNode)
this.$http.post('/tree/addPatientTree', params).then(() => {
this.editMessage = '收藏成功!'
this.$message({
message: this.editMessage,
type: 'success'
//
if (!this.curNode.patientId) {
const params = {
createDate: this.$moment().format('YYYY-MM-DD HH:mm:ss'),
patientId: this.patientId,
platform: this.platform,
remark: this.remark,
treeId: this.curNode.id
}
this.$http.post('/tree/addPatientTree', params).then(() => {
this.editMessage = '收藏成功!'
this.$message({
message: this.editMessage,
type: 'success'
})
this.findTree()
})
this.findTree()
})
} else {
//
const params = {
patientId: this.curNode.patientId,
platform: this.platform,
remark: this.remark,
treeId: this.curNode.treeId,
id: this.curNode.id
}
this.$http.post('/tree/addPatientTree', params).then(() => {
this.editMessage = '修改成功!'
this.$message({
message: this.editMessage,
type: 'success'
})
this.findTree()
})
}
},
//
addNode(command, node, data) {

Loading…
Cancel
Save