Browse Source

优化

master
陈裕财 3 years ago
parent
commit
3e6ddbf402
  1. 12
      src/views/xm/core/xmProject/XmProjectOverview.vue
  2. 4
      src/views/xm/core/xmTestPlan/XmTestPlanMng.vue

12
src/views/xm/core/xmProject/XmProjectOverview.vue

@ -13,7 +13,7 @@
</el-row> </el-row>
</el-row> </el-row>
<el-row style="margin-bottom:10px"> <el-row style="margin-bottom:10px">
<el-col :span="8" @click="">
<el-col :span="8">
<div class="item"> <div class="item">
<div class="icon" style="background-color: rgb(79, 140, 255);"> <div class="icon" style="background-color: rgb(79, 140, 255);">
<i class="el-icon-right"></i> <i class="el-icon-right"></i>
@ -460,7 +460,7 @@ export default {
graphic: { graphic: {
type: 'text', type: 'text',
left: 'center', left: 'center',
top: 'center',
top: '40%',
style: { style: {
// text: '', // text: '',
text: text:
@ -520,7 +520,7 @@ export default {
graphic: { graphic: {
type: 'text', type: 'text',
left: 'center', left: 'center',
top: 'center',
top: '40%',
style: { style: {
// text: '', // text: '',
text: text:
@ -579,7 +579,7 @@ export default {
graphic: { graphic: {
type: 'text', type: 'text',
left: 'center', left: 'center',
top: 'center',
top: '40%',
style: { style: {
// text: '', // text: '',
text: text:
@ -636,7 +636,7 @@ export default {
graphic: { graphic: {
type: 'text', type: 'text',
left: 'center', left: 'center',
top: 'center',
top: '40%',
style: { style: {
// text: '', // text: '',
text: text:
@ -777,7 +777,7 @@ export default {
graphic: { graphic: {
type: 'text', type: 'text',
left: 'center', left: 'center',
top: 'center',
top: '40%',
style: { style: {
// text: '', // text: '',
text: text:

4
src/views/xm/core/xmTestPlan/XmTestPlanMng.vue

@ -24,9 +24,9 @@
--> -->
<el-table-column prop="name" label="计划名称" min-width="250"> <el-table-column prop="name" label="计划名称" min-width="250">
<template slot-scope="scope"> <template slot-scope="scope">
<span> <el-link @click="goToTestPlanCase(scope.row)"> {{scope.row.name}}</el-link> </span>
<span> <el-link type="primary" @click="goToTestPlanCase(scope.row)"> {{scope.row.name}}</el-link> </span>
<span class="tool-bar"> <span class="tool-bar">
<el-button type="primary" @click="goToTestPlanCase(scope.row)" icon="el-icon-finished" circle title="规划用例"></el-button>
<el-button type="primary" @click="showEdit(scope.row)" icon="el-icon-edit" circle title="编辑"></el-button>
</span> </span>
</template> </template>
</el-table-column> </el-table-column>

Loading…
Cancel
Save