| | |
| | | :key="item.value + ''" |
| | | :disable-transitions="true" |
| | | :index="index" |
| | | :type="item.elTagType === 'primary' || item.elTagType === 'default' ? 'primary' : item.elTagType" |
| | | :type=" |
| | | item.elTagType === 'primary' || |
| | | item.elTagType === 'success' || |
| | | item.elTagType === 'info' || |
| | | item.elTagType === 'warning' || |
| | | item.elTagType === 'danger' |
| | | ? item.elTagType |
| | | : 'primary' |
| | | " |
| | | :class="item.elTagClass" |
| | | > |
| | | {{ item.label + ' ' }} |
| | |
| | | > |
| | | <el-tag |
| | | v-else |
| | | :type="scope.row.listClass === 'primary' || scope.row.listClass === 'default' ? '' : scope.row.listClass" |
| | | :type="scope.row.listClass === 'primary' || scope.row.listClass === 'default' ? 'primary' : scope.row.listClass" |
| | | :class="scope.row.cssClass" |
| | | >{{ scope.row.dictLabel }}</el-tag |
| | | > |