Commit 776ffde1 authored by zhengke's avatar zhengke

修改

parent ec387072
...@@ -556,3 +556,15 @@ export function propertyGetPageList(data) { ...@@ -556,3 +556,15 @@ export function propertyGetPageList(data) {
data data
}); });
} }
/**
* 保存调课申请单
*/
export function SetChangeClassPlan(data) {
return request({
url: '/ChangePlan/SetChangeClassPlan',
method: 'post',
data
});
}
This diff is collapsed.
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
</div> </div>
</div> </div>
<classmateForm :dataList="dataList" v-if="commonType==1"></classmateForm> <classmateForm :dataList="dataList" v-if="commonType==1"></classmateForm>
<change-class-form v-if="persistent" @close="closeSaveForm"></change-class-form> <change-class-form v-if="persistent" @close="closeSaveForm" @success="refreshPage"></change-class-form>
<teachTable v-if="commonType==2" :tableData="tableData" :PageCount="PageCount" :setMsg="tabMsg" @getChange="getChange"></teachTable> <teachTable v-if="commonType==2" :tableData="tableData" :PageCount="PageCount" :setMsg="tabMsg" @getChange="getChange"></teachTable>
</div> </div>
</template> </template>
...@@ -107,6 +107,9 @@ ...@@ -107,6 +107,9 @@
this.getPlanList(); this.getPlanList();
}, },
methods: { methods: {
refreshPage(){
this.getPlanList();
},
openForm() { openForm() {
this.persistent = true this.persistent = true
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment