30931
This commit is contained in:
@@ -184,7 +184,7 @@ export default {
|
|||||||
applicationId: this.forms.applicationId,
|
applicationId: this.forms.applicationId,
|
||||||
name: this.forms.name,
|
name: this.forms.name,
|
||||||
visitTime: this.forms.visitTime,
|
visitTime: this.forms.visitTime,
|
||||||
optionId: this.forms.optionId,
|
residentId: this.forms.residentId,
|
||||||
// menuLevel3Name: this.forms.menuLevel3Name,
|
// menuLevel3Name: this.forms.menuLevel3Name,
|
||||||
applicationId: this.forms.applicationId,
|
applicationId: this.forms.applicationId,
|
||||||
|
|
||||||
|
|||||||
@@ -5,9 +5,12 @@
|
|||||||
|
|
||||||
<div class="walk-item">
|
<div class="walk-item">
|
||||||
<span>走访对象:</span>
|
<span>走访对象:</span>
|
||||||
<span>
|
<span class="info-value">
|
||||||
{{ data.name }}
|
{{ data.name }}
|
||||||
<span class="tags" v-if="data.applicationId">{{ $dict.getLabel('appSpecialTypeFive', data.applicationId) }}</span>
|
<span v-if="data.labelList">
|
||||||
|
<span class="tags" v-for="(item, index) in data.labelList" :key="index">{{ item }}</span>
|
||||||
|
</span>
|
||||||
|
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -68,6 +71,7 @@ export default {
|
|||||||
this.data = res.data
|
this.data = res.data
|
||||||
if (this.data.images) {
|
if (this.data.images) {
|
||||||
this.data.images = JSON.parse(this.data.images || '[]')
|
this.data.images = JSON.parse(this.data.images || '[]')
|
||||||
|
this.data.labelList = this.data.labels.split(',') || []
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
@@ -111,7 +115,10 @@ uni-page-body {
|
|||||||
height: 40px;
|
height: 40px;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
border: 1px solid #ffffff;
|
border: 1px solid #ffffff;
|
||||||
margin-left: 16px;
|
margin: 0 8px 8px 0;
|
||||||
|
}
|
||||||
|
.tags:nth-of-type(1) {
|
||||||
|
margin-left: 8px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -140,5 +147,11 @@ uni-page-body {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.info-value{
|
||||||
|
display: inline-block;
|
||||||
|
width: 540px;
|
||||||
|
word-break: break-all;
|
||||||
|
vertical-align: text-top;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user