Commit c24fa671 authored by zhengke's avatar zhengke

修改

parent 7cc310fc
...@@ -312,6 +312,19 @@ ...@@ -312,6 +312,19 @@
*background-color: #003bb3; *background-color: #003bb3;
} }
.TC-MainContent .disClick {
background-color: #d1d1d1!important;
color: #fff!important;
background-image: none;
border: 1px solid #d1d1d1!important;
}
.TC-MainContent .disClick:hover {
background-color: #d1d1d1 !important;
cursor: default !important;
box-shadow: none !important;
}
</style> </style>
<template> <template>
<div class="TC-MainContent"> <div class="TC-MainContent">
...@@ -328,7 +341,7 @@ ...@@ -328,7 +341,7 @@
<span style="color:blue;font-size:14px;"></span> <span style="color:blue;font-size:14px;"></span>
</span> </span>
<div class="pull-right"> <div class="pull-right">
<input type="button" class="btn-warning" @click="submitForm('CtObj')" value="保存" /> <input type="button" class="btn-warning" :class="{'disClick':!isSubmit}" @click="submitForm('CtObj')" value="保存" />
</div> </div>
</div> </div>
<el-form label-width="180px" :model="CtObj" :rules="rules" ref="CtObj"> <el-form label-width="180px" :model="CtObj" :rules="rules" ref="CtObj">
...@@ -1309,6 +1322,8 @@ ...@@ -1309,6 +1322,8 @@
ckedIndex: 0, ckedIndex: 0,
TripInfo: '', TripInfo: '',
tripStr: '切换到标准行程录入', tripStr: '切换到标准行程录入',
//防止重复提交
isSubmit: true,
}; };
}, },
components: { components: {
...@@ -1336,20 +1351,24 @@ ...@@ -1336,20 +1351,24 @@
}, },
//提交数据 //提交数据
SaveMsg() { SaveMsg() {
this.apipost( if (this.isSubmit) {
"travelcontract_post_SetTravelContractService", this.isSubmit = false;
this.CtObj, this.apipost(
res => { "travelcontract_post_SetTravelContractService",
if (res.data.resultCode == 1) { this.CtObj,
this.CtObj.ID = res.data.data; res => {
this.GetData(); this.isSubmit = true;
this.Success(res.data.message); if (res.data.resultCode == 1) {
} else { this.CtObj.ID = res.data.data;
this.Error(res.data.message); this.GetData();
} this.Success(res.data.message);
}, } else {
err => {} this.Error(res.data.message);
); }
},
err => {}
);
}
}, },
//提交 //提交
submitForm(addMsg) { submitForm(addMsg) {
......
...@@ -298,6 +298,18 @@ ...@@ -298,6 +298,18 @@
.TC-MainContent .ql-editor { .TC-MainContent .ql-editor {
min-height: 200px; min-height: 200px;
} }
.TC-MainContent .disClick {
background-color: #d1d1d1!important;
color: #fff!important;
background-image: none;
border: 1px solid #d1d1d1!important;
}
.TC-MainContent .disClick:hover {
background-color: #d1d1d1 !important;
cursor: default !important;
box-shadow: none !important;
}
</style> </style>
<template> <template>
...@@ -312,7 +324,7 @@ ...@@ -312,7 +324,7 @@
单项委托协议 单项委托协议
</span> </span>
<div class="pull-right"> <div class="pull-right">
<input type="button" class="btn-warning" @click="submitForm('CtObj')" value="保存" /> <input type="button" class="btn-warning" :class="{'disClick':!isSubmit}" @click="submitForm('CtObj')" value="保存" />
</div> </div>
</div> </div>
<el-form label-width="180px" :model="CtObj" :rules="rules" ref="CtObj"> <el-form label-width="180px" :model="CtObj" :rules="rules" ref="CtObj">
...@@ -1399,6 +1411,8 @@ ...@@ -1399,6 +1411,8 @@
} }
}, },
//防止重复提交
isSubmit: true,
//大写金额 //大写金额
AmountMoney: '' AmountMoney: ''
...@@ -1417,20 +1431,24 @@ ...@@ -1417,20 +1431,24 @@
}, },
//提交数据 //提交数据
SaveMsg() { SaveMsg() {
this.apipost( if (this.isSubmit) {
"travelcontract_post_SetTravelContractService", this.isSubmit = false;
this.CtObj, this.apipost(
res => { "travelcontract_post_SetTravelContractService",
if (res.data.resultCode == 1) { this.CtObj,
this.CtObj.ID = res.data.data; res => {
this.GetData(); this.isSubmit = true;
this.Success(res.data.message); if (res.data.resultCode == 1) {
} else { this.CtObj.ID = res.data.data;
this.Error(res.data.message); this.GetData();
} this.Success(res.data.message);
}, } else {
err => {} this.Error(res.data.message);
); }
},
err => {}
);
}
}, },
//跳转至预览 //跳转至预览
goUrl() { goUrl() {
......
...@@ -189,17 +189,17 @@ ...@@ -189,17 +189,17 @@
<el-tooltip class="item" effect="dark" content="提交并盖章" placement="top-start"> <el-tooltip class="item" effect="dark" content="提交并盖章" placement="top-start">
<el-button type="info" icon="el-icon-upload2" circle @click="SubmitContract(item)"></el-button> <el-button type="info" icon="el-icon-upload2" circle @click="SubmitContract(item)"></el-button>
</el-tooltip> </el-tooltip>
<el-tooltip class="item" effect="dark" content="复制链接发送给客户" placement="top-start"> <el-tooltip class="item" v-if="item.Status==2" effect="dark" content="复制链接发送给客户" placement="top-start">
<el-button type="info" icon="el-icon-upload2" circle @click="CopyUrl(item)"></el-button> <el-button type="info" icon="el-icon-upload2" circle @click="CopyUrl('Copy'+index)"></el-button>
</el-tooltip> </el-tooltip>
<el-tooltip class="item" effect="dark" content="取消" placement="top-start"> <el-tooltip class="item" effect="dark" content="取消" placement="top-start">
<el-button type="danger" icon="el-icon-close" circle @click="DeleteContract(item)"></el-button> <el-button type="danger" icon="el-icon-close" circle @click="DeleteContract(item)"></el-button>
</el-tooltip> </el-tooltip>
<!-- 隐藏的复制项 -->
<input type="text" v-model="item.Url" :id="'Copy'+index" style="display:none;">
</td> </td>
</tr> </tr>
</table> </table>
<!-- 隐藏的复制项 -->
<input type="text" v-model="hidInput" id="copyObj" style="opacity:0"> <input type="text" v-model="hidInput" id="copyObj" style="opacity:0">
<el-pagination background @current-change="handleCurrentChange" :current-page.sync="currentPage" <el-pagination background @current-change="handleCurrentChange" :current-page.sync="currentPage"
layout="total,prev, pager, next, jumper" :page-size="msg.pageSize" :total="total"> layout="total,prev, pager, next, jumper" :page-size="msg.pageSize" :total="total">
...@@ -295,16 +295,8 @@ ...@@ -295,16 +295,8 @@
}); });
}, },
//复制URL //复制URL
CopyUrl(item){ CopyUrl(id){
let Url=""; let url = document.querySelector('#'+id);
if(this.isOnline){
Url= window.location.hostname+'#/TravelContractConfirm?ContractId='+item.ID;
}
else{
Url= window.location.hostname+"/8080"+'#/TravelContractConfirm?ContractId='+item.ID;
}
this.hidInput=Url;
let url = document.querySelector('#copyObj');
url.select(); // 选择对象 url.select(); // 选择对象
document.execCommand("Copy"); document.execCommand("Copy");
}, },
...@@ -383,6 +375,16 @@ ...@@ -383,6 +375,16 @@
this.loading = false; this.loading = false;
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.dataList = res.data.data.pageData; this.dataList = res.data.data.pageData;
this.dataList.forEach(x=>{
let Url="";
if(this.isOnline()){
Url= window.location.hostname+'/#/TravelContractConfirm?ContractId='+x.ID;
}
else{
Url= window.location.hostname+":8080/"+'#/TravelContractConfirm?ContractId='+x.ID;
}
x.Url=Url;
})
this.total = res.data.data.count; this.total = res.data.data.count;
} else { } else {
this.Error(res.data.message); this.Error(res.data.message);
......
...@@ -333,6 +333,18 @@ ...@@ -333,6 +333,18 @@
background-color: #0044cc; background-color: #0044cc;
*background-color: #003bb3; *background-color: #003bb3;
} }
.TC-MainContent .disClick {
background-color: #d1d1d1!important;
color: #fff!important;
background-image: none;
border: 1px solid #d1d1d1!important;
}
.TC-MainContent .disClick:hover {
background-color: #d1d1d1 !important;
cursor: default !important;
box-shadow: none !important;
}
</style> </style>
<template> <template>
...@@ -351,7 +363,7 @@ ...@@ -351,7 +363,7 @@
<span style="color:blue;font-size:14px;"></span> <span style="color:blue;font-size:14px;"></span>
</span> </span>
<div class="pull-right"> <div class="pull-right">
<input type="button" v-if="CtObj.auditContract != 2" class="btn-warning" @click="submitForm('CtObj')" <input type="button" :class="{'disClick':!isSubmit}" class="btn-warning" @click="submitForm('CtObj')"
value="保存" /> value="保存" />
</div> </div>
</div> </div>
...@@ -1192,6 +1204,8 @@ ...@@ -1192,6 +1204,8 @@
], ],
ckedIndex: 0, ckedIndex: 0,
TripInfo: '', TripInfo: '',
//防止重复提交
isSubmit: true,
}; };
}, },
components: { components: {
...@@ -1205,20 +1219,24 @@ ...@@ -1205,20 +1219,24 @@
}, },
//提交数据 //提交数据
SaveMsg() { SaveMsg() {
this.apipost( if (this.isSubmit) {
"travelcontract_post_SetTravelContractService", this.isSubmit = false;
this.CtObj, this.apipost(
res => { "travelcontract_post_SetTravelContractService",
if (res.data.resultCode == 1) { this.CtObj,
this.CtObj.ID = res.data.data; res => {
this.GetData(); this.isSubmit = true;
this.Success(res.data.message); if (res.data.resultCode == 1) {
} else { this.CtObj.ID = res.data.data;
this.Error(res.data.message); this.GetData();
} this.Success(res.data.message);
}, } else {
err => {} this.Error(res.data.message);
); }
},
err => {}
);
}
}, },
//提交 //提交
......
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