|
@@ -32,12 +32,12 @@
|
|
|
</span>
|
|
|
<span style="float: right;">
|
|
|
<el-button size="mini" @click="dele_pro()">删除项目</el-button>
|
|
|
- <el-dropdown>
|
|
|
+ <el-dropdown placement="bottom" style="margin-left: 10px;">
|
|
|
<el-button size="mini" type="primary">
|
|
|
新建
|
|
|
<i class="el-icon-arrow-down el-icon--right" />
|
|
|
</el-button>
|
|
|
- <el-dropdown-menu slot="dropdown">
|
|
|
+ <el-dropdown-menu slot="dropdown" >
|
|
|
<el-dropdown-item @click.native="createDialogVisible = true">新建需求</el-dropdown-item>
|
|
|
<el-dropdown-item @click.native="reated_task()">新建任务</el-dropdown-item>
|
|
|
</el-dropdown-menu>
|
|
@@ -49,7 +49,7 @@
|
|
|
<el-row :gutter="20">
|
|
|
<el-col :span="20">
|
|
|
<div style="display:flex;align-items: center;margin-bottom:20px;margin: 10px 0 50px 20px;">
|
|
|
- <div style="width:4px;height:17px;background:rgba(64,158,255,1);border-radius:1px;" />
|
|
|
+ <div style="width:4px;height:17px;background:#409EFF;border-radius:1px;" />
|
|
|
<div style="width:83px;height:20px;font-size:18px;font-family:MicrosoftYaHei;color:rgba(51,59,74,1);margin-left:6px">数据统计</div>
|
|
|
</div>
|
|
|
</el-col>
|
|
@@ -82,7 +82,7 @@
|
|
|
<el-container>
|
|
|
<el-main class="bgborder" style="margin: 0 2.1% 0 0;min-height: 50vh;overflow-x: hidden;">
|
|
|
<div style="display:flex;align-items: center;margin-bottom:20px;margin: 20px 0 20px 20px;">
|
|
|
- <div style="width:4px;height:17px;background:rgba(64,158,255,1);border-radius:1px;" />
|
|
|
+ <div style="width:4px;height:17px;background:#409EFF;border-radius:1px;" />
|
|
|
<div style="width:83px;height:20px;font-size:18px;font-family:MicrosoftYaHei;color:rgba(51,59,74,1);margin-left:6px">基础信息</div>
|
|
|
</div>
|
|
|
<el-form
|
|
@@ -230,7 +230,7 @@
|
|
|
<el-container>
|
|
|
<el-aside class="bgborder" style="margin:0 1% 1% 1%;">
|
|
|
<div style="display:flex;align-items: center;margin-bottom:20px;margin: 20px 0 20px 17px;">
|
|
|
- <div style="width:4px;height:17px;background:rgba(64,158,255,1);border-radius:1px;" />
|
|
|
+ <div style="width:4px;height:17px;background:#409EFF;border-radius:1px;" />
|
|
|
<div style="width:83px;height:20px;font-size:18px;font-family:MicrosoftYaHei;color:rgba(51,59,74,1);margin-left:6px">任务筛选</div>
|
|
|
</div>
|
|
|
<div ref="all_tasks" class="aside" style="color: #333B4A;" @click="get_allTask">全部任务</div>
|
|
@@ -287,7 +287,7 @@
|
|
|
<el-container>
|
|
|
<el-main class="bgborder" style=" margin: 0 1.3% 1.3% 0;min-height: 50vh;">
|
|
|
<div style="display:flex;align-items: center;margin-bottom:20px;margin: 20px 0 20px 20px;">
|
|
|
- <div style="width:4px;height:17px;background:rgba(64,158,255,1);border-radius:1px;" />
|
|
|
+ <div style="width:4px;height:17px;background:#409EFF;border-radius:1px;" />
|
|
|
<div style="width:83px;height:20px;font-size:18px;font-family:MicrosoftYaHei;color:rgba(51,59,74,1);margin-left:6px">任务列表</div>
|
|
|
</div>
|
|
|
<el-table
|
|
@@ -315,7 +315,7 @@
|
|
|
<el-table-column label="测试负责人" min-width="100" align="center" show-overflow-tooltip>
|
|
|
<template slot-scope="scope">{{ scope.row.qaObject === null ? '' : scope.row.qaObject.name }}</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="任务进度" min-width="150" align="center">
|
|
|
+ <el-table-column label="任务进度" min-width="150" align="left">
|
|
|
<template slot-scope="scope">
|
|
|
<el-progress :percentage="Number(scope.row.rate && scope.row.rate.substring(0,4))" color="#409eff" />
|
|
|
</template>
|
|
@@ -1244,7 +1244,7 @@ export default {
|
|
|
|
|
|
.bgborder .el-table .el-table__body tr:hover td { /* hover时字体, 背景颜色 */
|
|
|
color: #409EFF;
|
|
|
- background: #EEF0F5;
|
|
|
+ background: #EDF6FF;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
|