|
|
@@ -58,7 +58,7 @@
|
|
|
<div class="condition-one" @click.stop="ruleitemEdit(item)">
|
|
|
<div class="dispatch-item" v-for="(row, index) in sectionGroup" :key="row.id">
|
|
|
<div class="min-w-100px">
|
|
|
- {{ row.attrCodeName || "未设置属性" }}
|
|
|
+ {{ row.attrCodeName || "未设置属性" }}
|
|
|
</div>
|
|
|
<div class="opera">
|
|
|
{{ row.operatorDesc }}
|
|
|
@@ -95,11 +95,16 @@
|
|
|
{{
|
|
|
Array.isArray(row.attrDesc)
|
|
|
? row.attrDesc.join(",")
|
|
|
- : row.attrDesc || "无"
|
|
|
+ : row.attrDesc ?? "无"
|
|
|
+ }}
|
|
|
+ </template>
|
|
|
+ <template v-else-if="['select','radio','inputNumber'].includes(row.attrType)">
|
|
|
+ {{
|
|
|
+ row.minName ?? "无"
|
|
|
}}
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
- {{ row.maxName }}
|
|
|
+ {{ row.maxName ?? "无" }}
|
|
|
</template>
|
|
|
</div>
|
|
|
</div>
|