This commit is contained in:
changjinpeng
2022-03-08 16:01:05 +08:00
parent ada0a811dc
commit 7ae0d6bfb5
2 changed files with 3 additions and 6 deletions

View File

@@ -93,7 +93,7 @@ export default {
methods: {
getList() {
this.$http
.post('/app/appvillageactivityinfo/list', null, {
.post('/app/appvillageactivityinfo/listUp', null, {
params: {
size: this.size,
current: this.current,

View File

@@ -97,13 +97,10 @@
<!-- 字典值 items.dictionaryCode -->
<!-- 单下拉框 -->
<span class="msg_lright" v-if="items.fieldDataType == 9">
{{ $dict.getDict(items.dictionaryCode, items.fieldValue)[$dict.getLabel(items.dictionaryCode, items.fieldValue)].dictName }}
</span>
<span class="msg_lright" v-if="items.fieldDataType != 5 && items.fieldDataType != 9">{{ $dict.getLabel(items.dictionaryCode, items.fieldValue) }}</span>
<span class="msg_lright" v-if="items.fieldDataType != 5">{{ $dict.getLabel(items.dictionaryCode, items.fieldValue) }}</span>
<span class="msg_lright" v-if="items.fieldDataType == 5 && items.fieldDataType != 9">
<span class="msg_lright" v-if="items.fieldDataType == 5">
<span v-for="(itemL, indexL) in items.fieldValue" :key="indexL">{{ $dict.getLabel(items.dictionaryCode, itemL) }} </span>
</span>
</div>