|
|
|
@ -1578,12 +1578,6 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div class="operate_btn">
|
|
|
|
|
<el-button @click="goBack">返回</el-button>
|
|
|
|
|
<el-button v-if="pageType == 'edit'" @click="submitForm">暂存</el-button>
|
|
|
|
|
<el-button v-if="pageType == 'edit'" type="success" @click="submitForm">提交</el-button>
|
|
|
|
|
<el-button v-if="pageType == 'detail'" @click="printOutpdf" class="btn">导出申报信息</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="right_content">
|
|
|
|
|
<div class="left_title">
|
|
|
|
@ -1606,10 +1600,10 @@
|
|
|
|
|
暂无审批流程
|
|
|
|
|
</p>
|
|
|
|
|
<div v-if="pageType == 'detail'">
|
|
|
|
|
<div class="step_contain" v-for="item in approvalInfoList" :key="item.id">
|
|
|
|
|
<div class="step_contain" :class="item.approvalStatus == 0 ? 'step_contain_one' : 'step_contain'" v-for="item in approvalInfoList" :key="item.id">
|
|
|
|
|
<span class="drop_style">
|
|
|
|
|
</span>
|
|
|
|
|
<span class="out_drop_style">
|
|
|
|
|
<span class="out_drop_style" :class="item.approvalStatus == 0 ? 'out_drop_style_one' : ''">
|
|
|
|
|
</span>
|
|
|
|
|
<div class="contain_main">
|
|
|
|
|
<div>{{ item.approvalByName }}</div>
|
|
|
|
@ -1660,12 +1654,12 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- <div class="operate_btn">
|
|
|
|
|
<div class="operate_btn">
|
|
|
|
|
<el-button @click="goBack">返回</el-button>
|
|
|
|
|
<el-button v-if="pageType == 'edit'" @click="submitForm">暂存</el-button>
|
|
|
|
|
<el-button v-if="pageType == 'edit'" type="success" @click="submitForm">提交</el-button>
|
|
|
|
|
<el-button v-if="pageType == 'detail'" @click="printOutpdf" class="btn">导出申报信息</el-button>
|
|
|
|
|
</div> -->
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
@ -1867,6 +1861,12 @@ export default {
|
|
|
|
|
})
|
|
|
|
|
this.getDetailInfo(detailId)
|
|
|
|
|
},
|
|
|
|
|
filters: {
|
|
|
|
|
dealURL : (value)=>{
|
|
|
|
|
let arr = value.split("/")
|
|
|
|
|
return arr[arr.length - 1]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
goBack() {
|
|
|
|
|
this.$router.go(-1)
|
|
|
|
@ -2877,9 +2877,9 @@ list-style: none; /* 清除列表项前的标记 */
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
align-content: space-between;
|
|
|
|
|
.upload_li {
|
|
|
|
|
width: 45%;
|
|
|
|
|
// width: 45%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
// justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0 5px;
|
|
|
|
|
color: inherit;
|
|
|
|
@ -2926,9 +2926,9 @@ list-style: none; /* 清除列表项前的标记 */
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding: 0 15px;
|
|
|
|
|
.upload_li {
|
|
|
|
|
width: 45%;
|
|
|
|
|
// width: 45%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
// justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0 30px 0 5px;
|
|
|
|
|
color: inherit;
|
|
|
|
@ -2964,22 +2964,27 @@ list-style: none; /* 清除列表项前的标记 */
|
|
|
|
|
</style>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.addContent {
|
|
|
|
|
height: calc(100vh - 100px);
|
|
|
|
|
// height: calc(100vh - 100px);
|
|
|
|
|
// height: calc(100% - 10px);
|
|
|
|
|
height: 100%;
|
|
|
|
|
// padding: 10px 10px 0 10px;
|
|
|
|
|
background-color: #f6f7f9;
|
|
|
|
|
.detail_content {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
height: calc(100vh - 140px);
|
|
|
|
|
// height: calc(100vh - 160px);
|
|
|
|
|
height: calc(100% - 40px);
|
|
|
|
|
.left_content {
|
|
|
|
|
height: calc(100vh - 140px);
|
|
|
|
|
// height: calc(100vh - 160px);
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 69.5%;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
}
|
|
|
|
|
.right_content {
|
|
|
|
|
height: calc(100vh - 140px);
|
|
|
|
|
// height: calc(100vh - 160px);
|
|
|
|
|
height: 100%;
|
|
|
|
|
width: 30%;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
.left_main {
|
|
|
|
@ -3003,12 +3008,23 @@ list-style: none; /* 清除列表项前的标记 */
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
.tab_content {
|
|
|
|
|
height: calc(100vh - 220px);
|
|
|
|
|
// height: calc(100vh - 240px);
|
|
|
|
|
height: calc(100% - 77px);
|
|
|
|
|
// overflow: auto;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
::v-deep .el-tabs__content {
|
|
|
|
|
padding: 0;
|
|
|
|
|
height: calc(100% - 50px);
|
|
|
|
|
.el-tab-pane {
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.empty {
|
|
|
|
|
height: calc(100vh - 260px);
|
|
|
|
|
// height: calc(100vh - 300px);
|
|
|
|
|
// height: calc(100% - 100px);
|
|
|
|
|
height: 100%;
|
|
|
|
|
padding: 10px 15px 0 15px;
|
|
|
|
|
overflow: auto;
|
|
|
|
|
.top {
|
|
|
|
|
font-size: 12px;
|
|
|
|
@ -3036,16 +3052,20 @@ list-style: none; /* 清除列表项前的标记 */
|
|
|
|
|
box-shadow: 0 0 10px #ccc;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.out_drop_style {
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 6px;
|
|
|
|
|
height: 6px;
|
|
|
|
|
top: 6px;
|
|
|
|
|
left: -3px;
|
|
|
|
|
background-color: #4eb997;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 6px;
|
|
|
|
|
height: 6px;
|
|
|
|
|
top: 6px;
|
|
|
|
|
left: -3px;
|
|
|
|
|
background-color: #4eb997;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
.out_drop_style_one {
|
|
|
|
|
background-color: #000;
|
|
|
|
|
}
|
|
|
|
|
.contain_main {
|
|
|
|
|
background-color: #f8fafb;
|
|
|
|
|
color: #192A92;
|
|
|
|
@ -3102,14 +3122,20 @@ list-style: none; /* 清除列表项前的标记 */
|
|
|
|
|
height: 80px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.step_contain_one {
|
|
|
|
|
border: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.operate_btn {
|
|
|
|
|
text-align: center;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
padding-bottom: 20px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding-top: 10px;
|
|
|
|
|
// padding-bottom: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form {
|
|
|
|
@ -3165,6 +3191,8 @@ list-style: none; /* 清除列表项前的标记 */
|
|
|
|
|
border: none;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
-webkit-box-shadow: none;
|
|
|
|
|
// height: calc(100vh - 240px);
|
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
@ -3173,17 +3201,17 @@ list-style: none; /* 清除列表项前的标记 */
|
|
|
|
|
color: #000;
|
|
|
|
|
}
|
|
|
|
|
/* 悬浮 */
|
|
|
|
|
::v-deep .el-button:hover {
|
|
|
|
|
/* background: linear-gradient(#0165eb, #018ff2, #00b7f9) !important; */
|
|
|
|
|
background: linear-gradient(100deg, #f1d78c, #f1c19d) !important;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #606266;
|
|
|
|
|
}
|
|
|
|
|
// ::v-deep .el-button:hover {
|
|
|
|
|
// /* background: linear-gradient(#0165eb, #018ff2, #00b7f9) !important; */
|
|
|
|
|
// background: linear-gradient(100deg, #f1d78c, #f1c19d) !important;
|
|
|
|
|
// font-weight: bold;
|
|
|
|
|
// color: #606266;
|
|
|
|
|
// }
|
|
|
|
|
/*按钮点击*/
|
|
|
|
|
::v-deep .el-button:focus {
|
|
|
|
|
background: linear-gradient(100deg, #f1d78c, #f1c19d) !important;
|
|
|
|
|
/* background: linear-gradient(#0165eb, #018ff2, #00b7f9) !important; */
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #606266;
|
|
|
|
|
}
|
|
|
|
|
// ::v-deep .el-button:focus {
|
|
|
|
|
// background: linear-gradient(100deg, #f1d78c, #f1c19d) !important;
|
|
|
|
|
// /* background: linear-gradient(#0165eb, #018ff2, #00b7f9) !important; */
|
|
|
|
|
// font-weight: bold;
|
|
|
|
|
// color: #606266;
|
|
|
|
|
// }
|
|
|
|
|
</style>
|
|
|
|
|