You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
504 B
29 lines
504 B
2 years ago
|
<template>
|
||
|
<block-header title="基本信息">
|
||
|
|
||
|
</block-header>
|
||
|
</template>
|
||
|
<script>
|
||
|
import blockHeader from "@/views/firmContent/components/blockHeader/index.vue"
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
}
|
||
|
},
|
||
|
props:['zczh'],
|
||
|
components:{blockHeader},
|
||
|
methods:{
|
||
|
async ylqxJnyelcp(){
|
||
|
let data = await this.$api.productDetails.ylqxJnyelcp(this.zczh);
|
||
|
console.log(data)
|
||
|
}
|
||
|
},
|
||
|
mounted(){
|
||
|
this.ylqxJnyelcp()
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
|
||
|
</style>
|