|
|
@@ -136,7 +136,7 @@
|
|
|
<el-button style="float: right; padding: 3px 0" type="text" @click="equipmentdialog"
|
|
|
v-if="formDataCert.Status == 0">添加</el-button>
|
|
|
</div>
|
|
|
- <equipment-list ref="equipmentList" :data.sync="equipmentList" :SupplierCertId="certId"
|
|
|
+ <equipment-list ref="equipmentList" :data.sync="equipmentList" :SupplierCertId="certId+''"
|
|
|
:SupplierTypeCode="classId" :canadd="add_flat" height="360px" style="margin-top: 20px"></equipment-list>
|
|
|
</el-card>
|
|
|
|
|
|
@@ -146,7 +146,7 @@
|
|
|
<el-button style="float: right; padding: 3px 0" type="text" @click="performancedialog"
|
|
|
v-if="formDataCert.Status == 0">添加</el-button>
|
|
|
</div>
|
|
|
- <performance-list ref="performanceList" :data.sync="performanceList" :SupplierCertId="certId"
|
|
|
+ <performance-list ref="performanceList" :data.sync="performanceList" :SupplierCertId="certId+''"
|
|
|
:SupplierTypeCode="classId" :canadd="add_flat" style="margin-top: 20px"></performance-list>
|
|
|
</el-card>
|
|
|
|
|
|
@@ -156,7 +156,7 @@
|
|
|
<el-button style="float: right; padding: 3px 0" type="text" @click="patentdialog"
|
|
|
v-if="formDataCert.Status == 0">添加</el-button>
|
|
|
</div>
|
|
|
- <patent-list ref="patentList" :data.sync="patentList" :SupplierCertId="certId" :SupplierTypeCode="classId"
|
|
|
+ <patent-list ref="patentList" :data.sync="patentList" :SupplierCertId="certId+''" :SupplierTypeCode="classId"
|
|
|
:canadd="add_flat" height="360px" style="margin-top: 20px">
|
|
|
</patent-list>
|
|
|
</el-card>
|
|
|
@@ -167,14 +167,13 @@
|
|
|
<el-button style="float: right; padding: 3px 0" type="text" @click="winningdialog"
|
|
|
v-if="formDataCert.Status == 0">添加</el-button>
|
|
|
</div>
|
|
|
- <winning-list ref="winningList" :data.sync="winningList" :SupplierCertId="certId"
|
|
|
+ <winning-list ref="winningList" :data.sync="winningList" :SupplierCertId="certId+''"
|
|
|
:SupplierTypeCode="classId" :canadd="add_flat" height="360px" style="margin-top: 20px">
|
|
|
</winning-list>
|
|
|
</el-card>
|
|
|
</el-tab-pane>
|
|
|
-
|
|
|
<el-tab-pane label="企业资质" :disabled="!certId">
|
|
|
- <business-list ref="businessList" :data.sync="businessList" :SupplierCertId="certId" :SupplierId="serviceId"
|
|
|
+ <business-list ref="businessList" :data.sync="businessList" :SupplierCertId="certId+''" :SupplierId="serviceId"
|
|
|
:SupplierTypeCode="classId" :canadd="add_flat" @close="AuditEntity" height="360px" style="margin-top: 20px">
|
|
|
</business-list>
|
|
|
</el-tab-pane>
|
|
|
@@ -355,11 +354,15 @@
|
|
|
},
|
|
|
}
|
|
|
},
|
|
|
+ mounted () {
|
|
|
+ this.serviceId = this.$route.params.opera + ''
|
|
|
+ if (this.$route.query.certid) {
|
|
|
+ this.certId = this.$route.query.certid
|
|
|
+ }
|
|
|
+ },
|
|
|
created() {
|
|
|
this.serviceId = this.$route.params.opera + ''
|
|
|
- console.log(this.$route.query, 'this.$route.query')
|
|
|
if (this.$route.query.certid) {
|
|
|
- console.log('1')
|
|
|
this.certId = this.$route.query.certid + ''
|
|
|
}
|
|
|
if (this.serviceId !== 'add' && this.serviceId > 0) {
|