diff --git a/src/views/HosInformation.vue b/src/views/HosInformation.vue
index 907e0d4..9556531 100644
--- a/src/views/HosInformation.vue
+++ b/src/views/HosInformation.vue
@@ -208,6 +208,14 @@
+
+
+
+
+
+
+
+
@@ -815,14 +823,16 @@ export default {
this.editorProjectInfo({ status: row.status, project_id: row.id })
},
onSwitchChange2(row) {
- console.log(row.status)
-
var tmpstatus = row.status == 1 ? 0 : 1
this.$set(this.courseList, row)
this.selectedRows1 = [row]
-
this.batchOperate(tmpstatus, 'group')
},
+ onSwitchChange3(row) {
+ row.need_countdown = row.need_countdown == 0 ? 1 : 0;
+ this.$set(this.projectList, row)
+ this.editorProjectInfo({ need_countdown: row.need_countdown, project_id: row.id })
+ },
handleClick1(row) {
console.log(row);
this.$router.push(`/addNewTreatment?package_id=${row.id}&doctor_id=${this.doctor_id}&depart_id=${this.depart_id}`)