|
|
|
|
@ -13,6 +13,10 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="btn">
|
|
|
|
|
<div class="submit">提交任务</div>
|
|
|
|
|
<div class="retrain">重新实训</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="container" v-if="menuIndex != 0">
|
|
|
|
|
<div class="leftContent">
|
|
|
|
|
<div class="title">
|
|
|
|
|
@ -275,7 +279,8 @@ import basketAnalysis from "./components/basketAnalysis.vue";
|
|
|
|
|
import repurchaseAnalysis from "./components/repurchaseAnalysis.vue";
|
|
|
|
|
import retainAnalysis from "./components/retainAnalysis.vue";
|
|
|
|
|
import viscosityAnalysis from "./components/viscosityAnalysis.vue";
|
|
|
|
|
import AARRRAnalysis from "./components/AARRRAnalysis.vue"
|
|
|
|
|
import AARRRAnalysis from "./components/AARRRAnalysis.vue";
|
|
|
|
|
import portraitAnalysis from "./components/portraitAnalysis.vue";
|
|
|
|
|
import { onMounted } from "vue";
|
|
|
|
|
const currentComponent = ref(null);
|
|
|
|
|
const menuIndex = ref(1);
|
|
|
|
|
@ -338,6 +343,7 @@ const tabList = ref([
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: "10",
|
|
|
|
|
key: portraitAnalysis,
|
|
|
|
|
title: "用户画像分析",
|
|
|
|
|
backImg: "src/assets/images/icon10.png",
|
|
|
|
|
},
|
|
|
|
|
@ -346,7 +352,7 @@ onMounted(() => {
|
|
|
|
|
getTableData("用户属性表");
|
|
|
|
|
});
|
|
|
|
|
const getTableData = (name) => {
|
|
|
|
|
fileTable.value = []
|
|
|
|
|
fileTable.value = [];
|
|
|
|
|
portraitModel
|
|
|
|
|
.getUserTableData({
|
|
|
|
|
userId: 492,
|
|
|
|
|
@ -431,6 +437,31 @@ const changeTab = (item) => {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.btn{
|
|
|
|
|
display: flex;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 70px;
|
|
|
|
|
top: 110px;
|
|
|
|
|
.submit{
|
|
|
|
|
width: 99px;
|
|
|
|
|
height: 31px;
|
|
|
|
|
background-image: url("@/assets/images/submit.png");
|
|
|
|
|
color: #080138;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 31px;
|
|
|
|
|
padding-left: 30px;
|
|
|
|
|
}
|
|
|
|
|
.retrain{
|
|
|
|
|
width: 99px;
|
|
|
|
|
height: 31px;
|
|
|
|
|
background-image: url("@/assets/images/retrain.png");
|
|
|
|
|
color: #080138;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
line-height: 31px;
|
|
|
|
|
padding-left: 30px;
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.container {
|
|
|
|
|
display: flex;
|
|
|
|
|
.leftContent {
|
|
|
|
|
|