|
@@ -23,10 +23,7 @@
|
|
|
</div>
|
|
|
<!-- 内容 -->
|
|
|
<div v-for="(item, idx) in tabslist" :key="idx" class="contenta">
|
|
|
- <div
|
|
|
- v-if="idx == activeName"
|
|
|
- style="display: flex; align-items: center"
|
|
|
- >
|
|
|
+ <div v-if="idx == activeName" style="display: flex; align-items: center">
|
|
|
<div class="left">
|
|
|
<div class="title">{{ item.title }}</div>
|
|
|
<div class="content">
|
|
@@ -39,7 +36,7 @@
|
|
|
<div>{{ child }}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="trybtn" v-if="item.button_title">申请试用</div>
|
|
|
+ <div class="trybtn" v-if="item.button_title" @click="apply">申请试用</div>
|
|
|
</div>
|
|
|
<div class="right">
|
|
|
<!-- <img class="right" src="../../assets/images/model.png" alt="" /> -->
|
|
@@ -48,12 +45,39 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <forma :dialogTableVisible2="dialogTableVisible2" @clos="close"></forma>
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
import { useRouter } from "vue-router";
|
|
|
import { onMounted, ref, reactive } from "vue";
|
|
|
-onMounted(() => {});
|
|
|
+import forma from "../../components/Form/from.vue";
|
|
|
+import { ElMessage, ElMessageBox } from "element-plus";
|
|
|
+const dialogTableVisible2 = ref(false);
|
|
|
+//申请
|
|
|
+//是否登录
|
|
|
+const is_login = ref(false);
|
|
|
+if (localStorage.getItem("access_token")) {
|
|
|
+ is_login.value = true;
|
|
|
+} else {
|
|
|
+ is_login.value = false;
|
|
|
+}
|
|
|
+const apply = () => {
|
|
|
+ if (is_login.value) {
|
|
|
+ dialogTableVisible2.value = true;
|
|
|
+ } else {
|
|
|
+ ElMessage({
|
|
|
+ message: "请先登录",
|
|
|
+ type: "error",
|
|
|
+ });
|
|
|
+ }
|
|
|
+};
|
|
|
+//关闭
|
|
|
+const close = () => {
|
|
|
+ dialogTableVisible2.value = false;
|
|
|
+};
|
|
|
+
|
|
|
+
|
|
|
const activeName = ref(0);
|
|
|
|
|
|
const handleClick = (tab, event) => {
|
|
@@ -83,10 +107,10 @@ const props = defineProps({
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
-:deep(.el-tabs__item.is-active){
|
|
|
+:deep(.el-tabs__item.is-active) {
|
|
|
color: rgba(13, 15, 255, 1) !important;
|
|
|
}
|
|
|
-:deep(.el-tabs__active-bar){
|
|
|
+:deep(.el-tabs__active-bar) {
|
|
|
background-color: rgba(13, 15, 255, 1) !important;
|
|
|
}
|
|
|
.bgbox {
|