Browse Source

优化

master
陈裕财 3 years ago
parent
commit
cbf5089a92
  1. 22
      src/views/xm/core/xmProduct/XmProductMng.vue
  2. 21
      src/views/xm/core/xmProject/XmProjectMng.vue

22
src/views/xm/core/xmProduct/XmProductMng.vue

@ -133,7 +133,7 @@
<div class="project-info">
<div class="info-task" title="已完成需求数 / 总需求数 ">
<span>
<span class="nums">
<span class="item-total finish-task">{{p.menuFinishCnt==null?0:p.menuFinishCnt}}</span>
<span style="margin: 0 .25rem !important;">/</span>
<span class="item-type total-task">{{p.menuCnt==null?0:p.menuCnt}}</span>
@ -853,7 +853,7 @@
</script>
<style scoped>
<style lang="scss" scoped>
.more-label-font{
@ -894,6 +894,7 @@
}
.project-info{
display: flex;
justify-content: space-around;
margin-top: 8px;
}
.project-info>div{
@ -911,10 +912,15 @@
font-size: 18px;
color: #666;
}
.info-task{
padding-left: 20px;
width: 70%;
border-left: 1px solid #efefef;
.info-task{
span{
display: flex;
justify-content:center;
}
.item-type{
align-content: center;
text-align: center;
}
}
.finish-task{
color: #00abfc !important;
@ -937,10 +943,10 @@
display: flex;
}
.project-footer>div{
width: 30%;
width: 50%;
}
.project-footer>div:not(:first-child){
width: 70%;
width: 50%;
}
.project-period{
line-height: 40px;

21
src/views/xm/core/xmProject/XmProjectMng.vue

@ -940,10 +940,8 @@
</script>
<style scoped>
* >>> .sub-navbar{
background: #fafbfc;
}
<style lang="scss" scoped>
.changebtn{
float: right;
padding: 2px 10px;
@ -1009,6 +1007,7 @@
.project-info{
display: flex;
margin-top: 8px;
justify-content: space-around;
}
.project-info>div{
display: flex;
@ -1025,10 +1024,16 @@
font-size: 18px;
color: #666;
}
.info-task{
padding-left: 20px;
width: 70%;
border-left: 1px solid #efefef;
.info-task{
span{
display: flex;
justify-content:center;
}
.item-type{
align-content: center;
text-align: center;
}
}
.finish-task{
color: #00abfc !important;

Loading…
Cancel
Save