diff --git a/src/api/system/order.js b/src/api/system/order.js index 711661d..d81a656 100644 --- a/src/api/system/order.js +++ b/src/api/system/order.js @@ -77,4 +77,14 @@ export function getPersonInfo(nurseStationPersonId) { url: `/system/appointmentOrder/getPersonInfo?nurseStationPersonId=${nurseStationPersonId}`, method: 'get' }) +} + +//xiugai + +export function edit(data) { + return request({ + url: `/system/appointmentOrderDetails/edit`, + method: "post", + data + }) } \ No newline at end of file diff --git a/src/api/system/station.js b/src/api/system/station.js index ad0f5f5..d2e71a7 100644 --- a/src/api/system/station.js +++ b/src/api/system/station.js @@ -111,3 +111,12 @@ export function updatePicture(data) { data: data }) } + + +//生成二维码 +export function nurseStationFriends(nurseStationId) { + return request({ + url: `/system/station/nurseStationCode?nurseStationId=${nurseStationId}`, + method: 'post' + }) +} \ No newline at end of file diff --git a/src/components/Editor/index.vue b/src/components/Editor/index.vue index 616fa47..d00b116 100644 --- a/src/components/Editor/index.vue +++ b/src/components/Editor/index.vue @@ -103,7 +103,6 @@ export default { }, created() { this.uploadUrl = process.env.VUE_APP_BASE_API + this.url; - // console.log(this.url) // this.filetype.type = this.filetypes; }, computed: { @@ -197,7 +196,6 @@ export default { "image", process.env.VUE_APP_BASE_API + res.fileName ); - console.log(res); this.$emit("imgs", res.fileName); // 调整光标到最后 quill.setSelection(length + 1); diff --git a/src/views/system/order/index.vue b/src/views/system/order/index.vue index 494f351..83c2dd1 100644 --- a/src/views/system/order/index.vue +++ b/src/views/system/order/index.vue @@ -77,6 +77,14 @@ + \ No newline at end of file diff --git a/src/views/system/trainingItem/index.vue b/src/views/system/trainingItem/index.vue index 1e38d85..ed7ef44 100644 --- a/src/views/system/trainingItem/index.vue +++ b/src/views/system/trainingItem/index.vue @@ -1223,7 +1223,6 @@ export default { }, //删除视频列表 delPictureUrl(item) { - console.log(item); if (item.idd && !item.trainingItemDirectoryId) { if (this.form.trainingItemDirectoryList.length == 1) { this.$message.error("最后一条不可删除"); @@ -1243,7 +1242,6 @@ export default { ); } } - console.log(this.form.trainingItemDirectoryList); }, // 章节视频 itemDirectoryUrl(item) { @@ -1326,7 +1324,6 @@ export default { trainingParentinfo() { this.loading = true; selectTrainingParent(this.trainingParentqueryParams).then((response) => { - console.log(response); this.trainingParentlist = response.rows; this.total3 = response.total; this.loading = false; @@ -1344,7 +1341,6 @@ export default { }, //上架 uptrainingShelfFlag(row) { - console.log(row); if (row.trainingShelfFlag == false) { var obj = { id: row.id, @@ -1371,7 +1367,6 @@ export default { getList() { this.loading = true; listTrainingItem(this.queryParams).then((response) => { - console.log(response); response.rows.forEach((e) => { e.selectSubordinateItemlist = []; // 先给一个空值 e.expand = false; // 表示当前行是闭合的,不设置这个等下展开后就没法闭合了 diff --git a/src/views/system/trainingOrder/index.vue b/src/views/system/trainingOrder/index.vue index d459706..f3c94af 100644 --- a/src/views/system/trainingOrder/index.vue +++ b/src/views/system/trainingOrder/index.vue @@ -315,7 +315,7 @@ - +