[update]
This commit is contained in:
@@ -74,6 +74,7 @@ module.exports = {
|
|||||||
user: 'User',
|
user: 'User',
|
||||||
numericalValue: 'Numerical Value',
|
numericalValue: 'Numerical Value',
|
||||||
not: 'No.',
|
not: 'No.',
|
||||||
|
notOnlyRz: 'no',
|
||||||
EnterValue: 'Please Enter a Value',
|
EnterValue: 'Please Enter a Value',
|
||||||
SavedQuery: 'Saved Search',
|
SavedQuery: 'Saved Search',
|
||||||
NoQueriesSaved: 'No Queries Were Saved',
|
NoQueriesSaved: 'No Queries Were Saved',
|
||||||
@@ -712,6 +713,12 @@ module.exports = {
|
|||||||
uploadTime: 'Upload Time',
|
uploadTime: 'Upload Time',
|
||||||
enclosure: 'Enclosure',
|
enclosure: 'Enclosure',
|
||||||
// 认证
|
// 认证
|
||||||
|
// 认证状态
|
||||||
|
Dropdownradio: 'Drop down radio',
|
||||||
|
Dropdownmultipleselection: 'Drop down multiple selection',
|
||||||
|
a: '+',
|
||||||
|
positiveInteger: 'positive integer',
|
||||||
|
|
||||||
ParameteItemCollectionList: 'Parameter item collection list',
|
ParameteItemCollectionList: 'Parameter item collection list',
|
||||||
Areyousureparameteritems: 'Are you sure to submit the selected parameter items?',
|
Areyousureparameteritems: 'Are you sure to submit the selected parameter items?',
|
||||||
Theselectedconfiguration: 'The configuration can only be added when the parameter items in the parameter list are to be collected or changed',
|
Theselectedconfiguration: 'The configuration can only be added when the parameter items in the parameter list are to be collected or changed',
|
||||||
|
|||||||
@@ -76,6 +76,7 @@ module.exports = {
|
|||||||
numericalValue: '数值',
|
numericalValue: '数值',
|
||||||
yes: '是',
|
yes: '是',
|
||||||
not: '否',
|
not: '否',
|
||||||
|
notOnlyRz: '否',
|
||||||
EnterValue: '请输入值',
|
EnterValue: '请输入值',
|
||||||
SavedQuery: '保存的查询',
|
SavedQuery: '保存的查询',
|
||||||
NoQueriesSaved: '没有保存任何查询',
|
NoQueriesSaved: '没有保存任何查询',
|
||||||
@@ -723,6 +724,12 @@ module.exports = {
|
|||||||
uploadTime: '上传时间',
|
uploadTime: '上传时间',
|
||||||
enclosure: '附件',
|
enclosure: '附件',
|
||||||
// 认证
|
// 认证
|
||||||
|
// 认证状态
|
||||||
|
Dropdownradio: '下拉单选',
|
||||||
|
Dropdownmultipleselection: '下拉多选',
|
||||||
|
a: '+',
|
||||||
|
positiveInteger: '正整数',
|
||||||
|
|
||||||
ParameteItemCollectionList: '参数项收集清单',
|
ParameteItemCollectionList: '参数项收集清单',
|
||||||
Areyousureparameteritems: '确认提交所选参数项嘛?',
|
Areyousureparameteritems: '确认提交所选参数项嘛?',
|
||||||
Theselectedconfiguration: '参数清单中参数项均为 待发起收集或变更时,才能添加配置',
|
Theselectedconfiguration: '参数清单中参数项均为 待发起收集或变更时,才能添加配置',
|
||||||
|
|||||||
@@ -37,7 +37,7 @@
|
|||||||
<a-select allowClear :placeholder="$t('PleaseSelect')+$t('Required')" v-model='formInline.isMust'>
|
<a-select allowClear :placeholder="$t('PleaseSelect')+$t('Required')" 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('not')}}
|
<a-select-option :key="'0'" :value="'0'">{{$t('notOnlyRz')}}
|
||||||
</a-select-option>
|
</a-select-option>
|
||||||
</a-select>
|
</a-select>
|
||||||
</a-form-model-item>
|
</a-form-model-item>
|
||||||
@@ -320,27 +320,27 @@ export default {
|
|||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
controlType: [ // 控件类型
|
controlType: [ // 控件类型
|
||||||
{value:'1', label: '文本' },
|
{value:'1', label: this.$t('text') },
|
||||||
{value:'2', label: '下拉单选' },
|
{value:'2', label: this.$t('Dropdownradio') },
|
||||||
{value:'3', label: '下拉多选' },
|
{value:'3', label: this.$t('Dropdownmultipleselection') },
|
||||||
{value:'4', label: '附件' },
|
{value:'4', label: this.$t('enclosure') },
|
||||||
{value:'5', label: '文本+下拉单选' },
|
{value:'5', label: this.$t('text')+ this.$t('a')+this.$t('Dropdownradio') },
|
||||||
{value:'6', label: '文本+下拉多选' },
|
{value:'6', label: this.$t('text')+ this.$t('a')+this.$t('Dropdownmultipleselection') },
|
||||||
{value:'7', label: '文本+附件' },
|
{value:'7', label: this.$t('text')+ this.$t('a')+this.$t('enclosure') },
|
||||||
{value:'8', label: '下拉单选+附件' },
|
{value:'8', label: this.$t('Dropdownradio')+ this.$t('a')+this.$t('enclosure') },
|
||||||
{value:'9', label: '下拉多选+附件' },
|
{value:'9', label: this.$t('Dropdownmultipleselection')+ this.$t('a')+this.$t('enclosure') },
|
||||||
{value:'10', label: '文本+下拉单选+附件' },
|
{value:'10', label: this.$t('text')+ this.$t('a')+this.$t('Dropdownradio')+ this.$t('a')+this.$t('enclosure') },
|
||||||
],
|
],
|
||||||
controlVerification: [ // 控件校验
|
controlVerification: [ // 控件校验
|
||||||
{value:'1', label: '无' },
|
{value:'1', label: this.$t('nothing') },
|
||||||
{value:'2', label: '中文' },
|
{value:'2', label: this.$t('chinese') },
|
||||||
{value:'3', label: '正整数' },
|
{value:'3', label: this.$t('positiveInteger') },
|
||||||
{value:'4', label: '正浮点数' },
|
{value:'4', label: this.$t('Positivefloatingpointnumber') },
|
||||||
{value:'5', label: '整数或小数' },
|
{value:'5', label: this.$t('integerOrDecimal')},
|
||||||
{value:'6', label: '一位小数' },
|
{value:'6', label: this.$t('OneDecimalPlace') },
|
||||||
{value:'7', label: '两位小数' },
|
{value:'7', label: this.$t('TwoDecimalplaces') },
|
||||||
{value:'8', label: '三位小数' },
|
{value:'8', label: this.$t('Threedecimalplaces') },
|
||||||
{value:'9', label: '四位小数' },
|
{value:'9', label: this.$t('FourDecimalplaces') },
|
||||||
],
|
],
|
||||||
CategoryTreeList: [], // 技术领域
|
CategoryTreeList: [], // 技术领域
|
||||||
certCategoryParamsInfoEOList: [], // 认证类别得tab栏
|
certCategoryParamsInfoEOList: [], // 认证类别得tab栏
|
||||||
@@ -405,6 +405,7 @@ export default {
|
|||||||
inputChangelabel: false, // 控件备选值校验
|
inputChangelabel: false, // 控件备选值校验
|
||||||
buttonChangelabel: false, // 模板校验
|
buttonChangelabel: false, // 模板校验
|
||||||
contentListStart: [], // 认证类别编辑
|
contentListStart: [], // 认证类别编辑
|
||||||
|
flag: 1, // 判断师新增,编辑 默认新增
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
@@ -453,7 +454,7 @@ export default {
|
|||||||
},
|
},
|
||||||
Onchangelabel(val) {
|
Onchangelabel(val) {
|
||||||
let _tt = []
|
let _tt = []
|
||||||
if(this.title == '新增') {
|
if(this.flag == 1) {
|
||||||
this.contentListStart.forEach((itemVal) => {
|
this.contentListStart.forEach((itemVal) => {
|
||||||
val.forEach((item) => {
|
val.forEach((item) => {
|
||||||
if(itemVal.value === item.value) {
|
if(itemVal.value === item.value) {
|
||||||
@@ -511,7 +512,8 @@ export default {
|
|||||||
},
|
},
|
||||||
addModel() {
|
addModel() {
|
||||||
this.visible = true
|
this.visible = true
|
||||||
this.title = '新增'
|
this.flag = 1
|
||||||
|
this.title = this.$t('newlyAdded')
|
||||||
this.formInline = {}
|
this.formInline = {}
|
||||||
// 获取认证类别
|
// 获取认证类别
|
||||||
this.getcontentListedEdit()
|
this.getcontentListedEdit()
|
||||||
@@ -533,7 +535,8 @@ export default {
|
|||||||
value.technologyTerritory = value.technologyTerritory.split(',')
|
value.technologyTerritory = value.technologyTerritory.split(',')
|
||||||
}
|
}
|
||||||
this.formInline = value
|
this.formInline = value
|
||||||
this.title = '编辑'
|
this.title = this.$t('edit')
|
||||||
|
this.flag = 0
|
||||||
// 获取认证类别
|
// 获取认证类别
|
||||||
this.getcontentListedEdit()
|
this.getcontentListedEdit()
|
||||||
value.certCategoryParamsInfoEOList.map((item, index) => {
|
value.certCategoryParamsInfoEOList.map((item, index) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user