|
@@ -559,6 +559,7 @@ const editEtaBusiness = async () => {
|
|
|
|
|
|
// 编辑签约信息
|
|
|
const handleShowRenewal = (data) => {
|
|
|
+ renewalDiaTitle.value = "添加续约";
|
|
|
showRenewal.value = true;
|
|
|
};
|
|
|
|
|
@@ -595,19 +596,19 @@ const editRenewal = (row) => {
|
|
|
showRenewal.value = true;
|
|
|
};
|
|
|
|
|
|
-const handleAddRenewal = ({ signDate, expirationDate, id }) => {
|
|
|
- // 处理添加续约逻辑
|
|
|
- businessCustomInterence.editContract({
|
|
|
- EtaBusinessContractId: id || 0,
|
|
|
- EtaBusinessId: businessId.value,
|
|
|
- SigningTime: signDate,
|
|
|
- ExpiredTime: expirationDate,
|
|
|
- }).then(res=>{
|
|
|
- if(res.Ret!==200) return
|
|
|
- MessagePlugin.success('编辑续约成功')
|
|
|
- showRenewal.value = false
|
|
|
- getTableData()
|
|
|
- })
|
|
|
+const handleAddRenewal = async ({ signDate, expirationDate, id }) => {
|
|
|
+ // 处理续约逻辑
|
|
|
+ const params = {
|
|
|
+ EtaBusinessContractId: id || 0,
|
|
|
+ EtaBusinessId: businessId.value,
|
|
|
+ SigningTime: signDate,
|
|
|
+ ExpiredTime: expirationDate
|
|
|
+ }
|
|
|
+ const res = renewalDiaTitle.value === '编辑续约' ? await businessCustomInterence.editContract(params) : await businessCustomInterence.addNewContract(params);
|
|
|
+ if(res.Ret!==200) return
|
|
|
+ MessagePlugin.success(renewalDiaTitle.value === '编辑续约' ? '编辑续约成功' : '添加续约成功')
|
|
|
+ showRenewal.value = false
|
|
|
+ getTableData()
|
|
|
};
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|