Commit 8da795d5 authored by 罗超's avatar 罗超

1

parent 8cc192c6
import request from '../../utils/request' import request from '../../utils/request'
/** /**
* 获取日语培训列表 * 获取日语培训列表—旧
* *
*/ */
export function GetEducationContractPageList(data) { export function GetEducationContractPageList(data) {
return request({ return request({
url: '/EducationContract/GetEducationContractPageList', url: '/EducationContract/GetEducationContractPageList',
method: 'post', method: 'post',
data data
}) })
}
/**
* 获取日语培训列表
*
*/
export function GetEducationContractPageCodeList(data) {
return request({
url: '/EducationContract/GetEducationContractPageCodeList',
method: 'post',
data
})
} }
/** /**
* 获取合同详情 * 获取合同详情
* *
*/ */
export function GetEducationContractInfo(data) { export function GetEducationContractInfo(data) {
return request({ return request({
url: '/EducationContract/GetEducationContractInfo', url: '/EducationContract/GetEducationContractInfo',
method: 'post', method: 'post',
data data
}) })
} }
/** /**
...@@ -37,7 +47,7 @@ export function SetEducationContractInfo(data) { ...@@ -37,7 +47,7 @@ export function SetEducationContractInfo(data) {
} }
/** /**
* 合同操作 * 合同操作-旧
* *
*/ */
export function SetEducationContractAudit(data) { export function SetEducationContractAudit(data) {
...@@ -47,6 +57,17 @@ export function SetEducationContractAudit(data) { ...@@ -47,6 +57,17 @@ export function SetEducationContractAudit(data) {
data data
}) })
} }
/**
* 合同操作
*
*/
export function SetEducationContractAuditCode(data) {
return request({
url: '/EducationContract/SetEducationContractAuditCode',
method: 'post',
data
})
}
/** /**
* 合同操作-下载pdf * 合同操作-下载pdf
......
...@@ -1518,14 +1518,14 @@ export default { ...@@ -1518,14 +1518,14 @@ export default {
this.msg.NewChangePlanItemList = []; this.msg.NewChangePlanItemList = [];
this.msg.AllChangePlanItem = {}; this.msg.AllChangePlanItem = {};
} }
if (this.msg.ReceiptFileList.length === 0) { // if (this.msg.ReceiptFileList.length === 0) {
this.$q.notify({ // this.$q.notify({
type: "negative", // type: "negative",
position: "top", // position: "top",
message: `请上传附件`, // message: `请上传附件`,
}); // });
return; // return;
} // }
this.$q this.$q
.dialog({ .dialog({
title: "提示信息", title: "提示信息",
......
...@@ -696,14 +696,14 @@ export default { ...@@ -696,14 +696,14 @@ export default {
}); });
return; return;
} }
if (this.msg.ReceiptFileList.length === 0) { // if (this.msg.ReceiptFileList.length === 0) {
this.$q.notify({ // this.$q.notify({
type: "negative", // type: "negative",
position: "top", // position: "top",
message: `请上传附件`, // message: `请上传附件`,
}); // });
return; // return;
} // }
let timesIds = this.selected let timesIds = this.selected
.map((e) => { .map((e) => {
return e.ClassTimeId; return e.ClassTimeId;
......
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