style(测试跟踪): 用例版本对比置灰样式优化
--bug=1022772 --user=陈建星 【测试跟踪】功能用例-设计验收问题汇总 https://www.tapd.cn/55049933/s/1342676
This commit is contained in:
parent
3b3c9ddd3c
commit
c6f39518ba
|
@ -63,7 +63,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="compare-row"
|
<div class="compare-row"
|
||||||
:class="{'compare-btn-disable': !compareBtnEnable}"
|
:class="{'compare-btn-disable': compareDisable}"
|
||||||
@click.stop="openCompare">
|
@click.stop="openCompare">
|
||||||
<div class="icon">
|
<div class="icon">
|
||||||
<img src="/assets/module/figma/icon_contrast_outlined.svg" alt=""/>
|
<img src="/assets/module/figma/icon_contrast_outlined.svg" alt=""/>
|
||||||
|
@ -196,7 +196,7 @@ export default {
|
||||||
enableCompare() {
|
enableCompare() {
|
||||||
return this.versionLeftId && this.versionRightId;
|
return this.versionLeftId && this.versionRightId;
|
||||||
},
|
},
|
||||||
compareBtnEnable() {
|
compareDisable() {
|
||||||
return this.versionCompareOptions || this.versionCompareOptions.length < 2;
|
return this.versionCompareOptions || this.versionCompareOptions.length < 2;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -209,7 +209,7 @@ export default {
|
||||||
this.clearSelectData();
|
this.clearSelectData();
|
||||||
},
|
},
|
||||||
openCompare() {
|
openCompare() {
|
||||||
if (!this.compareBtnEnable) {
|
if (this.compareDisable) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.setDefaultCompareOptions();
|
this.setDefaultCompareOptions();
|
||||||
|
@ -548,9 +548,9 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
color: #646a73;
|
||||||
.label {
|
.label {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
color: #646a73;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue