|
@@ -15,90 +15,91 @@
|
|
|
</p>
|
|
|
</div>
|
|
|
|
|
|
- <div class="content-1" v-if="onTrialData.informationName == '申请'">
|
|
|
+ <div
|
|
|
+ class="content-1"
|
|
|
+ v-if="
|
|
|
+ onTrialData.informationName == '申请' && applicationList.length == 0
|
|
|
+ "
|
|
|
+ >
|
|
|
<img src="../../../assets/image/queshao.png" alt="" />
|
|
|
<p>暂无申请内容</p>
|
|
|
</div>
|
|
|
<div
|
|
|
class="content-2"
|
|
|
- v-if="onTrialData.informationName == '申请' && false"
|
|
|
+ v-if="onTrialData.informationName == '申请' && applicationList.length > 0"
|
|
|
>
|
|
|
<div class="vision-list">
|
|
|
<p
|
|
|
- :class="{ select: onTrialData.visionName == '云厂长企业版' }"
|
|
|
- @click="switchTab('云厂长企业版')"
|
|
|
- >
|
|
|
- 云厂长企业版
|
|
|
- </p>
|
|
|
- <p
|
|
|
- :class="{ select: onTrialData.visionName == '云厂长专业版' }"
|
|
|
- @click="switchTab('云厂长专业版')"
|
|
|
+ v-for="(item, index) in applicationList"
|
|
|
+ :key="item.id"
|
|
|
+ :class="{ select: onTrialData.visionName == item.type_name }"
|
|
|
+ @click="switchTab(item.type_name, index)"
|
|
|
>
|
|
|
- 云厂长专业版
|
|
|
+ 云厂长{{ item.type_name }}
|
|
|
</p>
|
|
|
</div>
|
|
|
<div class="text">
|
|
|
<p class="label-1">姓名</p>
|
|
|
- <p class="text-1">陈宇</p>
|
|
|
+ <p class="text-1">{{ informationData.realname }}</p>
|
|
|
</div>
|
|
|
<div class="text">
|
|
|
<p class="label-1">公司名称</p>
|
|
|
- <p class="text-1">天津承轴科技有限公司</p>
|
|
|
+ <p class="text-1">{{ informationData.company_name }}</p>
|
|
|
</div>
|
|
|
<div class="text">
|
|
|
<p class="label-1">邮箱</p>
|
|
|
- <p class="text-1">bajo@zezbida.pm</p>
|
|
|
+ <p class="text-1">{{ informationData.email }}</p>
|
|
|
</div>
|
|
|
<div class="text">
|
|
|
<p class="label-1">手机号</p>
|
|
|
- <p class="text-1">14265743970</p>
|
|
|
+ <p class="text-1">{{ informationData.mobile }}</p>
|
|
|
</div>
|
|
|
<div class="text">
|
|
|
<p class="label-1">试用版本</p>
|
|
|
- <p class="text-1">云厂长企业版</p>
|
|
|
+ <p class="text-1">云厂长{{ informationData.type_name }}</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="content-3" v-if="onTrialData.informationName == '试用'">
|
|
|
<div class="vision-list">
|
|
|
- <p
|
|
|
- :class="{ select: onTrialData.visionName == '云厂长企业版' }"
|
|
|
- @click="switchTab('云厂长企业版')"
|
|
|
+ <div
|
|
|
+ v-for="(item, index) in applicationList"
|
|
|
+ :key="item.id"
|
|
|
+ style="display: flex"
|
|
|
>
|
|
|
- 云厂长企业版
|
|
|
- </p>
|
|
|
- <div class="application">申请成功</div>
|
|
|
- <div class="applying">申请中</div>
|
|
|
- <p
|
|
|
- :class="{ select: onTrialData.visionName == '云厂长专业版' }"
|
|
|
- @click="switchTab('云厂长专业版')"
|
|
|
- >
|
|
|
- 云厂长专业版
|
|
|
- </p>
|
|
|
+ <p
|
|
|
+ :class="{ select: onTrialData.visionName == item.type_name }"
|
|
|
+ @click="switchTab(item.type_name, index)"
|
|
|
+ >
|
|
|
+ 云厂长{{ item.type_name }}
|
|
|
+ </p>
|
|
|
+ <div class="application" v-if="item.status == 'pass'">申请成功</div>
|
|
|
+ <div class="applying" v-if="item.status == 'apply'">申请中</div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="information-content">
|
|
|
+ <div class="information-content" v-if="informationData.status == 'pass'">
|
|
|
<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>
|
|
|
+ <p class="value-1">{{ informationData.account }}</p>
|
|
|
+ <p class="cope" @click="cope(informationData.account)">一键复制</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>
|
|
|
+ <p class="value-1">{{ informationData.password }}</p>
|
|
|
+ <p class="cope" @click="cope(informationData.password)">一键复制</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="value-1">{{ informationData.url }}</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <div class="submit">
|
|
|
+ <div class="submit" v-if="informationData.status == 'apply'">
|
|
|
<img class="submit-img" src="../../../assets/image/weitu.png" alt="" />
|
|
|
<p class="submit-text">申请已提交</p>
|
|
|
</div>
|
|
@@ -106,17 +107,22 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script setup lang="ts">
|
|
|
-import { reactive } from "vue";
|
|
|
+import { reactive, onMounted, ref } from "vue";
|
|
|
import { ElMessage } from "element-plus";
|
|
|
+import { getApplicationInformation } from "../../../api/homepage";
|
|
|
|
|
|
const onTrialData = reactive({
|
|
|
visionName: "云厂长企业版",
|
|
|
informationName: "申请",
|
|
|
});
|
|
|
|
|
|
+const applicationList: any = ref([]);
|
|
|
+const informationData: any = ref({});
|
|
|
+
|
|
|
//切换试用版本
|
|
|
-const switchTab = (str: string) => {
|
|
|
+const switchTab = (str: string, index: number) => {
|
|
|
onTrialData.visionName = str;
|
|
|
+ informationData.value = applicationList.value[index];
|
|
|
};
|
|
|
|
|
|
//切换信息
|
|
@@ -124,6 +130,15 @@ const switchInformation = (str: string) => {
|
|
|
onTrialData.informationName = str;
|
|
|
};
|
|
|
|
|
|
+//获取数据
|
|
|
+const getInfo = () => {
|
|
|
+ getApplicationInformation().then((res) => {
|
|
|
+ applicationList.value = res.data;
|
|
|
+ onTrialData.visionName = res.data[0].type_name;
|
|
|
+ informationData.value = res.data[0];
|
|
|
+ });
|
|
|
+};
|
|
|
+
|
|
|
//复制
|
|
|
const cope = (text: string) => {
|
|
|
let oInput = document.createElement("input");
|
|
@@ -137,6 +152,10 @@ const cope = (text: string) => {
|
|
|
message: "复制成功!",
|
|
|
});
|
|
|
};
|
|
|
+
|
|
|
+onMounted(() => {
|
|
|
+ getInfo();
|
|
|
+});
|
|
|
</script>
|
|
|
<style scoped lang="less">
|
|
|
.on-trial {
|
|
@@ -227,7 +246,6 @@ const cope = (text: string) => {
|
|
|
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;
|
|
@@ -244,6 +262,7 @@ const cope = (text: string) => {
|
|
|
text-align: center;
|
|
|
line-height: 24px;
|
|
|
color: #28a745;
|
|
|
+ margin-right: 34px;
|
|
|
font-size: 12px;
|
|
|
}
|
|
|
.applying {
|
|
@@ -255,6 +274,7 @@ const cope = (text: string) => {
|
|
|
text-align: center;
|
|
|
line-height: 24px;
|
|
|
color: #2264dc;
|
|
|
+ margin-right: 34px;
|
|
|
font-size: 12px;
|
|
|
}
|
|
|
.select {
|