|
|
|
@ -1,160 +1,184 @@ |
|
|
|
<template> |
|
|
|
|
|
|
|
<div class="field-box" @click="showSelect"> |
|
|
|
<el-avatar class="avater" :class="{'dashed-circle':avaterCpd.isNull}" :icon="avaterCpd.icon" :style="{backgroundColor:avaterCpd.color}">{{avaterCpd.innerText}}</el-avatar> |
|
|
|
|
|
|
|
<div class="field-info" > |
|
|
|
<span class="field-value" v-if="!avaterCpd.isNull">{{avaterCpd.innerText}} </span> |
|
|
|
<span class="field-value" v-else><span class="label-font-color">无</span></span> |
|
|
|
<span class="field-label" >{{label}}</span> |
|
|
|
<mdp-select-dict v-if="disabled!==true" :dict="dict" ref="selectRef" v-model="myVal" @change="onChange" :get-icon="getIcon" :get-color="getColor" :icon="icon"></mdp-select-dict> |
|
|
|
<slot name="avater" class="field-avater"> |
|
|
|
<el-avatar |
|
|
|
:class="{ 'dashed-circle': avaterCpd.isNull }" |
|
|
|
:icon="avaterCpd.icon" |
|
|
|
:style="{ backgroundColor: avaterCpd.color }" |
|
|
|
>{{ avaterCpd.innerText }}</el-avatar |
|
|
|
> |
|
|
|
</slot> |
|
|
|
|
|
|
|
<div class="field-info" :class="{disabled:disabled===true,enabled:disabled!==true}"> |
|
|
|
<slot name="info"> |
|
|
|
<span class="field-value" v-if="!avaterCpd.isNull" |
|
|
|
>{{ avaterCpd.innerText }} |
|
|
|
</span> |
|
|
|
<span class="field-value" v-else |
|
|
|
><span class="label-font-color">无</span></span |
|
|
|
> |
|
|
|
<span class="field-label">{{ label }}</span> |
|
|
|
</slot> |
|
|
|
</div> |
|
|
|
<div class="field-oper" :class="{disabled:disabled===true,enabled:disabled!==true}"> |
|
|
|
<slot name="oper"> |
|
|
|
<mdp-select-dict |
|
|
|
v-if="disabled !== true" |
|
|
|
:dict="dict" |
|
|
|
ref="selectRef" |
|
|
|
v-model="myVal" |
|
|
|
@change="onChange" |
|
|
|
:get-icon="getIcon" |
|
|
|
:get-color="getColor" |
|
|
|
:icon="icon" |
|
|
|
></mdp-select-dict> |
|
|
|
</slot> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script> |
|
|
|
|
|
|
|
|
|
|
|
import util from '@/common/js/util' |
|
|
|
export default { |
|
|
|
name: 'mdp-select-dict-x', |
|
|
|
components: { }, |
|
|
|
import util from "@/common/js/util"; |
|
|
|
export default { |
|
|
|
name: "mdp-select-dict-x", |
|
|
|
components: {}, |
|
|
|
computed: { |
|
|
|
currentItem(){ |
|
|
|
if(this.dict){ |
|
|
|
return this.dict.find(k=>k.id==this.myVal) |
|
|
|
}else{ |
|
|
|
currentItem() { |
|
|
|
if (this.dict) { |
|
|
|
return this.dict.find((k) => k.id == this.myVal); |
|
|
|
} else { |
|
|
|
return null; |
|
|
|
} |
|
|
|
}, |
|
|
|
avaterCpd(){ |
|
|
|
var currentItem = null |
|
|
|
if(this.dict){ |
|
|
|
currentItem= this.dict.find(k=>k.id==this.myVal) |
|
|
|
avaterCpd() { |
|
|
|
var currentItem = null; |
|
|
|
if (this.dict) { |
|
|
|
currentItem = this.dict.find((k) => k.id == this.myVal); |
|
|
|
} |
|
|
|
var isEmpty=this.isEmpty(this.myVal) |
|
|
|
var obj={isNull:isEmpty,icon:'el-icon-full-screen',color:'#E4E7ED',innerText:''} |
|
|
|
if(this.getColor||this.color){ |
|
|
|
if(this.getColor){ |
|
|
|
obj.color= this.getColor(this.myVal,currentItem,this.dict) |
|
|
|
}else{ |
|
|
|
obj.color=this.color |
|
|
|
var isEmpty = this.isEmpty(this.myVal); |
|
|
|
var obj = { |
|
|
|
isNull: isEmpty, |
|
|
|
icon: "el-icon-full-screen", |
|
|
|
color: "#E4E7ED", |
|
|
|
innerText: "", |
|
|
|
}; |
|
|
|
if (this.getColor || this.color) { |
|
|
|
if (this.getColor) { |
|
|
|
obj.color = this.getColor(this.myVal, currentItem, this.dict); |
|
|
|
} else { |
|
|
|
obj.color = this.color; |
|
|
|
} |
|
|
|
|
|
|
|
}else{ |
|
|
|
if(!isEmpty){ |
|
|
|
if(currentItem&¤tItem.color){ |
|
|
|
obj.color=currentItem.color |
|
|
|
}else{ |
|
|
|
obj.color= util.getColor(this.myVal) |
|
|
|
} else { |
|
|
|
if (!isEmpty) { |
|
|
|
if (currentItem && currentItem.color) { |
|
|
|
obj.color = currentItem.color; |
|
|
|
} else { |
|
|
|
obj.color = util.getColor(this.myVal); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
if(this.getIcon||this.icon){ |
|
|
|
if(this.getIcon){ |
|
|
|
obj.icon= this.getIcon(this.myVal,currentItem,this.dict) |
|
|
|
}else if(this.icon){ |
|
|
|
obj.icon=this.icon |
|
|
|
if (this.getIcon || this.icon) { |
|
|
|
if (this.getIcon) { |
|
|
|
obj.icon = this.getIcon(this.myVal, currentItem, this.dict); |
|
|
|
} else if (this.icon) { |
|
|
|
obj.icon = this.icon; |
|
|
|
} |
|
|
|
}else { |
|
|
|
if(!isEmpty){ |
|
|
|
if(currentItem && currentItem.icon){ |
|
|
|
obj.icon= currentItem.icon |
|
|
|
}else{ |
|
|
|
obj.icon='' |
|
|
|
} else { |
|
|
|
if (!isEmpty) { |
|
|
|
if (currentItem && currentItem.icon) { |
|
|
|
obj.icon = currentItem.icon; |
|
|
|
} else { |
|
|
|
obj.icon = ""; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
if(isEmpty){ |
|
|
|
obj.innerText='' |
|
|
|
}else{ |
|
|
|
if(currentItem==null){ |
|
|
|
obj.innerText=this.myVal |
|
|
|
}else{ |
|
|
|
obj.innerText=currentItem.name |
|
|
|
if (isEmpty) { |
|
|
|
obj.innerText = ""; |
|
|
|
} else { |
|
|
|
if (currentItem == null) { |
|
|
|
obj.innerText = this.myVal; |
|
|
|
} else { |
|
|
|
obj.innerText = currentItem.name; |
|
|
|
} |
|
|
|
} |
|
|
|
return obj; |
|
|
|
} |
|
|
|
}, |
|
|
|
data(){ |
|
|
|
}, |
|
|
|
data() { |
|
|
|
return { |
|
|
|
myVal:'', |
|
|
|
} |
|
|
|
myVal: "", |
|
|
|
}; |
|
|
|
}, |
|
|
|
watch:{ |
|
|
|
value:{ |
|
|
|
deep:true, |
|
|
|
handler(){ |
|
|
|
watch: { |
|
|
|
value: { |
|
|
|
deep: true, |
|
|
|
handler() { |
|
|
|
this.initData(); |
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
myVal(){ |
|
|
|
this.$emit('input',this.myVal) |
|
|
|
} |
|
|
|
myVal() { |
|
|
|
this.$emit("input", this.myVal); |
|
|
|
}, |
|
|
|
}, |
|
|
|
props: { |
|
|
|
|
|
|
|
disabled:{ |
|
|
|
type:Boolean, |
|
|
|
default:false, |
|
|
|
disabled: { |
|
|
|
type: Boolean, |
|
|
|
default: false, |
|
|
|
}, |
|
|
|
label:{ |
|
|
|
type:String, |
|
|
|
default:'' |
|
|
|
label: { |
|
|
|
type: String, |
|
|
|
default: "", |
|
|
|
}, |
|
|
|
clearable:{ |
|
|
|
type:Boolean, |
|
|
|
default:false, |
|
|
|
clearable: { |
|
|
|
type: Boolean, |
|
|
|
default: false, |
|
|
|
}, |
|
|
|
dict:{ |
|
|
|
type:Array, |
|
|
|
default:function(){return []} |
|
|
|
dict: { |
|
|
|
type: Array, |
|
|
|
default: function () { |
|
|
|
return []; |
|
|
|
}, |
|
|
|
value: { |
|
|
|
|
|
|
|
}, |
|
|
|
value: {}, |
|
|
|
|
|
|
|
icon:{ |
|
|
|
type:String, |
|
|
|
default:null, |
|
|
|
icon: { |
|
|
|
type: String, |
|
|
|
default: null, |
|
|
|
}, |
|
|
|
getIcon: { |
|
|
|
type: Function, |
|
|
|
}, |
|
|
|
getIcon:{ |
|
|
|
type:Function |
|
|
|
getColor: { |
|
|
|
type: Function, |
|
|
|
}, |
|
|
|
getColor:{ |
|
|
|
type:Function |
|
|
|
} , |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
showSelect(){ |
|
|
|
if(this.disabled){ |
|
|
|
showSelect() { |
|
|
|
if (this.disabled) { |
|
|
|
return; |
|
|
|
} |
|
|
|
if(this.$refs["selectRef"]){ |
|
|
|
if(this.$refs["selectRef"].$refs["selectRef"]){ |
|
|
|
if (this.$refs["selectRef"]) { |
|
|
|
if (this.$refs["selectRef"].$refs["selectRef"]) { |
|
|
|
this.$refs["selectRef"].$refs["selectRef"].toggleMenu(); |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
initData(){ |
|
|
|
this.myVal=this.value |
|
|
|
|
|
|
|
initData() { |
|
|
|
this.myVal = this.value; |
|
|
|
}, |
|
|
|
|
|
|
|
onChange(data){ |
|
|
|
this.$emit('change',data) |
|
|
|
onChange(data) { |
|
|
|
this.$emit("change", data); |
|
|
|
}, |
|
|
|
isEmpty(v) { |
|
|
|
switch (typeof v) { |
|
|
|
case 'undefined': |
|
|
|
case "undefined": |
|
|
|
return true; |
|
|
|
case 'string': |
|
|
|
if(v.length == 0) return true; |
|
|
|
case "string": |
|
|
|
if (v.length == 0) return true; |
|
|
|
break; |
|
|
|
case 'object': |
|
|
|
case "object": |
|
|
|
if (null === v || v.length === 0) return true; |
|
|
|
for (var i in v) { |
|
|
|
return false; |
|
|
|
@ -162,77 +186,16 @@ import util from '@/common/js/util' |
|
|
|
return true; |
|
|
|
} |
|
|
|
return false; |
|
|
|
} |
|
|
|
}, |
|
|
|
mounted(){ |
|
|
|
}, |
|
|
|
mounted() { |
|
|
|
this.initData(); |
|
|
|
} |
|
|
|
} |
|
|
|
</script> |
|
|
|
}, |
|
|
|
}; |
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.field-box { |
|
|
|
display: flex; |
|
|
|
margin-right:5px; |
|
|
|
align-items: center; |
|
|
|
cursor: pointer; |
|
|
|
height: 40px; |
|
|
|
line-height: 40px; |
|
|
|
.avater { |
|
|
|
background-color:#FF9F73; |
|
|
|
} |
|
|
|
|
|
|
|
.field-info { |
|
|
|
|
|
|
|
height: 40px; |
|
|
|
line-height: 40px; |
|
|
|
margin-left: 10px; |
|
|
|
display: flex; |
|
|
|
flex-direction: column; |
|
|
|
.field-value { |
|
|
|
height: 20px; |
|
|
|
line-height: 20px; |
|
|
|
font-size: 0.75rem; |
|
|
|
} |
|
|
|
.field-label{ |
|
|
|
height: 20px; |
|
|
|
line-height: 20px; |
|
|
|
font-size: 0.75rem; |
|
|
|
color: #C0C4CC; |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
.my-select{ |
|
|
|
height: 20px; |
|
|
|
line-height: 20px; |
|
|
|
margin-left: 5px; |
|
|
|
margin-right:5px; |
|
|
|
max-width: 250px; |
|
|
|
display: none; |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
.field-box:hover .field-label{ |
|
|
|
display: none; |
|
|
|
} |
|
|
|
.field-box:hover .my-select{ |
|
|
|
height: 20px; |
|
|
|
margin-left: 5px; |
|
|
|
display: inline; |
|
|
|
} |
|
|
|
.dashed-circle{ |
|
|
|
width:40px; |
|
|
|
height:40px; |
|
|
|
border:2px dashed #000000; |
|
|
|
border-radius:40px/40px; |
|
|
|
} |
|
|
|
.field-box:hover .dashed-circle{ |
|
|
|
|
|
|
|
border:2px dashed #409EFF; |
|
|
|
} |
|
|
|
@import '../Mdp/index.scss'; |
|
|
|
</style> |
|
|
|
|