|
|
@ -41,6 +41,13 @@ |
|
|
|
v-if="pageTypeCopy == 'dispose' || pageTypeCopy == 'info'" |
|
|
|
class="g-page" |
|
|
|
> |
|
|
|
<!-- 面包屑放到这里--> |
|
|
|
<div class="tabs" v-if="pageTypeCopy == 'info'"> |
|
|
|
<i class="el-icon-arrow-left"></i> |
|
|
|
<el-button class="diy-button--white" style="height: 20px" @click="handleClose"> |
|
|
|
查看详情</el-button |
|
|
|
> |
|
|
|
</div> |
|
|
|
<div :class="['g-total', { 'g-left': projectProcess.length > 0 }]"> |
|
|
|
<event-detail |
|
|
|
ref="ref_detail" |
|
|
@ -58,7 +65,7 @@ |
|
|
|
v-if="!eventDetailData.operationId && pageTypeCopy == 'dispose'" |
|
|
|
class="process-form" |
|
|
|
> |
|
|
|
<el-card :class="{ 'box-card': source === 'visiual' }"> |
|
|
|
<el-card :class="{ 'box-card': source === 'visiual' }"> |
|
|
|
<div |
|
|
|
:class="[ |
|
|
|
'process-title', |
|
|
@ -91,7 +98,7 @@ |
|
|
|
<div v-if="projectProcess.length > 0" class="g-right"> |
|
|
|
<el-card |
|
|
|
:class="{ 'box-card': source === 'visiual' }" |
|
|
|
style="max-height: 90vh; overflow: auto" |
|
|
|
style="min-height: calc(88vh - 50px); overflow: auto" |
|
|
|
> |
|
|
|
<div class="m-process"> |
|
|
|
<div |
|
|
@ -100,7 +107,7 @@ |
|
|
|
{ 'process-title-vis': source === 'visiual' }, |
|
|
|
]" |
|
|
|
> |
|
|
|
处理进展 |
|
|
|
<img src="../../../../../assets/images/index/title-icon-cljz.png" width="30px" height="30px" alt=""> 处理进展 |
|
|
|
</div> |
|
|
|
<div class="list"> |
|
|
|
<div |
|
|
@ -544,8 +551,8 @@ export default { |
|
|
|
} else { |
|
|
|
this.$message.error(msg); |
|
|
|
} |
|
|
|
}else if(this.formData.operationType == ''){ |
|
|
|
this.$message.error('请选择处理方式!') |
|
|
|
} else if (this.formData.operationType == "") { |
|
|
|
this.$message.error("请选择处理方式!"); |
|
|
|
} |
|
|
|
}, |
|
|
|
|
|
|
@ -683,4 +690,35 @@ export default { |
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
@import "@/assets/scss/modules/shequzhili/event-info.scss"; |
|
|
|
.tabs { |
|
|
|
position: absolute; |
|
|
|
margin-left: 30px; |
|
|
|
height: 50px; |
|
|
|
line-height: 50px; |
|
|
|
.diy-button--white { |
|
|
|
border: none !important; |
|
|
|
color: rgba(0,0,0,0.65) !important; |
|
|
|
height: 30px !important; |
|
|
|
padding: 0 12px!important; |
|
|
|
margin-left: 10px; |
|
|
|
} |
|
|
|
} |
|
|
|
.list{ |
|
|
|
&>:first-child{// |
|
|
|
border: none !important; |
|
|
|
.name{ |
|
|
|
background: url('../../../../../assets/images/index/bubble.png') no-repeat; |
|
|
|
color: #fff !important; |
|
|
|
padding: 0px 10px 3px 13px!important; |
|
|
|
background-size: 100% 100%; |
|
|
|
border: none !important; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
.g-left { |
|
|
|
margin-top: 40px; |
|
|
|
} |
|
|
|
.g-right { |
|
|
|
margin-top: 40px; |
|
|
|
} |
|
|
|
</style> |
|
|
|