fix:修改排序以及输入框长度

This commit is contained in:
zhangyu
2020-10-20 13:50:09 +08:00
parent 50704630eb
commit d8dc6d1883
4 changed files with 7 additions and 7 deletions

View File

@@ -107,8 +107,8 @@ export const alertMessage = {
{value: 3, label: i18n.t('alert.config.typeOption.asset')}
],
levels:[
{value: 'P2', label: i18n.t("alert.config.P2")},
{value: 'P1', label: i18n.t("alert.config.P1")},
{value: 'P2', label: i18n.t("alert.config.P2")},
{value: 'P3', label: i18n.t("alert.config.P3")}
],
states:[

View File

@@ -185,7 +185,7 @@
<el-col class="expr-title" style="">
{{$t('project.topology.chartName')}}
</el-col>
<el-col style="width: calc(100% - 140px);">
<el-col style="width: calc(100% - 122px);">
<el-input
v-model="form.name[index-1]"
type="text"

View File

@@ -71,7 +71,7 @@
<el-col class="expr-title" style="">
{{$t('project.topology.chartName')}}
</el-col>
<el-col style="width: calc(100% - 140px);">
<el-col style="width: calc(100% - 122px);">
<el-input
v-model="form.name[index-1]"
type="text"

View File

@@ -2,14 +2,14 @@
import i18n from './i18n';
const searchSelectInfo = { // value: 传给后台的值label显示给用户看的值
severity: [ //告警级别
{
value: 'P2',
label: i18n.t("alert.config.P2")
},
{
value: 'P1',
label: i18n.t("alert.config.P1")
},
{
value: 'P2',
label: i18n.t("alert.config.P2")
},
{
value: 'P3',
label: i18n.t("alert.config.P3")