Commit 494357a8 authored by zL's avatar zL

fix:修复溯源环境视图更新问题

parent ffeffec2
...@@ -127,19 +127,16 @@ ...@@ -127,19 +127,16 @@
class="home-3-in-right" class="home-3-in-right"
v-show="currentDeploy === 0" v-show="currentDeploy === 0"
src="../../../assets/images/Home/home3_baner3.png" src="../../../assets/images/Home/home3_baner3.png"
alt
/> />
<img <img
class="home-3-in-right" class="home-3-in-right"
v-show="currentDeploy === 1" v-show="currentDeploy === 1"
src="../../../assets/images/Home/home3_baner1.png" src="../../../assets/images/Home/home3_baner1.png"
alt
/> />
<img <img
class="home-3-in-right" class="home-3-in-right"
v-show="currentDeploy === 2" v-show="currentDeploy === 2"
src="../../../assets/images/Home/home3_baner2.png" src="../../../assets/images/Home/home3_baner2.png"
alt
/> />
</div> </div>
</section> </section>
...@@ -231,8 +228,9 @@ ...@@ -231,8 +228,9 @@
</template> </template>
<script lang="ts"> <script lang="ts">
import { Vue } from "vue-property-decorator"; import { Component, Vue } from "vue-property-decorator";
let UrlPrefixObj = require("@/config/UrlPrefix"); let UrlPrefixObj = require("@/config/UrlPrefix");
@Component({})
export default class Home extends Vue { export default class Home extends Vue {
public featuresContent = [ public featuresContent = [
{ text: `产品资料隐私性` }, { text: `产品资料隐私性` },
...@@ -797,16 +795,17 @@ export default class Home extends Vue { ...@@ -797,16 +795,17 @@ export default class Home extends Vue {
transition: all 0.2s linear; transition: all 0.2s linear;
} }
.home-3-in-left > .content { .home-3-in-left {
opacity: 0.3; .content {
} opacity: 0.3;
.home-3-in-left > .content-click { }
opacity: 1; .content-click {
cursor: pointer; opacity: 1;
transform: scale(1.1); cursor: pointer;
transition: all 0.2s linear; transform: scale(1.1);
transition: all 0.2s linear;
}
} }
.home-3-in-right { .home-3-in-right {
width: 680px; width: 680px;
height: 380px; height: 380px;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment