|
@@ -95,6 +95,7 @@
|
|
|
</el-form>
|
|
|
</div>
|
|
|
<div class="second-step-form-wrap" v-show="step===2">
|
|
|
+ <el-button type="primary" @click="addRenewalHandle" style="margin-top: 15px;">添加续约</el-button>
|
|
|
<el-table :data="recordData" border>
|
|
|
<el-table-column
|
|
|
v-for="item in tableColOpts"
|
|
@@ -104,8 +105,14 @@
|
|
|
align="center"
|
|
|
>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column label="操作" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span class="editsty" @click="editRenewal(scope.row)" style="padding: 0 3px;">编辑</span>
|
|
|
+ <span class="deletesty" @click="deleteRenewal(scope.row)" style="padding: 0 3px;">删除</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
</el-table>
|
|
|
- <el-button type="text" @click="showRenewal=true">添加续约</el-button>
|
|
|
+ <!-- <el-button type="text" @click="showRenewal=true">添加续约</el-button> -->
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="business-other">
|
|
@@ -133,7 +140,7 @@
|
|
|
|
|
|
<!-- 添加续约 -->
|
|
|
<el-dialog
|
|
|
- title="添加续约"
|
|
|
+ :title="renewalDiaTitle"
|
|
|
:visible.sync="showRenewal"
|
|
|
:modal-append-to-body="false"
|
|
|
:close-on-click-modal="false"
|
|
@@ -142,7 +149,8 @@
|
|
|
>
|
|
|
<AddRenewal
|
|
|
@addRenewal="handleAddRenewal"
|
|
|
- @close="showRenewal=false"/>
|
|
|
+ @close="showRenewal=false"
|
|
|
+ :renewalForm="renewalForm"/>
|
|
|
</el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -204,7 +212,7 @@ export default {
|
|
|
recordData:[],
|
|
|
tableColOpts:[
|
|
|
{
|
|
|
- label:'签约时间',
|
|
|
+ label:'运维时间',
|
|
|
key:'SigningTime'
|
|
|
},{
|
|
|
label:'到期时间',
|
|
@@ -216,6 +224,8 @@ export default {
|
|
|
],
|
|
|
activities:[],
|
|
|
showRenewal:false,
|
|
|
+ renewalDiaTitle:"添加续约",
|
|
|
+ renewalForm:{}
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
@@ -294,12 +304,42 @@ export default {
|
|
|
this.getBusinessDetail()
|
|
|
})
|
|
|
},
|
|
|
- //添加续约
|
|
|
- handleAddRenewal({signDate,expirationDate}){
|
|
|
+ // 添加续约
|
|
|
+ addRenewalHandle(){
|
|
|
+ this.renewalForm={}
|
|
|
+ this.renewalDiaTitle="添加续约"
|
|
|
+ this.showRenewal=true
|
|
|
+ },
|
|
|
+ // 编辑续约
|
|
|
+ editRenewal(row){
|
|
|
+ this.renewalDiaTitle="编辑续约"
|
|
|
+ this.renewalForm={
|
|
|
+ id:row.EtaBusinessContractId,
|
|
|
+ signDate:row.SigningTime,
|
|
|
+ expirationDate:row.ExpiredTime,
|
|
|
+ remark:row.Remark,
|
|
|
+ }
|
|
|
+ this.showRenewal=true
|
|
|
+ },
|
|
|
+ deleteRenewal(row){
|
|
|
+ this.$confirm("是否确认删除该签约信息?", "提示", {
|
|
|
+ type: "warning"
|
|
|
+ }).then(() => {
|
|
|
+ //TODO: 删除签约信息对接
|
|
|
+ this.$message.success("删除成功")
|
|
|
+ this.getTableData(Number(this.$route.query.id))
|
|
|
+ this.getTimeLineData(Number(this.$route.query.id))
|
|
|
+ }).catch(() => {});
|
|
|
+ },
|
|
|
+ //添加续约-保存
|
|
|
+ handleAddRenewal({signDate,expirationDate,remark,id}){
|
|
|
+ console.log({signDate,expirationDate,remark,id});
|
|
|
+ return
|
|
|
businessCustomInterence.addNewContract({
|
|
|
EtaBusinessId:Number(this.$route.query.id),
|
|
|
SigningTime:signDate,
|
|
|
- ExpiredTime:expirationDate
|
|
|
+ ExpiredTime:expirationDate,
|
|
|
+ Remark:remark
|
|
|
}).then(res=>{
|
|
|
if(res.Ret!==200) return
|
|
|
this.$message.success('添加续约成功')
|
|
@@ -345,7 +385,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
.el-table{
|
|
|
- margin-top: 30px;
|
|
|
+ margin-top: 15px;
|
|
|
}
|
|
|
}
|
|
|
.business-other{
|