|
@@ -13,7 +13,7 @@
|
|
class="index-carousel-box">
|
|
class="index-carousel-box">
|
|
<div class="client-container">
|
|
<div class="client-container">
|
|
<div class="banner-btn-groups">
|
|
<div class="banner-btn-groups">
|
|
- <freeTrialBtn class="free-train-btn btn-item" myType="kaoshi"/>
|
|
|
|
|
|
+ <freeTrialBtn class="free-train-btn btn-item" myType="kaoshi" :select="true" @need-select="onNeedSelect" />
|
|
<onlineInformationBtn class="online-information-btn btn-item" />
|
|
<onlineInformationBtn class="online-information-btn btn-item" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -90,6 +90,8 @@
|
|
<!-- 申请方案 -->
|
|
<!-- 申请方案 -->
|
|
<applicationDialog :visible.sync="telDl"></applicationDialog>
|
|
<applicationDialog :visible.sync="telDl"></applicationDialog>
|
|
|
|
|
|
|
|
+ <selectDialog :show.sync="show"></selectDialog>
|
|
|
|
+
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -101,6 +103,7 @@ import onlineInformationBtn from "~/components/common/onlineInformationBtn";
|
|
import applicationDialog from "~/components/common/applicationDialog";
|
|
import applicationDialog from "~/components/common/applicationDialog";
|
|
import newsComp from "~/components/common/newsComp";
|
|
import newsComp from "~/components/common/newsComp";
|
|
import imgCardLv1 from "~/components/common/layout/imgDes/imgCardLv1";
|
|
import imgCardLv1 from "~/components/common/layout/imgDes/imgCardLv1";
|
|
|
|
+import selectDialog from "~/components/common/selectDialog";
|
|
import {BannerImgs, classifys} from "~/defaultConfig"
|
|
import {BannerImgs, classifys} from "~/defaultConfig"
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -137,6 +140,7 @@ export default {
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ show: false,
|
|
productList: [
|
|
productList: [
|
|
{
|
|
{
|
|
content: {
|
|
content: {
|
|
@@ -579,7 +583,8 @@ export default {
|
|
freeTrialBtn,
|
|
freeTrialBtn,
|
|
onlineInformationBtn,
|
|
onlineInformationBtn,
|
|
applicationDialog,
|
|
applicationDialog,
|
|
- newsComp
|
|
|
|
|
|
+ newsComp,
|
|
|
|
+ selectDialog
|
|
},
|
|
},
|
|
head() {
|
|
head() {
|
|
return {
|
|
return {
|
|
@@ -620,6 +625,9 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ onNeedSelect() {
|
|
|
|
+ this.show = true;
|
|
|
|
+ },
|
|
onApplyBtnActive() {
|
|
onApplyBtnActive() {
|
|
this.telDl = true;
|
|
this.telDl = true;
|
|
},
|
|
},
|