Compare commits
3 Commits
8de2509ac5
...
1b344d37ad
| Author | SHA1 | Date |
|---|---|---|
|
|
1b344d37ad | |
|
|
8061547cc5 | |
|
|
d0ee98f7c9 |
|
|
@ -53,7 +53,7 @@
|
|||
<style lang="scss">
|
||||
.footer-container {
|
||||
margin-top: 40px;
|
||||
height: 650px;
|
||||
// height: 650px;
|
||||
border-top: 1px solid #979797;
|
||||
background: url('../../assets/img/home/2023_12_01_beijing2/beijing2.png') no-repeat;
|
||||
background-size: cover;
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
<ul class="item-details">
|
||||
<li class="address">
|
||||
<span>{{ company }}</span>
|
||||
<span>{{ operateAddress }}</span>
|
||||
<span style="text-align: right; color: #ff4800">
|
||||
<i style="font-size: 10px">¥</i>
|
||||
<i style="font-size: 14px; font-weight: bold">{{ price }}</i>
|
||||
|
|
@ -51,6 +51,10 @@ const props: any = defineProps({
|
|||
type: String,
|
||||
default: '安徽某科技有限公司',
|
||||
},
|
||||
operateAddress: {
|
||||
type: String,
|
||||
default: '安徽某科技有限公司',
|
||||
},
|
||||
price: {
|
||||
type: [String, Number],
|
||||
default: 99,
|
||||
|
|
|
|||
|
|
@ -5,6 +5,12 @@ import NavMenu from 'components/Navmenu/index.vue'
|
|||
<template>
|
||||
<!-- 企业专区 -->
|
||||
<NavMenu />
|
||||
|
||||
<div class="container"></div>
|
||||
</template>
|
||||
|
||||
<style></style>
|
||||
<style scoped>
|
||||
.container {
|
||||
height: 600px;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -308,6 +308,7 @@ const onSelectItem = (type: number) => {
|
|||
:id="g.maId"
|
||||
:companyId="g.companyId"
|
||||
:company="g.companyName"
|
||||
:operateAddress="g.operateAddress"
|
||||
:name="g.deviceName"
|
||||
:price="g.dayLeasePrice"
|
||||
:url="g.picUrl"
|
||||
|
|
|
|||
Loading…
Reference in New Issue