rose 4 years ago
parent
commit
226f820aeb
  1. 2
      .env
  2. 2
      .env.development
  3. 2
      .env.production
  4. 2
      src/components/HeadNav/HeadNav.vue
  5. 10
      src/components/PlatformList/Fruit.vue
  6. 21
      src/views/Activity/ActDetails.vue
  7. 8
      src/views/FirstPage/FirstPage.vue
  8. 16
      src/views/ItInformation/ItDetails.vue

2
.env

@ -1,3 +1,3 @@
VUE_APP_MODE=production
VUE_APP_PREVIEW=false
VUE_APP_URL=http://www.sxgreenvalley.com/
VUE_APP_URL=http://www.sxgreenvalley.com/green-phone

2
.env.development

@ -1,7 +1,7 @@
VUE_APP_MODE=development
VUE_APP_NODE_ENV=development
VUE_APP_SCENE=greenvalley
VUE_APP_BASE_URL=http://www.sxgreenvalley.com/
VUE_APP_BASE_URL=http://www.sxgreenvalley.com/green-phone
VUE_APP_API_URL=http://www.sxgreenvalley.com/gateway
VUE_APP_PROXY_URL=/gateway
VUE_APP_PUBLIC_PATH=/

2
.env.production

@ -1,7 +1,7 @@
VUE_APP_MODE=production
VUE_APP_NODE_ENV=production
VUE_APP_SCENE=greenvalley
VUE_APP_BASE_URL=http://www.sxgreenvalley.com/
VUE_APP_BASE_URL=http://www.sxgreenvalley.com/green-phone
VUE_APP_API_URL=http://www.sxgreenvalley.com/gateway
VUE_APP_PROXY_URL=/gateway
VUE_APP_PUBLIC_PATH=/

2
src/components/HeadNav/HeadNav.vue

@ -2,7 +2,7 @@
<div>
<div class="white d-flex justify-space-between flex-nowrap px-5 align-center mt-4">
<a-icon class="pointer " style="font-size:1.4rem" type="unordered-list" v-show="!showNav" @click=" showNav =true" />
<a-icon type="close" :size="large" style="font-size:1.4rem" v-show="showNav" @click=" showNav =false" />
<a-icon type="close" style="font-size:1.4rem" v-show="showNav" @click=" showNav =false" />
<img

10
src/components/PlatformList/Fruit.vue

@ -1,6 +1,6 @@
<template>
<div>
<div class="inner d-flex flex-wrap">
<div class="d-flex flex-wrap">
<div
:class="(index + 1) % 4 === 0 ? 'margin-0' : ''"
:key="index"
@ -118,13 +118,13 @@ export default {
.item-box {
position: relative;
width: 41%;
width: 45%;
background: #fff;
margin-left: 6%;
margin-left: 4%;
border-radius: 4px;
margin-bottom: 40px;
margin-bottom: 1rem;
padding: 10px;
padding-bottom: 60px;
padding-bottom: 0.5rem;
}
.margin-0 {

21
src/views/Activity/ActDetails.vue

@ -8,7 +8,7 @@
<div v-if="hdDetail !== null">
<div class="policy-info">
<div>
<span>
<div>
<a-icon
class="baseColor"
style="font-size: 14px; margin-right: 10px"
@ -18,11 +18,11 @@
{{ hdDetail.releaseTime }}
<span v-if="hdDetail.closeTime">- {{ hdDetail.closeTime }}</span>
</span>
</span>
<span style="margin-left: 60px">
</div>
<div>
<a-icon class="baseColor" style="margin-right: 10px" type="environment" />
<span>{{ hdDetail.address }}</span>
</span>
</div>
</div>
<!-- </div> -->
<!-- <div class="policy-info"> -->
@ -44,7 +44,7 @@
</div>
<a-button
disabled
style="margin: 50px 25px"
style="margin: 50px 25px;width:88%"
v-if="hdDetail.releaseTime && Date.parse(hdDetail.releaseTime) < Date.parse(nowData)"
>报名已结束</a-button>
<enroll
@ -145,13 +145,16 @@ export default {
}
.policy-info {
height: 76px;
line-height: 76px;
text-align: center;
// height: 76px;
line-height: 1.3rem;
text-align: left;
padding-left: 1rem
margin-bottom: 1rem
margin-top: 1rem
}
.policy-content {
padding: 0 25px;
padding: 0 1rem;
font-size: 16px;
color: rgba(0, 0, 0, 0.65);
font-weight: 400;

8
src/views/FirstPage/FirstPage.vue

@ -16,7 +16,7 @@
</div>
</a-col> -->
<a-col>
<el-carousel :autoplay="false" type="card" height="10rem">
<el-carousel trigger="mousemove" arrow="nerver" indicator-position="none" :autoplay="false" type="card" height="10rem">
<el-carousel-item v-for="server in services" :key="server.id">
<div @click="$router.push(server.path)">
<img :src="server.url" style="width:30rem;height:10rem" />
@ -275,6 +275,12 @@ export default {
.hd-news {
background: white;
}
/deep/ .el-carousel__arrow--right{
display: none!important
}
/deep/ .el-carousel__arrow--left{
display: none!important
}
</style>

16
src/views/ItInformation/ItDetails.vue

@ -57,12 +57,11 @@ body {
.box {
width: 100%;
position: relative;
margin: 80px auto;
margin: 0.3rem auto;
background: #fff;
min-height: 1037px;
overflow: hidden;
opacity: 1;
padding-bottom: 480px;
padding-bottom: 3rem;
}
.back-btn {
@ -72,7 +71,7 @@ body {
}
.policy-title {
height: 120px;
height: 90px;
font-size: 24px;
font-family: Microsoft YaHei;
font-weight: 400;
@ -87,9 +86,12 @@ body {
}
.policy-info {
height: 76px;
line-height: 76px;
text-align: center;
// height: 76px;
line-height: 1.3rem;
text-align: left;
padding-left: 1rem
margin-bottom: 1rem
margin-top: 1rem
}
.policy-content {

Loading…
Cancel
Save