瀏覽代碼

修改填空题问题

小欧追 1 年之前
父節點
當前提交
eab2e1d86c
共有 2 個文件被更改,包括 13 次插入3 次删除
  1. 1 1
      components/wenjuan-tian.vue
  2. 12 2
      pages/index/wenjuan-info.vue

+ 1 - 1
components/wenjuan-tian.vue

@@ -50,7 +50,7 @@
 		methods: {
 			init() {
 				this.text = this.item.quesName
-				var arr = this.text.split("${input}")
+				var arr = this.text.split("()")
 				this.textlist = []
 				arr.forEach((val, key) => {
 					if (key == arr.length - 1) {

+ 12 - 2
pages/index/wenjuan-info.vue

@@ -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) {