[update] 中英文
This commit is contained in:
@@ -1012,4 +1012,16 @@ module.exports = {
|
|||||||
Synchronizedatabase: 'Synchronize the data of the selected row to the database?',
|
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',
|
Aftersynchronization: 'After synchronization, the parameter items cannot be modified. Only the collection can be redistributed. The parameters have been updated',
|
||||||
FNumber: 'Number',
|
FNumber: 'Number',
|
||||||
|
NNiONumber: 'NIO Number',
|
||||||
|
NRequired: 'Is Must',
|
||||||
|
NParameterName: 'Params Name',
|
||||||
|
NtechnicalField: 'Technical Field',
|
||||||
|
NparameterBatch: 'Params Batch',
|
||||||
|
NareaOfResponsibility: 'Duty Territory',
|
||||||
|
NParameterDescription: 'Description',
|
||||||
|
NcertificationCategory: 'Cert Category',
|
||||||
|
NcontrolType: 'Control Type',
|
||||||
|
NcontrolVerification: 'Control Verify',
|
||||||
|
NcontrolAlternatives: 'Control Values',
|
||||||
|
NattachmentTemplate: 'File Template',
|
||||||
}
|
}
|
||||||
@@ -1017,4 +1017,16 @@ module.exports = {
|
|||||||
Synchronizedatabase: '是否同步选中行数据至上报库?',
|
Synchronizedatabase: '是否同步选中行数据至上报库?',
|
||||||
Aftersynchronization: '同步后的参数项将不可修改,仅能重新下发收集,已更新参数',
|
Aftersynchronization: '同步后的参数项将不可修改,仅能重新下发收集,已更新参数',
|
||||||
FNumber: '账号',
|
FNumber: '账号',
|
||||||
|
NNiONumber: 'NIO编号',
|
||||||
|
NRequired: '是否必填',
|
||||||
|
NParameterName: '参数名称',
|
||||||
|
NtechnicalField: '技术领域',
|
||||||
|
NparameterBatch: '参数批次',
|
||||||
|
NareaOfResponsibility: '责任领域',
|
||||||
|
NParameterDescription: '参数说明',
|
||||||
|
NcertificationCategory: '认证类别',
|
||||||
|
NcontrolType: '控件类型',
|
||||||
|
NcontrolVerification: '控件校验',
|
||||||
|
NcontrolAlternatives: '控件备选值',
|
||||||
|
NattachmentTemplate: '附件模板',
|
||||||
}
|
}
|
||||||
@@ -17,13 +17,13 @@
|
|||||||
<div class="title-text">
|
<div class="title-text">
|
||||||
<span class="Required">*</span>
|
<span class="Required">*</span>
|
||||||
<span class="title-text-text"
|
<span class="title-text-text"
|
||||||
:title="$t('NiONumber')">{{$t('NiONumber')}}</span>
|
:title="$t('NNiONumber')">{{$t('NNiONumber')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel" prop="nioNumber">
|
<a-form-model-item class="itemModel" prop="nioNumber">
|
||||||
<a-input class="box-input"
|
<a-input class="box-input"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
v-model="formInline.nioNumber"
|
v-model="formInline.nioNumber"
|
||||||
:placeholder="$t('PleaseEnter')+$t('NiONumber')"/>
|
:placeholder="$t('PleaseEnter')+$t('NNiONumber')"/>
|
||||||
</a-form-model-item>
|
</a-form-model-item>
|
||||||
</div>
|
</div>
|
||||||
</a-col>
|
</a-col>
|
||||||
@@ -31,10 +31,10 @@
|
|||||||
<div class="box-title-text">
|
<div class="box-title-text">
|
||||||
<div class="title-text">
|
<div class="title-text">
|
||||||
<span class="Required">*</span>
|
<span class="Required">*</span>
|
||||||
<span class="title-text-text" :title="$t('Required')">{{$t('Required')}}</span>
|
<span class="title-text-text" :title="$t('NRequired')">{{$t('NRequired')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel" prop="isMust">
|
<a-form-model-item class="itemModel" prop="isMust">
|
||||||
<a-select allowClear :placeholder="$t('PleaseSelect')+$t('Required')" v-model='formInline.isMust'>
|
<a-select allowClear :placeholder="$t('PleaseSelect')+$t('NRequired')" v-model='formInline.isMust'>
|
||||||
<a-select-option :key="'1'" :value="'1'">{{$t('yes')}}
|
<a-select-option :key="'1'" :value="'1'">{{$t('yes')}}
|
||||||
</a-select-option>
|
</a-select-option>
|
||||||
<a-select-option :key="'0'" :value="'0'">{{$t('notOnlyRz')}}
|
<a-select-option :key="'0'" :value="'0'">{{$t('notOnlyRz')}}
|
||||||
@@ -50,13 +50,13 @@
|
|||||||
<div class="title-text">
|
<div class="title-text">
|
||||||
<span class="Required">*</span>
|
<span class="Required">*</span>
|
||||||
<span class="title-text-text"
|
<span class="title-text-text"
|
||||||
:title="$t('ParameterName')">{{$t('ParameterName')}}</span>
|
:title="$t('NParameterName')">{{$t('NParameterName')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel" prop="paramsName">
|
<a-form-model-item class="itemModel" prop="paramsName">
|
||||||
<a-input class="box-input"
|
<a-input class="box-input"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
v-model="formInline.paramsName"
|
v-model="formInline.paramsName"
|
||||||
:placeholder="$t('PleaseEnter')+$t('ParameterName')"/>
|
:placeholder="$t('PleaseEnter')+$t('NParameterName')"/>
|
||||||
</a-form-model-item>
|
</a-form-model-item>
|
||||||
</div>
|
</div>
|
||||||
</a-col>
|
</a-col>
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
<div class="box-title-text">
|
<div class="box-title-text">
|
||||||
<div class="title-text">
|
<div class="title-text">
|
||||||
<span class="Required">*</span>
|
<span class="Required">*</span>
|
||||||
<span class="title-text-text" :title="$t('technicalField')">{{$t('technicalField')}}</span>
|
<span class="title-text-text" :title="$t('NtechnicalField')">{{$t('NtechnicalField')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel" prop="technologyTerritory">
|
<a-form-model-item class="itemModel" prop="technologyTerritory">
|
||||||
<a-tree-select
|
<a-tree-select
|
||||||
@@ -76,7 +76,7 @@
|
|||||||
style="width: 100%"
|
style="width: 100%"
|
||||||
:tree-data="CategoryTreeList"
|
:tree-data="CategoryTreeList"
|
||||||
tree-checkable
|
tree-checkable
|
||||||
:placeholder="$t('PleaseSelect')+$t('technicalField')"
|
:placeholder="$t('PleaseSelect')+$t('NtechnicalField')"
|
||||||
/>
|
/>
|
||||||
</a-form-model-item>
|
</a-form-model-item>
|
||||||
</div>
|
</div>
|
||||||
@@ -88,12 +88,12 @@
|
|||||||
<div class="title-text">
|
<div class="title-text">
|
||||||
<span class="Required">*</span>
|
<span class="Required">*</span>
|
||||||
<span class="title-text-text"
|
<span class="title-text-text"
|
||||||
:title="$t('parameterBatch')">{{$t('parameterBatch')}}</span>
|
:title="$t('NparameterBatch')">{{$t('NparameterBatch')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel" prop="paramsBatch">
|
<a-form-model-item class="itemModel" prop="paramsBatch">
|
||||||
<j-dict-select-tag class="box-input" v-model="formInline.paramsBatch"
|
<j-dict-select-tag class="box-input" v-model="formInline.paramsBatch"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
:placeholder="$t('PleaseSelect')+$t('parameterBatch')"
|
:placeholder="$t('PleaseSelect')+$t('NparameterBatch')"
|
||||||
:type="'select'"
|
:type="'select'"
|
||||||
:triggerChange="false" :dictCode="'params_batch'"/>
|
:triggerChange="false" :dictCode="'params_batch'"/>
|
||||||
</a-form-model-item>
|
</a-form-model-item>
|
||||||
@@ -103,12 +103,12 @@
|
|||||||
<div class="box-title-text">
|
<div class="box-title-text">
|
||||||
<div class="title-text">
|
<div class="title-text">
|
||||||
<span class="Required">*</span>
|
<span class="Required">*</span>
|
||||||
<span class="title-text-text" :title="$t('areaOfResponsibility')">{{$t('areaOfResponsibility')}}</span>
|
<span class="title-text-text" :title="$t('NareaOfResponsibility')">{{$t('NareaOfResponsibility')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel" prop="dutyTerritory">
|
<a-form-model-item class="itemModel" prop="dutyTerritory">
|
||||||
<j-dict-select-tag class="box-input" v-model="formInline.dutyTerritory"
|
<j-dict-select-tag class="box-input" v-model="formInline.dutyTerritory"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
:placeholder="$t('PleaseSelect')+$t('areaOfResponsibility')"
|
:placeholder="$t('PleaseSelect')+$t('NareaOfResponsibility')"
|
||||||
:type="'select'"
|
:type="'select'"
|
||||||
:triggerChange="false" :dictCode="'duty_territory'"/>
|
:triggerChange="false" :dictCode="'duty_territory'"/>
|
||||||
</a-form-model-item>
|
</a-form-model-item>
|
||||||
@@ -120,7 +120,7 @@
|
|||||||
<div class="box-title-text">
|
<div class="box-title-text">
|
||||||
<div class="title-text">
|
<div class="title-text">
|
||||||
<span class="title-text-text"
|
<span class="title-text-text"
|
||||||
:title="$t('ParameterDescription')">{{$t('ParameterDescription')}}</span>
|
:title="$t('NParameterDescription')">{{$t('NParameterDescription')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel" prop="description">
|
<a-form-model-item class="itemModel" prop="description">
|
||||||
<a-input class="box-input add-input"
|
<a-input class="box-input add-input"
|
||||||
@@ -128,7 +128,7 @@
|
|||||||
type="textarea"
|
type="textarea"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
v-model="formInline.description"
|
v-model="formInline.description"
|
||||||
:placeholder="$t('PleaseEnter')+$t('ParameterDescription')"/>
|
:placeholder="$t('PleaseEnter')+$t('NParameterDescription')"/>
|
||||||
</a-form-model-item>
|
</a-form-model-item>
|
||||||
</div>
|
</div>
|
||||||
</a-col>
|
</a-col>
|
||||||
@@ -139,14 +139,14 @@
|
|||||||
<div class="title-text">
|
<div class="title-text">
|
||||||
<span class="Required">*</span>
|
<span class="Required">*</span>
|
||||||
<span class="title-text-text"
|
<span class="title-text-text"
|
||||||
:title="$t('ParameterName')">{{$t('certificationCategory')}}</span>
|
:title="$t('NcertificationCategory')">{{$t('NcertificationCategory')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel-multi" prop="certCategory">
|
<a-form-model-item class="itemModel-multi" prop="certCategory">
|
||||||
<j-multi-select-tag-only-rz class="box-input" v-model="formInline.certCategory"
|
<j-multi-select-tag-only-rz class="box-input" v-model="formInline.certCategory"
|
||||||
@change='Onchange'
|
@change='Onchange'
|
||||||
v-on:changelabel='Onchangelabel'
|
v-on:changelabel='Onchangelabel'
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
:placeholder="$t('PleaseSelect')+$t('certificationCategory')"
|
:placeholder="$t('PleaseSelect')+$t('NcertificationCategory')"
|
||||||
:type="'checkbox'"
|
:type="'checkbox'"
|
||||||
:triggerChange="false" :dictCode="'cert_category'"/>
|
:triggerChange="false" :dictCode="'cert_category'"/>
|
||||||
</a-form-model-item>
|
</a-form-model-item>
|
||||||
@@ -159,10 +159,10 @@
|
|||||||
<div class="title-text">
|
<div class="title-text">
|
||||||
<span class="Required">*</span>
|
<span class="Required">*</span>
|
||||||
<span class="title-text-text"
|
<span class="title-text-text"
|
||||||
:title="$t('controlType')">{{$t('controlType')}}</span>
|
:title="$t('NcontrolType')">{{$t('NcontrolType')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel" prop="controlType">
|
<a-form-model-item class="itemModel" prop="controlType">
|
||||||
<a-select :placeholder="$t('PleaseSelect')+$t('controlType')" allowClear v-model="formInline.controlType">
|
<a-select :placeholder="$t('PleaseSelect')+$t('NcontrolType')" allowClear v-model="formInline.controlType">
|
||||||
<a-select-option v-for="(item, key) in controlType" :key="key" :value="item.value">
|
<a-select-option v-for="(item, key) in controlType" :key="key" :value="item.value">
|
||||||
<span style="display: inline-block;width: 100%" :title=" item.label ">
|
<span style="display: inline-block;width: 100%" :title=" item.label ">
|
||||||
{{ item.label }}
|
{{ item.label }}
|
||||||
@@ -177,10 +177,10 @@
|
|||||||
<div class="box-title-text">
|
<div class="box-title-text">
|
||||||
<div class="title-text">
|
<div class="title-text">
|
||||||
<span class="Required">*</span>
|
<span class="Required">*</span>
|
||||||
<span class="title-text-text" :title="$t('controlVerification')">{{$t('controlVerification')}}</span>
|
<span class="title-text-text" :title="$t('NcontrolVerification')">{{$t('NcontrolVerification')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel" prop="controlVerify">
|
<a-form-model-item class="itemModel" prop="controlVerify">
|
||||||
<a-select :placeholder="$t('PleaseSelect')+$t('controlVerification')" allowClear v-model="formInline.controlVerify">
|
<a-select :placeholder="$t('PleaseSelect')+$t('NcontrolVerification')" allowClear v-model="formInline.controlVerify">
|
||||||
<a-select-option v-for="(item, key) in controlVerification" :key="key" :value="item.value">
|
<a-select-option v-for="(item, key) in controlVerification" :key="key" :value="item.value">
|
||||||
<span style="display: inline-block;width: 100%" :title=" item.label ">
|
<span style="display: inline-block;width: 100%" :title=" item.label ">
|
||||||
{{ item.label }}
|
{{ item.label }}
|
||||||
@@ -198,14 +198,14 @@
|
|||||||
<div class="title-text">
|
<div class="title-text">
|
||||||
<span class="Required">*</span>
|
<span class="Required">*</span>
|
||||||
<span class="title-text-text"
|
<span class="title-text-text"
|
||||||
:title="$t('controlAlternatives')">{{$t('controlAlternatives')}}</span>
|
:title="$t('NcontrolAlternatives')">{{$t('NcontrolAlternatives')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel" prop="controlValues">
|
<a-form-model-item class="itemModel" prop="controlValues">
|
||||||
<a-input class="box-input add-input"
|
<a-input class="box-input add-input"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
type="textarea"
|
type="textarea"
|
||||||
v-model="formInline.controlValues"
|
v-model="formInline.controlValues"
|
||||||
:placeholder="$t('PleaseEnter')+$t('controlAlternatives')"/>
|
:placeholder="$t('PleaseEnter')+$t('NcontrolAlternatives')"/>
|
||||||
</a-form-model-item>
|
</a-form-model-item>
|
||||||
</div>
|
</div>
|
||||||
</a-col>
|
</a-col>
|
||||||
@@ -214,7 +214,7 @@
|
|||||||
<div class="box-title-text">
|
<div class="box-title-text">
|
||||||
<div class="title-text">
|
<div class="title-text">
|
||||||
<span class="title-text-text"
|
<span class="title-text-text"
|
||||||
:title="$t('attachmentTemplate')">{{$t('attachmentTemplate')}}</span>
|
:title="$t('NattachmentTemplate')">{{$t('NattachmentTemplate')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel" prop="paramsTemplateName">
|
<a-form-model-item class="itemModel" prop="paramsTemplateName">
|
||||||
<a-button type="primary" class="button-text"
|
<a-button type="primary" class="button-text"
|
||||||
@@ -236,13 +236,13 @@
|
|||||||
<div class="title-text">
|
<div class="title-text">
|
||||||
<span class="Required">*</span>
|
<span class="Required">*</span>
|
||||||
<span class="title-text-text"
|
<span class="title-text-text"
|
||||||
:title="$t('standard')">{{$t('standard')}}</span>
|
:title="$t('NNiONumber')">{{$t('NNiONumber')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel">
|
<a-form-model-item class="itemModel">
|
||||||
<a-input class="box-input"
|
<a-input class="box-input"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
v-model="item.paramsNumber"
|
v-model="item.paramsNumber"
|
||||||
:placeholder="$t('PleaseEnter')+$t('standard')"/>
|
:placeholder="$t('PleaseEnter')+$t('NNiONumber')"/>
|
||||||
</a-form-model-item>
|
</a-form-model-item>
|
||||||
</div>
|
</div>
|
||||||
</a-col>
|
</a-col>
|
||||||
@@ -250,13 +250,13 @@
|
|||||||
<div class="box-title-text">
|
<div class="box-title-text">
|
||||||
<div class="title-text">
|
<div class="title-text">
|
||||||
<span class="Required">*</span>
|
<span class="Required">*</span>
|
||||||
<span class="title-text-text" :title="$t('ParameterName')">{{$t('ParameterName')}}</span>
|
<span class="title-text-text" :title="$t('NParameterName')">{{$t('NParameterName')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel">
|
<a-form-model-item class="itemModel">
|
||||||
<a-input class="box-input"
|
<a-input class="box-input"
|
||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
v-model="item.paramsName"
|
v-model="item.paramsName"
|
||||||
:placeholder="$t('PleaseEnter')+$t('ParameterName')"/>
|
:placeholder="$t('PleaseEnter')+$t('NParameterName')"/>
|
||||||
</a-form-model-item>
|
</a-form-model-item>
|
||||||
</div>
|
</div>
|
||||||
</a-col>
|
</a-col>
|
||||||
@@ -266,7 +266,7 @@
|
|||||||
<div class="box-title-text">
|
<div class="box-title-text">
|
||||||
<div class="title-text">
|
<div class="title-text">
|
||||||
<span class="title-text-text"
|
<span class="title-text-text"
|
||||||
:title="$t('ParameterDescription')">{{$t('ParameterDescription')}}</span>
|
:title="$t('NParameterDescription')">{{$t('NParameterDescription')}}</span>
|
||||||
</div>
|
</div>
|
||||||
<a-form-model-item class="itemModel">
|
<a-form-model-item class="itemModel">
|
||||||
<a-input class="box-input add-input"
|
<a-input class="box-input add-input"
|
||||||
@@ -274,7 +274,7 @@
|
|||||||
:disabled="disabled"
|
:disabled="disabled"
|
||||||
type="textarea"
|
type="textarea"
|
||||||
v-model="item.description"
|
v-model="item.description"
|
||||||
:placeholder="$t('PleaseEnter')+$t('ParameterDescription')"/>
|
:placeholder="$t('PleaseEnter')+$t('NParameterDescription')"/>
|
||||||
</a-form-model-item>
|
</a-form-model-item>
|
||||||
</div>
|
</div>
|
||||||
</a-col>
|
</a-col>
|
||||||
|
|||||||
Reference in New Issue
Block a user