fix:assetBox 补充国际化

This commit is contained in:
zhangyu
2022-03-25 14:25:13 +08:00
parent 5b276cf845
commit f2b055f20f
2 changed files with 3 additions and 3 deletions

View File

@@ -35,8 +35,8 @@
<el-select v-model="editAsset.stateId" class="right-box__select" :placeholder="$t('el.select.placeholder')" popper-class="right-box-select-top prevent-clickoutside" size="small" value-key="id">
<el-option v-for="state in options.stateOptions" :key="state.id" :label="state.name" :value="state.id">
<div style="display: flex;justify-content: space-between;padding: 5px;">
<div>{{state.name}}</div>
<div style="width: 450px;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;color: #999999" :title="state.remark">{{state.remark}}</div>
<div>{{$t(state.name)}}</div>
<div style="width: 450px;text-overflow: ellipsis;overflow: hidden;white-space: nowrap;color: #999999" :title="state.remark">{{$t(state.remark)}}</div>
</div>
</el-option>
</el-select>