|
@@ -1,12 +1,12 @@
|
|
|
<template>
|
|
|
- <div class="sos" style="background-color:#F2F3F6;min-height:calc(100vh - 80px);padding:1% 0">
|
|
|
+ <div class="sos" style="background-color:#F2F3F6;min-height:calc(100vh - 80px);padding:10px">
|
|
|
<div class="stylus-head">
|
|
|
<div class="stylus-title">
|
|
|
<span style="font-size: 22px;letter-spacing: 1px;font-weight: 600;color: #333B4A;padding-left: 15px">需求</span>
|
|
|
<el-button type="primary" size="mini" @click="createDialogVisible = true">新建需求</el-button>
|
|
|
</div>
|
|
|
<el-divider style="color: #EEF0F5;" />
|
|
|
- <div class="Layout">
|
|
|
+ <div class="Layout" style="padding-top: 5px">
|
|
|
<div>
|
|
|
<el-form :model="searchForm" class="Layout">
|
|
|
<div class="Layout" style="padding-left:15px">
|
|
@@ -108,9 +108,9 @@
|
|
|
{{ scope.row.belongingProjectName }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column prop="pm" label="PM" min-width="100" show-overflow-tooltip align="center">
|
|
|
+ <el-table-column label="PM" min-width="100" show-overflow-tooltip align="center">
|
|
|
<template v-slot="scope">
|
|
|
- {{ scope.row.pm[0]?scope.row.pm[0].name:'无' }}
|
|
|
+ {{ scope.row.pm.name }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column prop="taskCount" min-width="100" label="任务总数" show-overflow-tooltip align="center" />
|
|
@@ -393,15 +393,16 @@ export default {
|
|
|
color #333333
|
|
|
font-weight 400
|
|
|
.stylus-content >>> .el-table .el-table__body tr:hover td
|
|
|
+ // color #409EFF !important
|
|
|
background #EDF6FF
|
|
|
.stylus-head >>> .el-divider--horizontal
|
|
|
margin 10px 0
|
|
|
.stylus-head >>> .el-form-item
|
|
|
margin-bottom 0
|
|
|
.stylus-head
|
|
|
- width 98%
|
|
|
- padding 1%
|
|
|
- margin:0 auto 1% auto
|
|
|
+ width 100%
|
|
|
+ padding 15px
|
|
|
+ margin-bottom: 10px
|
|
|
background-color white
|
|
|
border-radius 4px
|
|
|
.stylus-title
|
|
@@ -412,16 +413,17 @@ export default {
|
|
|
background rgba(252,252,252,1)
|
|
|
border-radius 4px
|
|
|
padding 15px
|
|
|
- min-height 110px
|
|
|
+ min-height 100px
|
|
|
margin-top 22px
|
|
|
border 1px solid rgba(238,238,238,1)
|
|
|
width 100%
|
|
|
.stylus-content
|
|
|
- width 98%
|
|
|
+ width 100%
|
|
|
padding 0.3% 1% 1% 1%
|
|
|
margin:0 auto
|
|
|
background-color white
|
|
|
border-radius 4px
|
|
|
+ min-height: calc(100vh - 209px);
|
|
|
.stylus-hover:hover
|
|
|
color #409EFF !important
|
|
|
cursor pointer
|