Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -139,7 +139,6 @@
|
|||||||
<span
|
<span
|
||||||
v-else-if="child.attrType === 'DATE_PICKER'"
|
v-else-if="child.attrType === 'DATE_PICKER'"
|
||||||
class="modular-content-p-val"
|
class="modular-content-p-val"
|
||||||
:title="child.value || '-'"
|
|
||||||
>
|
>
|
||||||
{{ child.value ? child.value.substring(0,10) : '-' }}
|
{{ child.value ? child.value.substring(0,10) : '-' }}
|
||||||
</span>
|
</span>
|
||||||
@@ -199,103 +198,9 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
<template
|
|
||||||
v-for="(child, childIndex) in item.one"
|
|
||||||
v-if="child.isShowImp === '0' && (item.label !== '关联信息' && (item.label !== '实施日期' && child.attrField !== 'SSRQGJ' && child.attrField !== 'ZCCSSRQGJ' && child.attrField !== 'XCXSSRQGJ' || (childIndex < 6 || item.showAll)) || item.label === '适用范围')"
|
|
||||||
>
|
|
||||||
<div
|
|
||||||
:key="child.id"
|
|
||||||
class="modular-item"
|
|
||||||
>
|
|
||||||
<label class="modular-content-p-name" :title="child.attrName">{{ child.attrName }}</label>
|
|
||||||
<!--相关流程-->
|
|
||||||
<template v-if="child.attrField === 'XGLC' && child.value">
|
|
||||||
<p class="modular-content-p-val">
|
|
||||||
<span v-for="(item, index) in child.value.split(',')" :key="index">
|
|
||||||
<a @click="processCenterClick(item)" style="cursor: pointer;color: #0c91e5;margin-right: 5px;" class="span-line">{{item}}</a>
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
</template>
|
|
||||||
<template
|
|
||||||
v-else-if="child.attrField === 'DTBJH'|| child.attrField === 'BDTBZBH' || child.attrField === 'YYBJ' || child.attrField === 'BYYBJ' || child.attrField === 'CBBH' || child.attrField === 'DXBZ' || child.attrField === 'BFDTBZ'"
|
|
||||||
>
|
|
||||||
<p class="modular-content-p-val" v-if="child.value">
|
|
||||||
<span v-for="(item, index) in child.value.split(',')" :key="index">
|
|
||||||
<a @click="showReplaceStandInfo(item)" style="cursor: pointer;color: #0c91e5;margin-right: 5px;" class="span-line">{{item}}</a>
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
<span class="modular-content-p-val" v-else>-</span>
|
|
||||||
</template>
|
|
||||||
<span
|
|
||||||
v-else-if="child.attrField === 'SVPPS'"
|
|
||||||
class="modular-content-p-val"
|
|
||||||
:title="child.tips || '-'"
|
|
||||||
>
|
|
||||||
{{ !child.value || child.value === 'null' ? '-' : child.value }}
|
|
||||||
</span>
|
|
||||||
<span
|
|
||||||
v-else-if="child.attrType !== 'FILE'"
|
|
||||||
class="modular-content-p-val"
|
|
||||||
:title="child.value || '-'"
|
|
||||||
>
|
|
||||||
{{ child.value || '-' }}
|
|
||||||
</span>
|
|
||||||
<div v-else class="modular-content-p-flies">
|
|
||||||
<p
|
|
||||||
class="files-title"
|
|
||||||
v-for="(file, fileIndex) in child.value"
|
|
||||||
:key="fileIndex"
|
|
||||||
>
|
|
||||||
<!-- <span style="cursor: pointer;" @click="openFileInPdf(file.id, file.oldFileName)">|{{file.id}}|</span>-->
|
|
||||||
<!--发布稿、增补件单独设置下载权限-->
|
|
||||||
<template v-if="child.attrField === 'XGD' || child.attrField === 'FBGBJBD' || child.attrField === 'BPG'
|
|
||||||
|| child.attrField === 'SSG'|| child.attrField === 'ZQYJG'|| child.attrField === 'CA'
|
|
||||||
|| child.attrField === 'JDWJ' || child.attrField === 'GLWJ'">
|
|
||||||
<a @click="openFileInPdf(file.id, file.oldFileName)" target="_blank">{{ file.oldFileName }}</a>
|
|
||||||
<i
|
|
||||||
title="下载"
|
|
||||||
@click="downloadFile(file.id)"
|
|
||||||
class="icon-download"
|
|
||||||
v-btn-permission="$route.params.pageType === 'INLAND_STAND' ? '02fd6eff0537c283dd071683de10689f' : 'a772afab2a6708883335500f3f86e771'"
|
|
||||||
/>
|
|
||||||
<i
|
|
||||||
title="下载带水印"
|
|
||||||
@click="downloadFileByWater(file.id, file.fileSuffix)"
|
|
||||||
class="icon-download2"
|
|
||||||
v-btn-permission="$route.params.pageType === 'INLAND_STAND' ? 'd5b28957b5105c805e90a16fd5056a45' : '824f3bf9edef83fc7488917136167232'"
|
|
||||||
/>
|
|
||||||
<span class="time-text">上传时间:{{ dateFormat(file.modifyTime) }}</span>
|
|
||||||
</template>
|
|
||||||
<template v-else>
|
|
||||||
<a @click="openFileInPdf(file.id, file.oldFileName)" target="_blank">{{ file.oldFileName }}</a>
|
|
||||||
<i
|
|
||||||
title="下载"
|
|
||||||
@click="downloadFile(file.id)"
|
|
||||||
class="icon-download"
|
|
||||||
v-btn-permission="$route.params.pageType === 'INLAND_STAND' ? '02fd6eff0537c283dd071683de10689f' : 'a772afab2a6708883335500f3f86e771'"
|
|
||||||
/>
|
|
||||||
<i
|
|
||||||
title="下载带水印"
|
|
||||||
@click="downloadFileByWater(file.id, file.fileSuffix)"
|
|
||||||
class="icon-download2"
|
|
||||||
v-btn-permission="$route.params.pageType === 'INLAND_STAND' ? 'd5b28957b5105c805e90a16fd5056a45' : '824f3bf9edef83fc7488917136167232'"
|
|
||||||
/>
|
|
||||||
<span class="time-text">上传时间:{{ dateFormat(file.modifyTime) }}</span>
|
|
||||||
</template>
|
|
||||||
</p>
|
|
||||||
<!-- <el-button-->
|
|
||||||
<!-- v-if="child.attrField === 'FBGBJBD' || child.attrField === 'SSG' || child.attrField === 'ZQYJG' || child.attrField === 'BPG' || child.attrField === 'ZBJBD' || child.attrField === 'CA'"-->
|
|
||||||
<!-- @click="showItemsModel(child.attrField)"-->
|
|
||||||
<!-- class="decomposition-btn"-->
|
|
||||||
<!-- icon="icon-separate"-->
|
|
||||||
<!-- >标准分解单</el-button>-->
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</template>
|
|
||||||
<template
|
<template
|
||||||
v-for="(child, childIndex) in item.child"
|
v-for="(child, childIndex) in item.child"
|
||||||
v-if="child.isShowImp === '0' && item.label !== '实施日期' && item.label !== '适用范围'"
|
v-if="child.isShowImp === '0' && item.label === '关联信息'"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
:key="child.id"
|
:key="child.id"
|
||||||
@@ -387,6 +292,100 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
<template
|
||||||
|
v-for="(child, childIndex) in item.one"
|
||||||
|
v-if="child.isShowImp === '0' && item.label !== '关联信息' && (item.label !== '实施日期' || (childIndex < 6 || item.showAll))"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
:key="child.id"
|
||||||
|
class="modular-item"
|
||||||
|
>
|
||||||
|
<label class="modular-content-p-name" :title="child.attrName">{{ child.attrName }}</label>
|
||||||
|
<!--相关流程-->
|
||||||
|
<template v-if="child.attrField === 'XGLC' && child.value">
|
||||||
|
<p class="modular-content-p-val">
|
||||||
|
<span v-for="(item, index) in child.value.split(',')" :key="index">
|
||||||
|
<a @click="processCenterClick(item)" style="cursor: pointer;color: #0c91e5;margin-right: 5px;" class="span-line">{{item}}</a>
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
</template>
|
||||||
|
<template
|
||||||
|
v-else-if="child.attrField === 'DTBJH'|| child.attrField === 'BDTBZBH' || child.attrField === 'YYBJ' || child.attrField === 'BYYBJ' || child.attrField === 'CBBH' || child.attrField === 'DXBZ' || child.attrField === 'BFDTBZ'"
|
||||||
|
>
|
||||||
|
<p class="modular-content-p-val" v-if="child.value">
|
||||||
|
<span v-for="(item, index) in child.value.split(',')" :key="index">
|
||||||
|
<a @click="showReplaceStandInfo(item)" style="cursor: pointer;color: #0c91e5;margin-right: 5px;" class="span-line">{{item}}</a>
|
||||||
|
</span>
|
||||||
|
</p>
|
||||||
|
<span class="modular-content-p-val" v-else>-</span>
|
||||||
|
</template>
|
||||||
|
<span
|
||||||
|
v-else-if="child.attrField === 'SVPPS'"
|
||||||
|
class="modular-content-p-val"
|
||||||
|
:title="child.tips || '-'"
|
||||||
|
>
|
||||||
|
{{ !child.value || child.value === 'null' ? '-' : child.value }}
|
||||||
|
</span>
|
||||||
|
<span
|
||||||
|
v-else-if="child.attrType !== 'FILE'"
|
||||||
|
class="modular-content-p-val"
|
||||||
|
:title="child.value || '-'"
|
||||||
|
>
|
||||||
|
{{ child.value || '-' }}
|
||||||
|
</span>
|
||||||
|
<div v-else class="modular-content-p-flies">
|
||||||
|
<p
|
||||||
|
class="files-title"
|
||||||
|
v-for="(file, fileIndex) in child.value"
|
||||||
|
:key="fileIndex"
|
||||||
|
>
|
||||||
|
<!-- <span style="cursor: pointer;" @click="openFileInPdf(file.id, file.oldFileName)">|{{file.id}}|</span>-->
|
||||||
|
<!--发布稿、增补件单独设置下载权限-->
|
||||||
|
<template v-if="child.attrField === 'XGD' || child.attrField === 'FBGBJBD' || child.attrField === 'BPG'
|
||||||
|
|| child.attrField === 'SSG'|| child.attrField === 'ZQYJG'|| child.attrField === 'CA'
|
||||||
|
|| child.attrField === 'JDWJ' || child.attrField === 'GLWJ'">
|
||||||
|
<a @click="openFileInPdf(file.id, file.oldFileName)" target="_blank">{{ file.oldFileName }}</a>
|
||||||
|
<i
|
||||||
|
title="下载"
|
||||||
|
@click="downloadFile(file.id)"
|
||||||
|
class="icon-download"
|
||||||
|
v-btn-permission="$route.params.pageType === 'INLAND_STAND' ? '02fd6eff0537c283dd071683de10689f' : 'a772afab2a6708883335500f3f86e771'"
|
||||||
|
/>
|
||||||
|
<i
|
||||||
|
title="下载带水印"
|
||||||
|
@click="downloadFileByWater(file.id, file.fileSuffix)"
|
||||||
|
class="icon-download2"
|
||||||
|
v-btn-permission="$route.params.pageType === 'INLAND_STAND' ? 'd5b28957b5105c805e90a16fd5056a45' : '824f3bf9edef83fc7488917136167232'"
|
||||||
|
/>
|
||||||
|
<span class="time-text">上传时间:{{ dateFormat(file.modifyTime) }}</span>
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
<a @click="openFileInPdf(file.id, file.oldFileName)" target="_blank">{{ file.oldFileName }}</a>
|
||||||
|
<i
|
||||||
|
title="下载"
|
||||||
|
@click="downloadFile(file.id)"
|
||||||
|
class="icon-download"
|
||||||
|
v-btn-permission="$route.params.pageType === 'INLAND_STAND' ? '02fd6eff0537c283dd071683de10689f' : 'a772afab2a6708883335500f3f86e771'"
|
||||||
|
/>
|
||||||
|
<i
|
||||||
|
title="下载带水印"
|
||||||
|
@click="downloadFileByWater(file.id, file.fileSuffix)"
|
||||||
|
class="icon-download2"
|
||||||
|
v-btn-permission="$route.params.pageType === 'INLAND_STAND' ? 'd5b28957b5105c805e90a16fd5056a45' : '824f3bf9edef83fc7488917136167232'"
|
||||||
|
/>
|
||||||
|
<span class="time-text">上传时间:{{ dateFormat(file.modifyTime) }}</span>
|
||||||
|
</template>
|
||||||
|
</p>
|
||||||
|
<!-- <el-button-->
|
||||||
|
<!-- v-if="child.attrField === 'FBGBJBD' || child.attrField === 'SSG' || child.attrField === 'ZQYJG' || child.attrField === 'BPG' || child.attrField === 'ZBJBD' || child.attrField === 'CA'"-->
|
||||||
|
<!-- @click="showItemsModel(child.attrField)"-->
|
||||||
|
<!-- class="decomposition-btn"-->
|
||||||
|
<!-- icon="icon-separate"-->
|
||||||
|
<!-- >标准分解单</el-button>-->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</template>
|
||||||
<div class="modular-item-more" v-if="item.label === '实施日期' && item.one.length > 6">
|
<div class="modular-item-more" v-if="item.label === '实施日期' && item.one.length > 6">
|
||||||
<div class="wrap" @click="handleToggleShowAll(item)">
|
<div class="wrap" @click="handleToggleShowAll(item)">
|
||||||
<span>{{ item.showAll ? '收起' : '更多' }}</span>
|
<span>{{ item.showAll ? '收起' : '更多' }}</span>
|
||||||
|
|||||||
@@ -62,7 +62,7 @@
|
|||||||
<el-col :span="4" :offset="3">创建时间:{{getDate(item.creationTime)}}</el-col>
|
<el-col :span="4" :offset="3">创建时间:{{getDate(item.creationTime)}}</el-col>
|
||||||
</div>
|
</div>
|
||||||
<el-col :span="4">
|
<el-col :span="4">
|
||||||
<el-button size="mini" @click="cancelStandard(item.id)" style="margin-top: -5px; border: 1px dashed #dcdee2">取消收藏</el-button>
|
<el-button size="mini" @click="cancelStandard(item)" style="margin-top: -5px; border: 1px dashed #dcdee2">取消收藏</el-button>
|
||||||
</el-col>
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
@@ -150,7 +150,7 @@ export default {
|
|||||||
}, e => {})
|
}, e => {})
|
||||||
},
|
},
|
||||||
// 取消收藏
|
// 取消收藏
|
||||||
cancelStandard (id) {
|
cancelStandard (item) {
|
||||||
this.$confirm('确定取消收藏此数据?', '提示', {
|
this.$confirm('确定取消收藏此数据?', '提示', {
|
||||||
confirmButtonText: '确定',
|
confirmButtonText: '确定',
|
||||||
cancelButtonText: '取消',
|
cancelButtonText: '取消',
|
||||||
@@ -158,16 +158,18 @@ export default {
|
|||||||
confirmButtonClass: 'common-button-primary',
|
confirmButtonClass: 'common-button-primary',
|
||||||
roundButton: true
|
roundButton: true
|
||||||
}).then(() => {
|
}).then(() => {
|
||||||
var json = {}
|
// var json = {
|
||||||
json.userId = this.$store.getters.userInfo.userId
|
// id: item.collectId
|
||||||
json.id = id
|
// }
|
||||||
this.$http.postData('/sarPersonalCenter/sar-user-star/delete',json, {
|
// json.userId = this.$store.getters.userInfo.userId
|
||||||
|
this.$http.put('person/personCollect/updateByUserId',{'id': item.id}, {
|
||||||
_this: this
|
_this: this
|
||||||
}, res => {
|
}, res => {
|
||||||
if (res.ok) {
|
if (res.ok) {
|
||||||
this.$message.success('已取消收藏')
|
this.$message.success('已取消收藏')
|
||||||
this.contentOpen = false
|
this.contentOpen = false
|
||||||
this.pageChange(1)
|
this.pageChange(1)
|
||||||
|
this.selectStandard()
|
||||||
}
|
}
|
||||||
}, e => {
|
}, e => {
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -512,7 +512,7 @@
|
|||||||
:key="key1"
|
:key="key1"
|
||||||
:lazy=true
|
:lazy=true
|
||||||
:multiple=true
|
:multiple=true
|
||||||
:check-Strictly="false"
|
:check-strictly= true
|
||||||
:modalShowFlag="modalShowFlag2"
|
:modalShowFlag="modalShowFlag2"
|
||||||
:drawerTitle="drawerTitle"
|
:drawerTitle="drawerTitle"
|
||||||
:show-checkBox="showCheckBox"
|
:show-checkBox="showCheckBox"
|
||||||
@@ -528,7 +528,7 @@
|
|||||||
:key="key2"
|
:key="key2"
|
||||||
:lazy=true
|
:lazy=true
|
||||||
:multiple=true
|
:multiple=true
|
||||||
:check-Strictly="false"
|
:check-strictly= true
|
||||||
:modalShowFlag="modalShowFlag3"
|
:modalShowFlag="modalShowFlag3"
|
||||||
:drawerTitle="drawerTitle"
|
:drawerTitle="drawerTitle"
|
||||||
:show-checkBox="showCheckBox"
|
:show-checkBox="showCheckBox"
|
||||||
@@ -544,7 +544,7 @@
|
|||||||
:key="key3"
|
:key="key3"
|
||||||
:lazy=true
|
:lazy=true
|
||||||
:multiple=true
|
:multiple=true
|
||||||
:check-Strictly="false"
|
:check-strictly= true
|
||||||
:modalShowFlag="modalShowFlag4"
|
:modalShowFlag="modalShowFlag4"
|
||||||
:drawerTitle="drawerTitle"
|
:drawerTitle="drawerTitle"
|
||||||
:url="url"
|
:url="url"
|
||||||
@@ -678,8 +678,8 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-if="form.standInData === '0'" label="采标程度" prop="cbcd" class="add-form-item form-item-disabled">
|
<el-form-item v-if="form.standInData === '0'" label="采标程度" prop="cbcd" class="add-form-item form-item-disabled">
|
||||||
<el-select :popper-append-to-body="false" v-model="form.cbcd" placeholder="请选择采标程度">
|
<el-select :popper-append-to-body="false" v-model="form.cbcd" placeholder="请选择采标程度">
|
||||||
<el-option label="采标程度1" value="1"></el-option>
|
<el-option v-for="item in cbcdOptions" :key="item.value" :label="item.label" :value="item.value"></el-option>
|
||||||
<el-option label="采标程度2" value="2"></el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- <el-form-item label="相关流程" prop="xglc" class="add-form-item form-item-disabled">-->
|
<!-- <el-form-item label="相关流程" prop="xglc" class="add-form-item form-item-disabled">-->
|
||||||
@@ -1400,6 +1400,7 @@
|
|||||||
categoryOptions: [], // 能源类型
|
categoryOptions: [], // 能源类型
|
||||||
applyAuthOptions: [], // 适用认证
|
applyAuthOptions: [], // 适用认证
|
||||||
cysdOptions: [], // 我司参与深度
|
cysdOptions: [], // 我司参与深度
|
||||||
|
cbcdOptions: [], // 采标程度
|
||||||
wssmrOptions: [], // 我司署名人
|
wssmrOptions: [], // 我司署名人
|
||||||
sycpxOptions: [], // 适用产品线
|
sycpxOptions: [], // 适用产品线
|
||||||
zrbmOptions: [], // 责任部门
|
zrbmOptions: [], // 责任部门
|
||||||
@@ -1583,6 +1584,7 @@
|
|||||||
console.log(bringData)
|
console.log(bringData)
|
||||||
const json = Object.assign(bringData, bringData.attrInfoCaseMap);
|
const json = Object.assign(bringData, bringData.attrInfoCaseMap);
|
||||||
this.form = JSON.parse(JSON.stringify(json))
|
this.form = JSON.parse(JSON.stringify(json))
|
||||||
|
console.log(json,'AAAAAAA')
|
||||||
this.form.qcdw = JSON.parse(JSON.stringify(json)).qcdw ? JSON.parse(JSON.stringify(json)).qcdw.split(',') : []
|
this.form.qcdw = JSON.parse(JSON.stringify(json)).qcdw ? JSON.parse(JSON.stringify(json)).qcdw.split(',') : []
|
||||||
this.form.wssmr = JSON.parse(JSON.stringify(json)).wssmr ? JSON.parse(JSON.stringify(json)).wssmr.split(',') : []
|
this.form.wssmr = JSON.parse(JSON.stringify(json)).wssmr ? JSON.parse(JSON.stringify(json)).wssmr.split(',') : []
|
||||||
this.form.zrgcs = JSON.parse(JSON.stringify(json)).zrgcs ? JSON.parse(JSON.stringify(json)).zrgcs.split(',') : []
|
this.form.zrgcs = JSON.parse(JSON.stringify(json)).zrgcs ? JSON.parse(JSON.stringify(json)).zrgcs.split(',') : []
|
||||||
@@ -2190,6 +2192,7 @@
|
|||||||
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
||||||
this.qcdwOption = res.data.QCDW // 体系类别
|
this.qcdwOption = res.data.QCDW // 体系类别
|
||||||
this.gkglbmOptions = res.data.GKGLBM // 归口管理部门
|
this.gkglbmOptions = res.data.GKGLBM // 归口管理部门
|
||||||
|
this.cbcdOptions = res.data.DEGREESTANDARD // 采标程度
|
||||||
this.setMap(this.standStateOptions)
|
this.setMap(this.standStateOptions)
|
||||||
})
|
})
|
||||||
this.busVsFunc()
|
this.busVsFunc()
|
||||||
|
|||||||
@@ -452,8 +452,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-if="form.standInData === '0'" label="采标程度" prop="cbcd" class="add-form-item form-item-disabled">
|
<el-form-item v-if="form.standInData === '0'" label="采标程度" prop="cbcd" class="add-form-item form-item-disabled">
|
||||||
<el-select v-model="form.cbcd" placeholder="请选择采标程度" disabled>
|
<el-select v-model="form.cbcd" placeholder="请选择采标程度" disabled>
|
||||||
<el-option label="采标程度1" value="1"></el-option>
|
<el-option v-for="item in cbcdOptions" :key="item.value" :label="item.label" :value="item.value"></el-option>
|
||||||
<el-option label="采标程度2" value="2"></el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="相关流程" prop="xglc" class="add-form-item form-item-disabled">
|
<el-form-item label="相关流程" prop="xglc" class="add-form-item form-item-disabled">
|
||||||
@@ -819,6 +818,7 @@
|
|||||||
standSystemOptions: [], // 标准体系
|
standSystemOptions: [], // 标准体系
|
||||||
applyArcticOptions: [], // 适用车型
|
applyArcticOptions: [], // 适用车型
|
||||||
gkglbmOptions: [], // 归口管理部门
|
gkglbmOptions: [], // 归口管理部门
|
||||||
|
cbcdOptions: [], // 采标程度
|
||||||
categoryOptions: [], // 能源类型
|
categoryOptions: [], // 能源类型
|
||||||
applyAuthOptions: [], // 适用认证
|
applyAuthOptions: [], // 适用认证
|
||||||
cysdOptions: [], // 我司参与深度
|
cysdOptions: [], // 我司参与深度
|
||||||
@@ -1069,6 +1069,7 @@
|
|||||||
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
||||||
this.txlbOptions = res.data.TXLBCLASS // 体系类别
|
this.txlbOptions = res.data.TXLBCLASS // 体系类别
|
||||||
this.gkglbmOptions = res.data.GKGLBM // 归口管理部门
|
this.gkglbmOptions = res.data.GKGLBM // 归口管理部门
|
||||||
|
this.cbcdOptions = res.data.DEGREESTANDARD // 采标程度
|
||||||
this.key++
|
this.key++
|
||||||
})
|
})
|
||||||
this.busVsFunc()
|
this.busVsFunc()
|
||||||
|
|||||||
@@ -445,8 +445,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-if="form.standInData === '0'" label="采标程度" prop="cbcd" class="add-form-item form-item-disabled">
|
<el-form-item v-if="form.standInData === '0'" label="采标程度" prop="cbcd" class="add-form-item form-item-disabled">
|
||||||
<el-select v-model="form.cbcd" placeholder="请选择采标程度" disabled>
|
<el-select v-model="form.cbcd" placeholder="请选择采标程度" disabled>
|
||||||
<el-option label="采标程度1" value="1"></el-option>
|
<el-option v-for="item in cbcdOptions" :key="item.value" :label="item.label" :value="item.value"></el-option>
|
||||||
<el-option label="采标程度2" value="2"></el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- <el-form-item label="相关流程" prop="xglc" class="add-form-item form-item-disabled">-->
|
<!-- <el-form-item label="相关流程" prop="xglc" class="add-form-item form-item-disabled">-->
|
||||||
@@ -793,6 +792,7 @@ export default {
|
|||||||
standSystemOptions: [], // 标准体系
|
standSystemOptions: [], // 标准体系
|
||||||
applyArcticOptions: [], // 适用车型
|
applyArcticOptions: [], // 适用车型
|
||||||
gkglbmOptions: [], // 归口管理部门
|
gkglbmOptions: [], // 归口管理部门
|
||||||
|
cbcdOptions: [], // 采标程度
|
||||||
categoryOptions: [], // 能源类型
|
categoryOptions: [], // 能源类型
|
||||||
applyAuthOptions: [], // 适用认证
|
applyAuthOptions: [], // 适用认证
|
||||||
cysdOptions: [], // 我司参与深度
|
cysdOptions: [], // 我司参与深度
|
||||||
@@ -1053,6 +1053,7 @@ export default {
|
|||||||
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
||||||
this.txlbOptions = res.data.TXLBCLASS // 体系类别
|
this.txlbOptions = res.data.TXLBCLASS // 体系类别
|
||||||
this.gkglbmOptions = res.data.GKGLBM // 归口管理部门
|
this.gkglbmOptions = res.data.GKGLBM // 归口管理部门
|
||||||
|
this.cbcdOptions = res.data.DEGREESTANDARD // 采标程度
|
||||||
this.key++
|
this.key++
|
||||||
})
|
})
|
||||||
this.busVsFunc()
|
this.busVsFunc()
|
||||||
|
|||||||
@@ -663,8 +663,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-if="form.standInData === '0'" label="采标程度" prop="cbcd" class="add-form-item form-item-disabled">
|
<el-form-item v-if="form.standInData === '0'" label="采标程度" prop="cbcd" class="add-form-item form-item-disabled">
|
||||||
<el-select v-model="form.cbcd" placeholder="请选择采标程度">
|
<el-select v-model="form.cbcd" placeholder="请选择采标程度">
|
||||||
<el-option label="采标程度1" value="1"></el-option>
|
<el-option v-for="item in cbcdOptions" :key="item.value" :label="item.label" :value="item.value"></el-option>
|
||||||
<el-option label="采标程度2" value="2"></el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="相关流程" prop="xglc" class="add-form-item form-item-disabled">
|
<el-form-item label="相关流程" prop="xglc" class="add-form-item form-item-disabled">
|
||||||
@@ -1224,6 +1223,7 @@ export default {
|
|||||||
applyArcticOptions: [], // 适用车型
|
applyArcticOptions: [], // 适用车型
|
||||||
categoryOptions: [], // 能源类型
|
categoryOptions: [], // 能源类型
|
||||||
gkglbmOptions: [], // 归口管理部门
|
gkglbmOptions: [], // 归口管理部门
|
||||||
|
cbcdOptions: [], // 采标程度
|
||||||
applyAuthOptions: [], // 适用认证
|
applyAuthOptions: [], // 适用认证
|
||||||
cysdOptions: [], // 我司参与深度
|
cysdOptions: [], // 我司参与深度
|
||||||
wssmrOptions: [], // 我司署名人
|
wssmrOptions: [], // 我司署名人
|
||||||
@@ -1750,6 +1750,7 @@ export default {
|
|||||||
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
this.zrgcsOptions = res.data.ZRGCSCLASS // 责任工程师
|
||||||
this.txlbOptions = res.data.TXLBCLASS // 体系类别
|
this.txlbOptions = res.data.TXLBCLASS // 体系类别
|
||||||
this.gkglbmOptions = res.data.GKGLBM // 归口管理部门
|
this.gkglbmOptions = res.data.GKGLBM // 归口管理部门
|
||||||
|
this.cbcdOptions = res.data.DEGREESTANDARD // 采标程度
|
||||||
this.treeStatus = true
|
this.treeStatus = true
|
||||||
this.key++
|
this.key++
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -463,8 +463,7 @@
|
|||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item v-if="form.standInData === '0'" label="采标程度" prop="cbcd" class="add-form-item form-item-disabled">
|
<el-form-item v-if="form.standInData === '0'" label="采标程度" prop="cbcd" class="add-form-item form-item-disabled">
|
||||||
<el-select v-model="form.cbcd" placeholder="请选择采标程度" disabled>
|
<el-select v-model="form.cbcd" placeholder="请选择采标程度" disabled>
|
||||||
<el-option label="采标程度1" value="1"></el-option>
|
<el-option v-for="item in cbcdOptions" :key="item.value" :label="item.label" :value="item.value"></el-option>
|
||||||
<el-option label="采标程度2" value="2"></el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<!-- <el-form-item label="相关流程" prop="xglc" class="add-form-item form-item-disabled">-->
|
<!-- <el-form-item label="相关流程" prop="xglc" class="add-form-item form-item-disabled">-->
|
||||||
@@ -782,6 +781,7 @@
|
|||||||
applyArcticOptions: [], // 适用车型
|
applyArcticOptions: [], // 适用车型
|
||||||
categoryOptions: [], // 能源类型
|
categoryOptions: [], // 能源类型
|
||||||
gkglbmOptions: [], // 归口管理部门
|
gkglbmOptions: [], // 归口管理部门
|
||||||
|
cbcdOptions: [], // 采标程度
|
||||||
applyAuthOptions: [], // 适用认证
|
applyAuthOptions: [], // 适用认证
|
||||||
cysdOptions: [], // 我司参与深度
|
cysdOptions: [], // 我司参与深度
|
||||||
sycpxOptions: [], // 适用产品线
|
sycpxOptions: [], // 适用产品线
|
||||||
@@ -977,6 +977,7 @@
|
|||||||
this.txlbOptions = res.data.TXLBCLASS // 体系类别
|
this.txlbOptions = res.data.TXLBCLASS // 体系类别
|
||||||
this.qcdwOption = res.data.QCDW // 体系类别
|
this.qcdwOption = res.data.QCDW // 体系类别
|
||||||
this.gkglbmOptions = res.data.GKGLBM // 归口管理部门
|
this.gkglbmOptions = res.data.GKGLBM // 归口管理部门
|
||||||
|
this.cbcdOptions = res.data.DEGREESTANDARD // 采标程度
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -995,7 +995,8 @@
|
|||||||
<tree-select-new
|
<tree-select-new
|
||||||
width = "500"
|
width = "500"
|
||||||
:lazy=true
|
:lazy=true
|
||||||
:multiple=false
|
:multiple=true
|
||||||
|
:check-strictly=true
|
||||||
:modalShowFlag="modalShowFlag2"
|
:modalShowFlag="modalShowFlag2"
|
||||||
:drawerTitle="drawerTitle"
|
:drawerTitle="drawerTitle"
|
||||||
:url="url"
|
:url="url"
|
||||||
@@ -1005,7 +1006,8 @@
|
|||||||
<tree-select-new
|
<tree-select-new
|
||||||
width = "500"
|
width = "500"
|
||||||
:lazy=true
|
:lazy=true
|
||||||
:multiple=false
|
:multiple=true
|
||||||
|
:check-strictly=true
|
||||||
:modalShowFlag="modalShowFlag3"
|
:modalShowFlag="modalShowFlag3"
|
||||||
:drawerTitle="drawerTitle"
|
:drawerTitle="drawerTitle"
|
||||||
:url="url"
|
:url="url"
|
||||||
@@ -1015,7 +1017,8 @@
|
|||||||
<tree-select-new
|
<tree-select-new
|
||||||
width = "500"
|
width = "500"
|
||||||
:lazy=true
|
:lazy=true
|
||||||
:multiple=false
|
:multiple=true
|
||||||
|
:check-strictly=true
|
||||||
:modalShowFlag="modalShowFlag4"
|
:modalShowFlag="modalShowFlag4"
|
||||||
:drawerTitle="drawerTitle"
|
:drawerTitle="drawerTitle"
|
||||||
:url="url"
|
:url="url"
|
||||||
|
|||||||
@@ -1254,7 +1254,8 @@
|
|||||||
<tree-select-new
|
<tree-select-new
|
||||||
width = "500"
|
width = "500"
|
||||||
:lazy=true
|
:lazy=true
|
||||||
:multiple=false
|
:multiple=true
|
||||||
|
:check-strictly=true
|
||||||
:modalShowFlag="modalShowFlag2"
|
:modalShowFlag="modalShowFlag2"
|
||||||
:drawerTitle="drawerTitle"
|
:drawerTitle="drawerTitle"
|
||||||
:url="url"
|
:url="url"
|
||||||
@@ -1264,7 +1265,8 @@
|
|||||||
<tree-select-new
|
<tree-select-new
|
||||||
width = "500"
|
width = "500"
|
||||||
:lazy=true
|
:lazy=true
|
||||||
:multiple=false
|
:multiple=true
|
||||||
|
:check-strictly=true
|
||||||
:modalShowFlag="modalShowFlag3"
|
:modalShowFlag="modalShowFlag3"
|
||||||
:drawerTitle="drawerTitle"
|
:drawerTitle="drawerTitle"
|
||||||
:url="url"
|
:url="url"
|
||||||
@@ -1274,7 +1276,8 @@
|
|||||||
<tree-select-new
|
<tree-select-new
|
||||||
width = "500"
|
width = "500"
|
||||||
:lazy=true
|
:lazy=true
|
||||||
:multiple=false
|
:multiple=true
|
||||||
|
:check-strictly=true
|
||||||
:modalShowFlag="modalShowFlag4"
|
:modalShowFlag="modalShowFlag4"
|
||||||
:drawerTitle="drawerTitle"
|
:drawerTitle="drawerTitle"
|
||||||
:url="url"
|
:url="url"
|
||||||
@@ -4316,13 +4319,13 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="less" scoped>
|
<style lang="less" scoped>
|
||||||
/deep/ .icon-tree {
|
/deep/.icon-tree {
|
||||||
margin:0 5px 0 10px;
|
margin:0 5px 0 10px;
|
||||||
position:relative;
|
position:relative;
|
||||||
background:url('~@/assets/images/shangqi/img/tree-add.png');
|
background:url('~@/assets/images/shangqi/img/tree-add.png');
|
||||||
background-size:100% 100%;
|
background-size:100% 100%;
|
||||||
}
|
}
|
||||||
/deep/ .expanded{
|
/deep/.expanded{
|
||||||
background:url('~@/assets/images/shangqi/img/tree-sub.png');
|
background:url('~@/assets/images/shangqi/img/tree-sub.png');
|
||||||
background-size:100% 100%;
|
background-size:100% 100%;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user