Browse Source

界面优化

master
陈裕财 4 years ago
parent
commit
a8602157b6
  1. 12
      src/views/xm/core/xmIteration/XmIterationInfo.vue
  2. 5
      src/views/xm/core/xmProduct/XmProductInfo.vue
  3. 6
      src/views/xm/core/xmProject/XmProjectInfo.vue

12
src/views/xm/core/xmIteration/XmIterationInfo.vue

@ -3,13 +3,11 @@
<el-row>
<el-menu :default-active="infotype" mode="horizontal" @select="setInfotype" class="menus" background-color="rgb(48, 65, 86)" text-color="rgb(191, 203, 217)" active-text-color="#409eff">
<el-menu-item index="返回" >
<span slot="title" >
<span slot="title" @click.stop="goBack"><i class="el-icon-back" ></i></span>
</span>
<el-menu-item index="返回" >
<span slot="title"><i class="el-icon-back" ></i></span>
</el-menu-item>
<el-menu-item index="迭代概览" >
<span slot="title" style="font-size:18px;">
<span slot="title" style="font-size:18px;color:#409eff;">
<font v-if="xmIteration.iterationName.length>=15"><strong>迭代:&nbsp;&nbsp;{{xmIteration.iterationName.substring(0,15)}}</strong></font>
<font type="danger" v-else><strong>迭代:&nbsp;&nbsp;{{xmIteration.iterationName}}</strong></font>
</span>
@ -277,6 +275,10 @@
},
setInfotype(infotype){
this.infotype=infotype;
if(infotype=='返回'){
this.goBack()
}
},
handleExport() {
this.downloadLoading = true

5
src/views/xm/core/xmProduct/XmProductInfo.vue

@ -8,7 +8,7 @@
</span>
</el-menu-item>
<el-menu-item index="产品概览" >
<span slot="title" style="font-size:18px;">
<span slot="title" style="font-size:18px;color:#409eff;">
<font v-if="xmProduct.productName.length>=15"> <strong> 产品:&nbsp;&nbsp;{{xmProduct.productName.substring(0,15)}}</strong></font>
<font type="danger" v-else> <strong>产品:&nbsp;&nbsp;{{xmProduct.productName}}</strong></font>
</span>
@ -276,6 +276,9 @@ import XmProjectForLink from '../xmProject/XmProjectForLink.vue';
},
setInfotype(infotype){
this.infotype=infotype;
if(infotype=='返回'){
this.goBack()
}
},
handleExport() {
this.downloadLoading = true

6
src/views/xm/core/xmProject/XmProjectInfo.vue

@ -8,7 +8,7 @@
</span>
</el-menu-item>
<el-menu-item index="项目概览" >
<span slot="title" style="font-size:18px;">
<span slot="title" style="font-size:18px;color:#ffd04b">
<font v-if="selProject.name.length>=15"><strong>项目:&nbsp;&nbsp;{{selProject.name.substring(0,15)}}</strong></font>
<font type="danger" v-else><strong>项目:&nbsp;&nbsp;{{selProject.name}}</strong></font>
</span>
@ -279,6 +279,10 @@
},
setInfotype(infotype){
this.infotype=infotype;
if(infotype=='返回'){
this.goBack()
}
},
handleExport() {
this.downloadLoading = true

Loading…
Cancel
Save