[update]
This commit is contained in:
@@ -1018,6 +1018,7 @@ module.exports = {
|
||||
Synchronizedatabase: 'Synchronize the data of the selected row to the database?',
|
||||
Aftersynchronization: 'After synchronization, the parameter items cannot be modified. Only the collection can be redistributed. The parameters have been updated',
|
||||
FNumber: 'Number',
|
||||
NNNiONumber: 'Number',
|
||||
NNiONumber: 'NIO Number',
|
||||
NRequired: 'Is Must',
|
||||
NParameterName: 'Params Name',
|
||||
|
||||
@@ -1023,6 +1023,7 @@ module.exports = {
|
||||
Synchronizedatabase: '是否同步选中行数据至上报库?',
|
||||
Aftersynchronization: '同步后的参数项将不可修改,仅能重新下发收集,已更新参数',
|
||||
FNumber: '账号',
|
||||
NNNiONumber: 'NIO编号',
|
||||
NNiONumber: 'NIO编号',
|
||||
NRequired: '是否必填',
|
||||
NParameterName: '参数名称',
|
||||
|
||||
@@ -236,13 +236,13 @@
|
||||
<div class="title-text">
|
||||
<span class="Required">*</span>
|
||||
<span class="title-text-text"
|
||||
:title="$t('NNiONumber')">{{$t('NNiONumber')}}</span>
|
||||
:title="$t('NNNiONumber')">{{$t('NNNiONumber')}}</span>
|
||||
</div>
|
||||
<a-form-model-item class="itemModel">
|
||||
<a-input class="box-input"
|
||||
:disabled="disabled"
|
||||
v-model="item.paramsNumber"
|
||||
:placeholder="$t('PleaseEnter')+$t('NNiONumber')"/>
|
||||
:placeholder="$t('PleaseEnter')+$t('NNNiONumber')"/>
|
||||
</a-form-model-item>
|
||||
</div>
|
||||
</a-col>
|
||||
|
||||
@@ -251,7 +251,7 @@ export default {
|
||||
let flag = 1
|
||||
this.paramsConfigEOList.forEach((item) => {
|
||||
// 配置名称
|
||||
if(item.configName == ''){
|
||||
if(item.configName.trim() == ''){
|
||||
this.$message.warning(this.$t('configurationName')+this.$t('cannotEmpty'))
|
||||
flag = 0
|
||||
return
|
||||
@@ -261,7 +261,7 @@ export default {
|
||||
return
|
||||
}
|
||||
// 车型
|
||||
if(item.carType == ''){
|
||||
if(item.carType.trim() == ''){
|
||||
this.$message.warning(this.$t('Model')+this.$t('cannotEmpty'))
|
||||
flag = 0
|
||||
return
|
||||
@@ -271,7 +271,7 @@ export default {
|
||||
return
|
||||
}
|
||||
// 版本
|
||||
if(item.version == ''){
|
||||
if(item.version.trim() == ''){
|
||||
this.$message.warning(this.$t('Version')+this.$t('cannotEmpty'))
|
||||
flag = 0
|
||||
return
|
||||
@@ -281,7 +281,7 @@ export default {
|
||||
return
|
||||
}
|
||||
// 电池
|
||||
if(item.battery == ''){
|
||||
if(item.battery.trim() == ''){
|
||||
this.$message.warning(this.$t('Battery')+this.$t('cannotEmpty'))
|
||||
flag = 0
|
||||
return
|
||||
@@ -291,7 +291,7 @@ export default {
|
||||
return
|
||||
}
|
||||
// 电机
|
||||
if(item.motor == ''){
|
||||
if(item.motor.trim() == ''){
|
||||
this.$message.warning(this.$t('electricMachinery')+this.$t('cannotEmpty'))
|
||||
flag = 0
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user