|
|
|
@@ -1006,6 +1006,11 @@
|
|
|
|
|
<el-input v-model="sarStandardsSearch.standName" :placeholder="$t('m.searchByStandardName')" clearable :maxlength="500"
|
|
|
|
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 标准英文名称-->
|
|
|
|
|
<el-form-item :label="$t('m.standardEnglishName')" class="serch-form-item">
|
|
|
|
|
<el-input v-model="sarStandardsSearch.standEnName" :placeholder="$t('m.searchAccordingToStandardEnglishName')" clearable :maxlength="500"
|
|
|
|
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 标准类别-->
|
|
|
|
|
<el-form-item :label="$t('m.standardCategory')" class="serch-form-item">
|
|
|
|
|
<search-select
|
|
|
|
@@ -1027,20 +1032,161 @@
|
|
|
|
|
<el-input v-model="sarStandardsSearch.dtbjh" :placeholder="$t('m.lookUpByAlternativeCriteria')" clearable :maxlength="100"
|
|
|
|
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 标准年份-->
|
|
|
|
|
<el-form-item :label="$t('m.standardYear')" class="serch-form-item">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="sarStandardsSearch.standYear"
|
|
|
|
|
type="date"
|
|
|
|
|
placeholder="根据标准年份查找">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 标准发布日期-->
|
|
|
|
|
<el-form-item label="标准发布日期" class="serch-form-item">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="sarStandardsSearch.issueTime"
|
|
|
|
|
type="date"
|
|
|
|
|
placeholder="根据标准发布日期查找">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 标准性质-->
|
|
|
|
|
<el-form-item :label="$t('m.standNatureShow')" class="serch-form-item">
|
|
|
|
|
<el-select v-model="sarStandardsSearch.standNature" placeholder="请选择标准性质" clearable
|
|
|
|
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
|
|
|
|
<el-option v-for="opt in standNatureOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 是否纳入标准清单-->
|
|
|
|
|
<el-form-item title="是否纳入标准清单" label="是否纳入标准清单">
|
|
|
|
|
<el-select v-model="sarStandardsSearch.isRelateAccess" class="advanced-one" placeholder="根据是否纳入标准清单查找">
|
|
|
|
|
<el-option value="yes" label="是"></el-option>
|
|
|
|
|
<el-option value="no" label="否"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 实施日期-->
|
|
|
|
|
<el-form-item label="实施日期">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="sarStandardsSearch.putTime"
|
|
|
|
|
type="date"
|
|
|
|
|
placeholder="根据实施日期查找">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 新车型实施日期-->
|
|
|
|
|
<el-form-item title="新车型实施日期" label="新车型实施日期">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="sarStandardsSearch.XCXTime"
|
|
|
|
|
type="date"
|
|
|
|
|
placeholder="根据新车型实施日期查找">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 在产车实施日期-->
|
|
|
|
|
<el-form-item title="在产车实施日期" label="在产车实施日期">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
v-model="sarStandardsSearch.ZCCTime"
|
|
|
|
|
type="date"
|
|
|
|
|
placeholder="根据在产车实施日期查找">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 归口管理部门-->
|
|
|
|
|
<el-form-item label="归口管理部门">
|
|
|
|
|
<el-input v-model="sarStandardsSearch.nameShow" clearable placeholder="根据归口管理部门查找"
|
|
|
|
|
@keyup.enter.native="btnSearch"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 起草单位-->
|
|
|
|
|
<el-form-item label="起草单位">
|
|
|
|
|
<el-select v-model="sarStandardsSearch.qcdw" placeholder="根据起草单位查找" clearable
|
|
|
|
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
|
|
|
|
<el-option v-for="opt in qcdwOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 我司参与深度-->
|
|
|
|
|
<el-form-item label="我司参与深度">
|
|
|
|
|
<el-select v-model="sarStandardsSearch.nameShow" placeholder="请选择我司参与深度" clearable
|
|
|
|
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
|
|
|
|
<el-option v-for="opt in cysdOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
<!-- 能源类型-->
|
|
|
|
|
<el-form-item label="能源类型">
|
|
|
|
|
<el-select v-model="sarStandardsSearch.energyKind" placeholder="请选择能源类型" clearable
|
|
|
|
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
|
|
|
|
<el-option v-for="opt in nylxOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 适用车型-->
|
|
|
|
|
<el-form-item :label="$t('m.applicableModels')" class="serch-form-item">
|
|
|
|
|
<el-select v-model="sarStandardsSearch.cllx" :placeholder="$t('m.searchAccordingToThApplicableModel')" clearable
|
|
|
|
|
<el-select v-model="sarStandardsSearch.applyArctic" :placeholder="$t('m.searchAccordingToThApplicableModel')" clearable
|
|
|
|
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
|
|
|
|
<el-option v-for="opt in applyArcticOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 适用产品线(新增字段)-->
|
|
|
|
|
<el-form-item :label="$t('m.applicableProductLine')" class="serch-form-item">
|
|
|
|
|
<el-select v-model="sarStandardsSearch.nylx" :placeholder="$t('m.searchByApplicableProductLine')" clearable
|
|
|
|
|
<el-select v-model="sarStandardsSearch.sycpx" :placeholder="$t('m.searchByApplicableProductLine')" clearable
|
|
|
|
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
|
|
|
|
<el-option v-for="opt in categoryOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
|
|
|
|
<el-option v-for="opt in sycpxOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 适用认证-->
|
|
|
|
|
<el-form-item label="适用认证">
|
|
|
|
|
<el-select v-model="sarStandardsSearch.syzr" placeholder="根据适用认证查找" clearable
|
|
|
|
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
|
|
|
|
<el-option v-for="opt in syzrOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 责任部门-->
|
|
|
|
|
<el-form-item label="责任部门">
|
|
|
|
|
<el-select v-model="sarStandardsSearch.zrbm" placeholder="根据责任部门查找" clearable
|
|
|
|
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
|
|
|
|
<el-option v-for="opt in zrbmOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 责任工程师-->
|
|
|
|
|
<el-form-item label="责任工程师">
|
|
|
|
|
<el-select v-model="sarStandardsSearch.dutyEngineer" placeholder="根据责任工程师查找" clearable
|
|
|
|
|
@keyup.enter.native="getDomesticStandardTableBtn(sarStandardsSearch)">
|
|
|
|
|
<el-option v-for="opt in zrgcsOptions" :value="opt.value === undefined ? '' :opt.value" :key="opt.value" :label="opt.label">{{ opt.label}}</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 关联模块-VPPS编码-->
|
|
|
|
|
<el-form-item title="关联模块-VPPS编码" label="关联模块-VPPS编码" prop="standNumber">
|
|
|
|
|
<el-input v-model="sarStandardsSearch.svpps" clearable
|
|
|
|
|
placeholder="根据关联模块-VPPS编码查找"
|
|
|
|
|
@keyup.enter.native="btnSearch"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 代替标准号-->
|
|
|
|
|
<el-form-item label="代替标准号">
|
|
|
|
|
<el-input v-model="sarStandardsSearch.replaceStandNum" clearable placeholder="根据代替标准号查找"
|
|
|
|
|
@keyup.enter.native="btnSearch"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 关联模块-中文名称-->
|
|
|
|
|
<el-form-item title="关联模块-中文名称" label="关联模块-中文名称" prop="standNumber">
|
|
|
|
|
<el-input v-model="sarStandardsSearch.standNumber" clearable
|
|
|
|
|
placeholder="根据关联模块-中文名称"
|
|
|
|
|
@keyup.enter.native="btnSearch"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 采标编号-->
|
|
|
|
|
<el-form-item label="采标编号" prop="nameShow">
|
|
|
|
|
<el-input v-model="sarStandardsSearch.nameShow" clearable placeholder="根据采标编号查找"
|
|
|
|
|
@keyup.enter.native="btnSearch"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 采标程度-->
|
|
|
|
|
<el-form-item label="采标程度" prop="standNumber">
|
|
|
|
|
<el-input v-model="sarStandardsSearch.standNumber" clearable
|
|
|
|
|
placeholder="根据采标程度查找"
|
|
|
|
|
@keyup.enter.native="btnSearch"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 引用标准-->
|
|
|
|
|
<el-form-item label="引用标准">
|
|
|
|
|
<el-input v-model="sarStandardsSearch.citeStand" clearable placeholder="根据引用标准查找"
|
|
|
|
|
@keyup.enter.native="btnSearch"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 被引用标准-->
|
|
|
|
|
<el-form-item label="被引用标准">
|
|
|
|
|
<el-input v-model="sarStandardsSearch.citedStand" clearable
|
|
|
|
|
placeholder="根据被引用标准查找"
|
|
|
|
|
@keyup.enter.native="btnSearch"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<!-- 关联模块(新增字段)-->
|
|
|
|
|
<el-form-item :label="$t('m.associatedModule')" class="serch-form-item">
|
|
|
|
|
<el-select v-model="sarStandardsSearch.cycvppsbm" :placeholder="$t('m.SearchByAssociatedModule')" clearable
|
|
|
|
@@ -1253,6 +1399,12 @@ export default {
|
|
|
|
|
categoryOptions: [], // 所属类别下拉框
|
|
|
|
|
categoryConfigOptions: [], // 所属类别下拉框
|
|
|
|
|
assemClassOptions: [], // 总成分类下拉框
|
|
|
|
|
qcdwOptions: [], // 起草单位
|
|
|
|
|
nylxOptions: [], // 能源类型
|
|
|
|
|
sycpxOptions: [], // 适用产品线
|
|
|
|
|
syzrOptions: [], // 适用认证
|
|
|
|
|
zrbmOptions: [], // 责任部门
|
|
|
|
|
zrgcsOptions: [], // 责任工程师
|
|
|
|
|
standAttributeList: [],
|
|
|
|
|
sarStandardsSearch: {
|
|
|
|
|
page: 1,
|
|
|
|
@@ -1261,19 +1413,33 @@ export default {
|
|
|
|
|
validFlag: '0',
|
|
|
|
|
menuId: '',
|
|
|
|
|
country: '',
|
|
|
|
|
standNumber: '',
|
|
|
|
|
standName: '',
|
|
|
|
|
standState: '',
|
|
|
|
|
standNature: '',
|
|
|
|
|
issueTime: '',
|
|
|
|
|
// applyArctic: '',
|
|
|
|
|
replaceStandNum: '',
|
|
|
|
|
// replaceStandNumCope: '',
|
|
|
|
|
// replaceStandNumList: [],
|
|
|
|
|
replacedStandNum: '',
|
|
|
|
|
standNumber: '', // 标准编号
|
|
|
|
|
standName: '', // 标准名称
|
|
|
|
|
standState: '', // 标准状态
|
|
|
|
|
issueTime: '', // 标准发布日期
|
|
|
|
|
svpps: '', // 关联模块-VPPS编码
|
|
|
|
|
replaceStandNum: '', // 代替标准号
|
|
|
|
|
replacedStandNum: '', // 被代替标准号
|
|
|
|
|
citeStand: '', // 引用标准
|
|
|
|
|
citedStand: '', // 被引用标准
|
|
|
|
|
synopsis: '', // 内容摘要
|
|
|
|
|
// category: '', // 所属类别
|
|
|
|
|
standSort: '' // 标准类别
|
|
|
|
|
applyArctic: '', // 适用车型
|
|
|
|
|
sycpx: '', // 适用产品线
|
|
|
|
|
syzr: '', // 适用认证
|
|
|
|
|
zrbm: '', // 责任部门
|
|
|
|
|
dutyEngineer: '', // 责任工程师
|
|
|
|
|
standSort: '', // 标准类别
|
|
|
|
|
standYear: '', // 标准年份
|
|
|
|
|
standEnName: '', // 标准英文名称
|
|
|
|
|
standNature: '', // 标准性质
|
|
|
|
|
putTime: '', // 实施日期
|
|
|
|
|
isRelateAccess: '', // 是否纳入标准清单
|
|
|
|
|
nameShow: '', // 我司参与深度
|
|
|
|
|
qcdw: '', // 起草单位
|
|
|
|
|
nameShow: '', // 归口管理部门
|
|
|
|
|
ZCCTime: '', // 在产车实施日期
|
|
|
|
|
XCXTime: '', // 新车型实施日期
|
|
|
|
|
energyKind: '', // 能源类型
|
|
|
|
|
}, // 分页查询过程中用到的对象
|
|
|
|
|
// 树形结构
|
|
|
|
|
// tree function
|
|
|
|
@@ -4077,7 +4243,7 @@ export default {
|
|
|
|
|
this.standNatureOptions = res.data.SARPROPERTY // 标准性质
|
|
|
|
|
this.standStateOptions = res.data.WBZTCLASS // 文本状态
|
|
|
|
|
this.standSystemOptions = res.data.BZTXCLASS // 标准体系
|
|
|
|
|
this.applyArcticOptions = res.data.ENERGYTYPES // 适用车型
|
|
|
|
|
this.applyArcticOptions = res.data.SYCXCLASS // 适用车型
|
|
|
|
|
this.categoryOptions = res.data.NYLXCLASS // 能源类型
|
|
|
|
|
this.applyAuthOptions = res.data.SYRZCLASS // 适用认证
|
|
|
|
|
this.cysdOptions = res.data.WSCYSD // 我司参与深度
|
|
|
|
@@ -4085,6 +4251,12 @@ export default {
|
|
|
|
|
this.zrbmOptions = res.data.ZRBMCLASS // 责任部门
|
|
|
|
|
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
|
|
|
|
this.txlbOptions = res.data.TXLBCLASS // 体系类别
|
|
|
|
|
this.qcdwOptions = res.data.QCDW // 起草单位
|
|
|
|
|
this.nylxOptions = res.data.NYLXCLASS // 能源类型
|
|
|
|
|
this.sycpxOptions = res.data.SYCPXCLASS // 适用产品线
|
|
|
|
|
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
|
|
|
|
this.zrbmOptions = res.data.ZRBMCLASS // 责任部门
|
|
|
|
|
this.syzrOptions = res.data.SYRZCLASS // 适用认证
|
|
|
|
|
this.getGzzOption()
|
|
|
|
|
this.setMap(this.standStateOptions)
|
|
|
|
|
console.log(this.standStateOptions, '文本状态')
|
|
|
|
@@ -4234,6 +4406,9 @@ export default {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-top: 6px;
|
|
|
|
|
background: #F9F9F9;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
text-overflow: ellipsis
|
|
|
|
|
}
|
|
|
|
|
/deep/.el-input__inner {
|
|
|
|
|
height: 30px;
|
|
|
|
@@ -4242,5 +4417,8 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.el-date-editor.el-input, .el-date-editor.el-input__inner{
|
|
|
|
|
width: 190px
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
</style>
|
|
|
|
|