和光同尘

提示

以下是将您提供的信息整理成清晰、简洁的格式,方便发送给领导:


提示信息汇总

一、System Type Expand、TDD Channel Config、BTS Channel Config 提示

  1. 未选择项时提示
    点击 Add 按钮时提示:

    this.$Message.showDialog('Notification', this.$t('message.selectItemTip'));

    提示内容:Please select at least one

  2. SysType Channel 最大支持项数限制
    点击 Add 按钮时提示:

    this.$Message.showDialog('Notification', tipByChannel);
  3. 选项重复提示
    点击 AddChange 按钮时提示:

    this.$Message.showDialog('Notification', this.$t('message.selectRepeatTip'));

    提示内容:There have options, not repeatable choice

  4. TDD Channel Config 最大支持项数限制
    点击 Add 按钮时提示:

    this.$Message.showDialog('Notification', tipByTddChannel);
  5. BTS Channel Config 最大支持项数限制
    点击 Add 按钮时提示:

    this.$Message.showDialog('Notification', `${this.$t('message.supportTip')}${16}${this.$t('message.choiceTip')}`);

二、通用设置

  1. 数字整数提示
    值设置时提示(非点击 Set 按钮时):

    this.$Message.showDialog('Notification', this.$t('message.integerTip'));

    提示内容:Support only integer data

  2. 一位小数提示
    值设置时提示(非点击 Set 按钮时):

    this.$Message.showDialog('Notification', this.$t('message.decimalTip'));

    提示内容:Please enter a value with only one decimal place.

  3. 文本超出最大支持长度提示
    值设置时提示(非点击 Set 按钮时):

    this.$Message.showDialog('Notification', `${entry.name} supports a maximum length of ${supportLen}`);
  4. 监控量超出范围提示
    值设置时提示(非点击 Set 按钮时):

    this.$Message.showDialog('Notification', this.$t('message.outRange'));
  5. 输入框包含中文及全角字符提示
    值设置时提示(非点击 Set 按钮时):

    this.$Message.showDialog('Notification', this.$t('message.cnTip'));

三、特殊处理

  1. IP 地址格式校验提示
    值设置时提示(非点击 Set 按钮时):

    this.$Message.showDialog('Notification', `${entry.name} value: ${entry.setValue} invalid !`);
  2. MAC 地址格式校验提示
    值设置时提示(非点击 Set 按钮时):

    this.$Message.showDialog('Notification', `${entry.name} value: ${entry.setValue} invalid !`);
  3. WEB Access Enable 提示
    值设置为 Enable 时提示:

    this.$Message.showDialog('Confirm', this.$t('message.webAccessTip'), true);
  4. AlarmPara 的 EnableAll 和 DisableAll 按钮提示
    点击按钮时提示:

    this.$Message.showDialog('Confirm', this.$t('message.enableAllTip'), true);
    this.$Message.showDialog('Confirm', this.$t('message.disableAllTip'), true);
  5. EngineeringCmd 提示
    点击按钮时提示:

    this.$Message.showDialog('Confirm', this.$t('message.cmdConfirmTip'), true);
  6. BandLicense 提示
    点击 Set 按钮时提示:

    this.$Message.showDialog('Confirm', this.$t('message.bandDisableTip'), true);
    this.$Message.showDialog('Confirm', this.$t('message.bandEnableTip'), true);
  7. VSWR Protection 和 Downlink Switch 提示
    点击 Set 按钮时提示:

    this.$Message.showDialog('Warning', this.$t('message.vswrProtectionTip'), true);
    this.$Message.showDialog('Warning', this.$t('message.downlinkSwitchTip'), true);

总结

以上信息按照功能模块分类整理,涵盖了系统配置、通用设置以及特殊处理的提示逻辑和代码实现。请领导审阅并确认是否需要补充或调整。


希望这份整理清晰明了,便于领导快速了解内容!

添加新评论