26 lines
520 B
Vue
26 lines
520 B
Vue
|
|
<template>
|
||
|
|
<view>
|
||
|
|
<Navbar title="分包商详情" />
|
||
|
|
<ContractorInfo title="分包商基本信息" label="分包商名称" :isSubcontractor="true" :params="opt" />
|
||
|
|
</view>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import ContractorInfo from './components/ContractorInfo'
|
||
|
|
export default {
|
||
|
|
components: { ContractorInfo },
|
||
|
|
data() {
|
||
|
|
return {
|
||
|
|
opt: {}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
onLoad(opt) {
|
||
|
|
this.opt = JSON.parse(opt.params)
|
||
|
|
console.log('opt-分包商 信息', this.opt)
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
</style>
|