Commit f9d58e4c authored by 潘永坪's avatar 潘永坪

样式修改

parent cbf32fcc
...@@ -1558,9 +1558,6 @@ export default { ...@@ -1558,9 +1558,6 @@ export default {
border-radius: 5rpx; border-radius: 5rpx;
position: relative; position: relative;
margin: 20rpx 15rpx 0 0; margin: 20rpx 15rpx 0 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} }
.plus-list-last { .plus-list-last {
color: $theme; color: $theme;
......
...@@ -118,8 +118,12 @@ export default { ...@@ -118,8 +118,12 @@ export default {
this.credentialNumber = newValue.credentialNumber||'' this.credentialNumber = newValue.credentialNumber||''
this.reviseContactId = newValue.id||'' this.reviseContactId = newValue.id||''
this.phone=newValue.phone||'' this.phone=newValue.phone||''
// 不加双竖线的原因是,防止是0时,变成空 if(typeof newValue.credentialType === 'undefined'){
this.credentialType=newValue.credentialType //补充证件信息时,没有证件类型,直接置为空
this.credentialType=''
}else{
this.credentialType=newValue.credentialType
}
}, },
deep: true, deep: true,
immediate: true immediate: true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment