|
|
@@ -4,7 +4,7 @@
|
|
|
<a href="/applyPurchase#opportunities">
|
|
|
<img src="/images/applyPurchase/apply-ad.png" alt="">
|
|
|
</a>
|
|
|
- <i @click="isShowApplyAdv = false"></i>
|
|
|
+ <i @click="ShowApplyAdv = false"></i>
|
|
|
</div>
|
|
|
<nav class="navbar">
|
|
|
<div class="navbar-container container">
|
|
|
@@ -75,12 +75,16 @@
|
|
|
// searchEnterpriseArr: [],
|
|
|
// keyword: '',
|
|
|
// isSearching: false
|
|
|
+ ShowApplyAdv: true,
|
|
|
showEnterpriseToggle: false
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
|
isShowApplyAdv () {
|
|
|
- return this.$route.path.indexOf('/applyPurchase') !== -1
|
|
|
+ if (this.$route.path.indexOf('/applyPurchase') === -1) {
|
|
|
+ this.ShowApplyAdv = true
|
|
|
+ }
|
|
|
+ return this.ShowApplyAdv && this.$route.path.indexOf('/applyPurchase') !== -1
|
|
|
},
|
|
|
user () {
|
|
|
// console.log(this.$store.state.option.user)
|
|
|
@@ -212,6 +216,25 @@
|
|
|
.header .navbar .navbar-container .navbar-right .dropdown .dropdown-menu .menu-item{
|
|
|
height: 30px;
|
|
|
}
|
|
|
+ .apply-adv{
|
|
|
+ margin: 0 auto;
|
|
|
+ min-width: 1190px;
|
|
|
+ position: relative;
|
|
|
+ img{
|
|
|
+ max-width: 100%;
|
|
|
+ min-width: 1190px;
|
|
|
+ }
|
|
|
+ i {
|
|
|
+ background: url("/images/search/search-close.png")no-repeat;
|
|
|
+ width: 16px;
|
|
|
+ height: 16px;
|
|
|
+ position: absolute;
|
|
|
+ right: 8px;
|
|
|
+ top: 8px;
|
|
|
+ cursor: pointer;
|
|
|
+ z-index: 20000;
|
|
|
+ }
|
|
|
+ }
|
|
|
.dropdown-menu>li>a{
|
|
|
padding: 0;
|
|
|
line-height: 30px;
|
|
|
@@ -238,7 +261,7 @@
|
|
|
$nav-height: 38px;
|
|
|
|
|
|
.header {
|
|
|
- height: $nav-height;
|
|
|
+ /* height: $nav-height;*/
|
|
|
|
|
|
.navbar {
|
|
|
width: 100%;
|