|
@@ -29,12 +29,14 @@
|
|
|
data() {
|
|
|
return {
|
|
|
id: '',
|
|
|
- list: []
|
|
|
+ list: [],
|
|
|
+ phone: ''
|
|
|
}
|
|
|
},
|
|
|
onLoad(option) {
|
|
|
this.id = option.id
|
|
|
this.getdata()
|
|
|
+ this.getuser()
|
|
|
},
|
|
|
components: {
|
|
|
dan,
|
|
@@ -43,6 +45,13 @@
|
|
|
wen
|
|
|
},
|
|
|
methods: {
|
|
|
+ getuser() {
|
|
|
+ this.$http.getUserInfo().then(res => {
|
|
|
+ if (res.data.code == 200) {
|
|
|
+ this.phone = res.data.result.phone || ''
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
save() {
|
|
|
var quesSubNodeMessageList = []
|
|
|
for (let i = 0; i < this.list.length; i++) {
|
|
@@ -110,7 +119,8 @@
|
|
|
})
|
|
|
this.$http.noteAdd({
|
|
|
id: this.id,
|
|
|
- quesSubNodeMessageList: quesSubNodeMessageList
|
|
|
+ quesSubNodeMessageList: quesSubNodeMessageList,
|
|
|
+ doctorCode: this.phone
|
|
|
}).then(res => {
|
|
|
this.$u.toast(res.data.message)
|
|
|
if (res.data.code == 200) {
|