|
@@ -0,0 +1,331 @@
|
|
|
+<template>
|
|
|
+ <div class="on-trial">
|
|
|
+ <div class="on-title">
|
|
|
+ <p
|
|
|
+ @click="switchInformation('申请')"
|
|
|
+ :style="{ opacity: onTrialData.informationName == '申请' ? '1' : '.6' }"
|
|
|
+ >
|
|
|
+ 申请信息
|
|
|
+ </p>
|
|
|
+ <p
|
|
|
+ @click="switchInformation('试用')"
|
|
|
+ :style="{ opacity: onTrialData.informationName == '试用' ? '1' : '.6' }"
|
|
|
+ >
|
|
|
+ 试用信息
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="content-1" v-if="onTrialData.informationName == '申请'">
|
|
|
+ <img src="../../../assets/image/queshao.png" alt="" />
|
|
|
+ <p>暂无申请内容</p>
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ class="content-2"
|
|
|
+ v-if="onTrialData.informationName == '申请' && false"
|
|
|
+ >
|
|
|
+ <div class="vision-list">
|
|
|
+ <p
|
|
|
+ :class="{ select: onTrialData.visionName == '云厂长企业版' }"
|
|
|
+ @click="switchTab('云厂长企业版')"
|
|
|
+ >
|
|
|
+ 云厂长企业版
|
|
|
+ </p>
|
|
|
+ <p
|
|
|
+ :class="{ select: onTrialData.visionName == '云厂长专业版' }"
|
|
|
+ @click="switchTab('云厂长专业版')"
|
|
|
+ >
|
|
|
+ 云厂长专业版
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+ <div class="text">
|
|
|
+ <p class="label-1">姓名</p>
|
|
|
+ <p class="text-1">陈宇</p>
|
|
|
+ </div>
|
|
|
+ <div class="text">
|
|
|
+ <p class="label-1">公司名称</p>
|
|
|
+ <p class="text-1">天津承轴科技有限公司</p>
|
|
|
+ </div>
|
|
|
+ <div class="text">
|
|
|
+ <p class="label-1">邮箱</p>
|
|
|
+ <p class="text-1">bajo@zezbida.pm</p>
|
|
|
+ </div>
|
|
|
+ <div class="text">
|
|
|
+ <p class="label-1">手机号</p>
|
|
|
+ <p class="text-1">14265743970</p>
|
|
|
+ </div>
|
|
|
+ <div class="text">
|
|
|
+ <p class="label-1">试用版本</p>
|
|
|
+ <p class="text-1">云厂长企业版</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="content-3" v-if="onTrialData.informationName == '试用'">
|
|
|
+ <div class="vision-list">
|
|
|
+ <p
|
|
|
+ :class="{ select: onTrialData.visionName == '云厂长企业版' }"
|
|
|
+ @click="switchTab('云厂长企业版')"
|
|
|
+ >
|
|
|
+ 云厂长企业版
|
|
|
+ </p>
|
|
|
+ <div class="application">申请成功</div>
|
|
|
+ <div class="applying">申请中</div>
|
|
|
+ <p
|
|
|
+ :class="{ select: onTrialData.visionName == '云厂长专业版' }"
|
|
|
+ @click="switchTab('云厂长专业版')"
|
|
|
+ >
|
|
|
+ 云厂长专业版
|
|
|
+ </p>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="information-content">
|
|
|
+ <div class="text-2">
|
|
|
+ <p class="label-2">账号</p>
|
|
|
+ <div class="text-3">
|
|
|
+ <p class="value-1">YCZ-crm004224</p>
|
|
|
+ <p class="cope" @click="cope('111')">一键复制</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="text-2">
|
|
|
+ <p class="label-2">密码</p>
|
|
|
+ <div class="text-3">
|
|
|
+ <p class="value-1">YCZ-crm004224</p>
|
|
|
+ <p class="cope" @click="cope('111')">一键复制</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="text-2">
|
|
|
+ <p class="label-2">试用地址</p>
|
|
|
+ <div class="text-3">
|
|
|
+ <p class="value-1">YCZ-crm004224</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="submit">
|
|
|
+ <img class="submit-img" src="../../../assets/image/weitu.png" alt="" />
|
|
|
+ <p class="submit-text">申请已提交</p>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script setup lang="ts">
|
|
|
+import { reactive } from "vue";
|
|
|
+import { ElMessage } from "element-plus";
|
|
|
+
|
|
|
+const onTrialData = reactive({
|
|
|
+ visionName: "云厂长企业版",
|
|
|
+ informationName: "申请",
|
|
|
+});
|
|
|
+
|
|
|
+//切换试用版本
|
|
|
+const switchTab = (str: string) => {
|
|
|
+ onTrialData.visionName = str;
|
|
|
+};
|
|
|
+
|
|
|
+//切换信息
|
|
|
+const switchInformation = (str: string) => {
|
|
|
+ onTrialData.informationName = str;
|
|
|
+};
|
|
|
+
|
|
|
+//复制
|
|
|
+const cope = (text: string) => {
|
|
|
+ let oInput = document.createElement("input");
|
|
|
+ oInput.value = text;
|
|
|
+ document.body.appendChild(oInput);
|
|
|
+ oInput.select(); // 选择对象;
|
|
|
+ document.execCommand("Copy"); // 执行浏览器复制命令
|
|
|
+ oInput.remove();
|
|
|
+ ElMessage({
|
|
|
+ type: "success",
|
|
|
+ message: "复制成功!",
|
|
|
+ });
|
|
|
+};
|
|
|
+</script>
|
|
|
+<style scoped lang="less">
|
|
|
+.on-trial {
|
|
|
+ padding: 32px 40px;
|
|
|
+ width: 904px;
|
|
|
+ border-radius: 10px;
|
|
|
+ background-color: #fff;
|
|
|
+ .on-title {
|
|
|
+ font-size: 22px;
|
|
|
+ color: #222;
|
|
|
+ display: flex;
|
|
|
+ p {
|
|
|
+ margin-right: 42px;
|
|
|
+ user-select: none;
|
|
|
+ cursor: pointer;
|
|
|
+ opacity: 0.6;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .content-1 {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ margin-top: 100px;
|
|
|
+ img {
|
|
|
+ width: 216px;
|
|
|
+ height: 170px;
|
|
|
+ }
|
|
|
+ p {
|
|
|
+ font-size: 16px;
|
|
|
+ color: #222;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .content-2 {
|
|
|
+ margin-top: 42px;
|
|
|
+ .vision-list {
|
|
|
+ display: flex;
|
|
|
+ padding-bottom: 20px;
|
|
|
+ border-bottom: 1px solid rgba(151, 151, 151, 0.1);
|
|
|
+ p {
|
|
|
+ margin-right: 34px;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #222;
|
|
|
+ opacity: 0.5;
|
|
|
+ user-select: none;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ .select {
|
|
|
+ opacity: 1;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+ .select::before {
|
|
|
+ content: "";
|
|
|
+ display: block;
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ bottom: -100%;
|
|
|
+ width: 50%;
|
|
|
+ height: 2px;
|
|
|
+ background-color: #0d0fff;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .text {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ height: 73px;
|
|
|
+ border-bottom: 1px solid rgba(151, 151, 151, 0.1);
|
|
|
+ .label-1 {
|
|
|
+ font-size: 16px;
|
|
|
+ color: #222;
|
|
|
+ width: 150px;
|
|
|
+ opacity: 0.6;
|
|
|
+ }
|
|
|
+ .text-1 {
|
|
|
+ font-size: 16px;
|
|
|
+ color: #222;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .text:last-child {
|
|
|
+ border: none;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .content-3 {
|
|
|
+ .vision-list {
|
|
|
+ display: flex;
|
|
|
+ padding-bottom: 20px;
|
|
|
+ border-bottom: 1px solid rgba(151, 151, 151, 0.1);
|
|
|
+ margin-top: 42px;
|
|
|
+ p {
|
|
|
+ margin-right: 34px;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #222;
|
|
|
+ opacity: 0.5;
|
|
|
+ user-select: none;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+
|
|
|
+ .application {
|
|
|
+ width: 70px;
|
|
|
+ height: 24px;
|
|
|
+ background-image: url("../../../assets/image/shenqingchenggong.png");
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 24px;
|
|
|
+ color: #28a745;
|
|
|
+ font-size: 12px;
|
|
|
+ }
|
|
|
+ .applying {
|
|
|
+ width: 70px;
|
|
|
+ height: 24px;
|
|
|
+ background-image: url("../../../assets/image/shenqingzhong.png");
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ text-align: center;
|
|
|
+ line-height: 24px;
|
|
|
+ color: #2264dc;
|
|
|
+ font-size: 12px;
|
|
|
+ }
|
|
|
+ .select {
|
|
|
+ opacity: 1;
|
|
|
+ position: relative;
|
|
|
+ }
|
|
|
+ .select::before {
|
|
|
+ content: "";
|
|
|
+ display: block;
|
|
|
+ position: absolute;
|
|
|
+ left: 50%;
|
|
|
+ bottom: -100%;
|
|
|
+ width: 50%;
|
|
|
+ height: 2px;
|
|
|
+ background-color: #0d0fff;
|
|
|
+ transform: translate(-50%, -50%);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .information-content {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ margin-top: 42px;
|
|
|
+ .text-2 {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ margin-bottom: 26px;
|
|
|
+ .label-2 {
|
|
|
+ font-size: 16px;
|
|
|
+ color: #222;
|
|
|
+ margin-right: 20px;
|
|
|
+ display: flex;
|
|
|
+ justify-content: flex-end;
|
|
|
+ width: 70px;
|
|
|
+ }
|
|
|
+ .text-3 {
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ background-color: #f5f5f7;
|
|
|
+ width: 428px;
|
|
|
+ height: 20px;
|
|
|
+ line-height: 30px;
|
|
|
+ padding: 12px 16px;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #222;
|
|
|
+ border: 1px solid #e4e4e4;
|
|
|
+ .cope {
|
|
|
+ color: #0d0fff;
|
|
|
+ padding-left: 10px;
|
|
|
+ border-left: 1px solid rgba(151, 151, 151, 0.2);
|
|
|
+ user-select: none;
|
|
|
+ cursor: pointer;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .submit {
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ .submit-img {
|
|
|
+ width: 160px;
|
|
|
+ height: 160px;
|
|
|
+ }
|
|
|
+ .submit-text {
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|