Commit aa367f4e authored by zhengke's avatar zhengke

页面修改

parent aeb52802
......@@ -283,18 +283,22 @@
},
//跳转至编辑
goContract(item) {
   let routeUrl = this.$router.resolve({
     path: "/contractView",
     query: {
ContractId:item.Id
let routeUrl = this.$router.resolve({
path: "/contractView",
query: {
ContractId: item.Id
}
   });
   window.open(routeUrl.href, '_blank');
});
window.open(routeUrl.href, '_blank');
},
//新增修改合同
EditContract(obj) {
if (obj) {
this.eduObj = obj
this.eduObj = {
OrderId: obj.OrderId,
GuestId: obj.GuestId,
ContractId: obj.Id
}
} else {
this.eduObj = null
}
......@@ -304,7 +308,7 @@
closeEdudia() {
this.isShowEduForm = false
},
//刷新页面
//刷新页面a
refreshPage() {
this.isShowEduForm = false;
this.getList();
......@@ -331,20 +335,20 @@
//下载pdf
downloadContract(item) {
let msg = {
ContractId:item.Id,
CType:item.CType
ContractId: item.Id,
CType: item.CType
}
GetDownLoadEducationContract(msg).then(res => {
if (res.Code == 1) {
let sign=item.StudentName+'-'+item.ContractNo;
downloadLocalFile(sign,res.Data);
let sign = item.StudentName + '-' + item.ContractNo;
downloadLocalFile(sign, res.Data);
}
})
},
//复制合同
copyContract(item){
copyContract(item) {
let msg = {
ContractId:item.Id
ContractId: item.Id
}
SetEducationContractCopy(msg).then(res => {
if (res.Code == 1) {
......@@ -356,7 +360,7 @@
CopyUrl(item) {
var oInput = document.createElement('input');
var url = window.location.host;
oInput.value = url+'/#/contractConfirm'+`?ContractId=${item.Id}`;
oInput.value = url + '/#/contractConfirm' + `?ContractId=${item.Id}`;
document.body.appendChild(oInput);
oInput.select(); // 选择对象
document.execCommand("Copy"); // 执行浏览器复制命令
......
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