Commit 05d7436d authored by huangjie's avatar huangjie

*

parent ec15499a
<template> <template>
<div> <div>
<el-card class="box-card noborder"> <el-card class="box-card noborder">
<div class="cardtitles" v-if="showtype != 'projectgjdt'">跟进记录</div> <div class="cardtitles">跟进记录</div>
<div style="height: 24px" v-if="showtype == 'projectgjdt'"></div> <!--<div style="height: 24px" v-if="showtype == 'projectgjdt'"></div>-->
<div class="records"> <div class="records">
<div class="writeIn" v-if="isDisableds == false"> <div class="writeIn" v-if="isDisableds == false">
<div class="default" v-if="isEdit == false" @click="getEdit"> <div class="default" v-if="isEdit == false" @click="getEdit">
...@@ -87,6 +87,13 @@ ...@@ -87,6 +87,13 @@
</div> </div>
<div class="recordlist" v-if="showtype=='gjjl' || showtype == 'projectgjdt' && recordlist.total>0"> <div class="recordlist" v-if="showtype=='gjjl' || showtype == 'projectgjdt' && recordlist.total>0">
<div class="rec_detail" v-for="(item,index) in recordlist.rows"> <div class="rec_detail" v-for="(item,index) in recordlist.rows">
<div class="delform" v-if="isdel && delID == item.id">
<div class="words">是否删除该条记录</div>
<div>
<div class="btnsmall btn_primary h28" @click="delele">确定</div>
<div class="btnsmall btn_cancel h28" @click="isdel=false">取消</div>
</div>
</div>
<div class="rec_time"> <div class="rec_time">
<i class="el-icon-time"></i> <i class="el-icon-time"></i>
...@@ -174,6 +181,7 @@ ...@@ -174,6 +181,7 @@
userId:this.$store.state.user.userId,//当前用户id userId:this.$store.state.user.userId,//当前用户id
projectList:[],//关联项目 projectList:[],//关联项目
isDisableds:this.isDisabled, isDisableds:this.isDisabled,
keys:1,
} }
}, },
computed: { computed: {
...@@ -270,6 +278,7 @@ ...@@ -270,6 +278,7 @@
delRecord(id){ delRecord(id){
this.isdel = true this.isdel = true
this.delID = id this.delID = id
this.keys++;
}, },
delele(){ delele(){
if(this.types == 'gjdt') { if(this.types == 'gjdt') {
...@@ -381,6 +390,9 @@ ...@@ -381,6 +390,9 @@
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.app-main{
overflow: initial !important;
}
.el-card{ .el-card{
overflow: initial; overflow: initial;
} }
......
...@@ -21,5 +21,4 @@ export default { ...@@ -21,5 +21,4 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
</style> </style>
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