优化 文字描述

This commit is contained in:
YuanFeng 2024-10-24 00:33:12 +08:00
parent 7f7acfea0c
commit 0e67114e15
3 changed files with 23 additions and 2 deletions

View File

@ -242,7 +242,7 @@ const rightKeyMenu = computed(() => {
value: 'clearGroup',
icon: 'icon-lk_cell_clear',
disabled: disabledMenu.value,
label: '清除属性',
label: '取消变量',
handler: (item) => {
const cells = that.selectedCellsList
if (cells.length === 0) {

View File

@ -85,7 +85,28 @@
<span>{{ scope.$index + 1 }}</span>
</template>
</el-table-column>
<el-table-column prop="locale" label="地区语言" width="180">
<template #header>
<div>
<span class="color-red">*</span>
<span>地区语言</span>
</div>
</template>
<template #default="scope">
<div
:class="{ 'duplicate-tips' : duplicateCheck(scope.row.locale) }">
<el-select v-model="scope.row.locale" placeholder="地区语言">
<el-option
v-for="dict in getStrDictOptions(DICT_TYPE.LANGUAGE_LOCALE)"
:key="`${dict.value}`"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</div>
</template>
</el-table-column>
<el-table-column prop="value">
<template #header>

View File

@ -242,7 +242,7 @@ const rightKeyMenu = computed(() => {
value: 'clearGroup',
icon: 'icon-lk_cell_clear',
disabled: disabledMenu.value,
label: '清除属性',
label: '取消变量',
handler: (item) => {
const cells = that.selectedCellsList
if (cells.length === 0) {