|
@@ -1,24 +1,22 @@
|
|
|
<template>
|
|
|
<!-- 老日报预览 -->
|
|
|
- <div>
|
|
|
- <el-form :model="fromCreat" class="from-creat reportContent">
|
|
|
- <div style="display: flex; white-space: nowrap; font-family:SimSuncss">
|
|
|
- <span style="flex:1;font-weight: bold;font-size: 20px;color: #3a8ee6">{{ fromCreat.reportName }}</span>
|
|
|
- <span style="flex:2;margin: 0.5% 0 0 20px;font-size: 17px;">by {{ fromCreat.ownner }}</span>
|
|
|
+ <el-form :model="fromCreat" class="from-creat reportContent">
|
|
|
+ <div style="display: flex; white-space: nowrap; font-family:SimSuncss">
|
|
|
+ <span style="flex:1;font-weight: bold;font-size: 20px;color: #3a8ee6">{{ fromCreat.reportName }}</span>
|
|
|
+ <span style="flex:2;margin: 0.5% 0 0 20px;font-size: 17px;">by {{ fromCreat.ownner }}</span>
|
|
|
+ </div>
|
|
|
+ <div style="font-size:15px;color:#606266;line-height: 25px;" class="rich" v-html="projectProgress" />
|
|
|
+ <div class="titleStyle" style="margin-top: 10px;">三. bug情况</div>
|
|
|
+ <div style="border: 1px,solid #ccc;font-size:14px;color:#606266;padding-bottom: 20px;">
|
|
|
+ <div style="margin: 1%;">1、bug统计</div>
|
|
|
+ <div :class="{'space-between' : xaxisTotal < 8} ">
|
|
|
+ <div id="lineShow" :class="{'backTop' : xaxisTotal < 8,'backLeft' : xaxisTotal > 7}" />
|
|
|
+ <div id="barShow" :class="{'backTop' : xaxisTotal < 8, 'backLeft' : xaxisTotal > 7}" />
|
|
|
</div>
|
|
|
- <div style="font-size:15px;color:#606266;line-height: 25px;" class="rich" v-html="projectProgress" />
|
|
|
- <div class="titleStyle" style="margin-top: 10px;">三. bug情况</div>
|
|
|
- <div style="border: 1px,solid #ccc;font-size:14px;color:#606266;padding-bottom: 20px;">
|
|
|
- <div style="margin: 1%;">1、bug统计</div>
|
|
|
- <div :class="{'space-between' : xaxisTotal < 8} ">
|
|
|
- <div id="lineShow" :class="{'backTop' : xaxisTotal < 8,'backLeft' : xaxisTotal > 7}" />
|
|
|
- <div id="barShow" :class="{'backTop' : xaxisTotal < 8, 'backLeft' : xaxisTotal > 7}" />
|
|
|
- </div>
|
|
|
- <div style="margin: 1%;">2、bug说明:</div>
|
|
|
- <div class="pre-line">{{ bugshow }}</div>
|
|
|
- </div>
|
|
|
- </el-form>
|
|
|
- </div>
|
|
|
+ <div style="margin: 1%;">2、bug说明:</div>
|
|
|
+ <div class="pre-line">{{ bugshow }}</div>
|
|
|
+ </div>
|
|
|
+ </el-form>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
@@ -38,9 +36,7 @@ export default {
|
|
|
userInformation: localStorage.getItem('username'),
|
|
|
userNames: localStorage.getItem('realname'),
|
|
|
bugshow: '',
|
|
|
- postData: {},
|
|
|
fromCreat: {},
|
|
|
- TestProgress: '',
|
|
|
projectProgress: '',
|
|
|
dateList: [],
|
|
|
numList: [],
|
|
@@ -158,7 +154,7 @@ export default {
|
|
|
white-space: pre-line;
|
|
|
padding-left: 10px;
|
|
|
}
|
|
|
- .rich>>> table tr td{border:1px solid #ccc;font-size: 15px; color: #606266}
|
|
|
+ .rich>>> table tr td{border:1px solid #ccc;font-size: 15px; color: #606266}
|
|
|
.rich>>> table th{border:1px solid #ccc; font-size: 15px; background: #F0F7FF; color: #606266}
|
|
|
.rich>>> table {border:1px solid #ccc; border-collapse: collapse;line-height: 30px; text-align: center;font-size: 15px; color: #606266}
|
|
|
</style>
|