提交 f4c05be2 编写于 作者: KK's avatar KK

代码表颜色、图标

上级 13c8a4ee
<template>
<div class="app-mob-span">
<ion-input v-if="!codeListType" readonly :value="text" ></ion-input>
<ion-input v-if="codeListType == 'DYNAMIC'" readonly :value="($t('userCustom.'+tag+'.'+value)!== ('userCustom.'+tag+'.'+value))?$t('userCustom.'+tag+'.'+value) : text" ></ion-input>
<ion-input v-if="codeListType == 'STATIC'" readonly :value="($t('codelist.'+tag+'.'+value)!== ('codelist.'+tag+'.'+value))?$t('codelist.'+tag+'.'+value) : text" ></ion-input>
<ion-icon v-if="currentItem && currentItem.iconcls" :name="currentItem.iconcls"></ion-icon><ion-input :style="{color:currentItem && currentItem.color?currentItem.color:''}" v-if="!codeListType" readonly :value="text" ></ion-input>
<ion-input :style="{color:currentItem && currentItem.color?currentItem.color:''}" v-if="codeListType == 'DYNAMIC'" readonly :value="($t('userCustom.'+tag+'.'+value)!== ('userCustom.'+tag+'.'+value))?$t('userCustom.'+tag+'.'+value) : text" ></ion-input>
<ion-input :style="{color:currentItem && currentItem.color?currentItem.color:''}" v-if="codeListType == 'STATIC'" readonly :value="($t('codelist.'+tag+'.'+value)!== ('codelist.'+tag+'.'+value))?$t('codelist.'+tag+'.'+value) : text" ></ion-input>
</div>
</template>
......@@ -119,6 +119,14 @@ export default class AppSpan extends Vue {
*/
@Prop({ default: {} }) protected context?: any;
/**
* 当前值项
*
* @type {*}
* @memberof AppSpan
*/
public currentItem :any = {};
/**
* 监控值
......@@ -167,11 +175,11 @@ export default class AppSpan extends Vue {
*/
public setText(){
if(this.items.length>0){
let currentItem:any = this.items.find((item:any)=>{
this.currentItem= this.items.find((item:any)=>{
return item.value == this.value;
});
if(currentItem){
this.text = currentItem.text;
if(this.currentItem){
this.text = this.currentItem.text;
}else{
// 不匹配显示原值,不存在显示空值
if(this.value){
......@@ -188,5 +196,6 @@ export default class AppSpan extends Vue {
<style lang="less">
.app-mob-span{
width: 100%;
display: flex;
}
</style>
\ No newline at end of file
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册