管理端
This commit is contained in:
@@ -42,7 +42,8 @@ const mode = ref(MODE.PHONE);
|
||||
</a-input>
|
||||
</div>
|
||||
<div class="flex flex-col mt-[50px] gap-[32px]">
|
||||
<a-button @click="login" type="primary">登陆</a-button>
|
||||
<a-button @click="login(false)" type="primary">登陆商户端</a-button>
|
||||
<a-button @click="login(true)" type="primary">登陆管理端</a-button>
|
||||
<a-button
|
||||
@click="toPath('/loginSYS/register')"
|
||||
type="text">
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
<script setup>
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<!-- 账号管理 -->
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 拉黑记录 -->
|
||||
拉黑记录
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 达人账号 -->
|
||||
达人账号
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
16
src/pages/manage/pages/account-management/index.vue
Normal file
16
src/pages/manage/pages/account-management/index.vue
Normal file
@@ -0,0 +1,16 @@
|
||||
<script setup>
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<!-- 账号管理 -->
|
||||
<div id="Item-View">
|
||||
<transition name="fade">
|
||||
<router-view></router-view>
|
||||
</transition>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 商家账号 -->
|
||||
商家账号
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 推广账号 -->
|
||||
推广账号
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
@@ -1,11 +0,0 @@
|
||||
<script setup>
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<!-- 达人端管理 -->
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 资金概览 -->
|
||||
资金概览
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 资金管理(商) -->
|
||||
资金管理(商)
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 资金管理(达) -->
|
||||
资金管理(达)
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
@@ -4,8 +4,23 @@
|
||||
|
||||
<template>
|
||||
<!-- 资金 -->
|
||||
<div id="Item-View">
|
||||
<transition name="fade">
|
||||
<router-view></router-view>
|
||||
</transition>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
<style lang="scss" scoped>
|
||||
.fade-enter-active,
|
||||
.fade-leave-active {
|
||||
transition: opacity 0.5s;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.fade-enter-from,
|
||||
.fade-leave-to {
|
||||
opacity: 0;
|
||||
position: absolute;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 打款管理 -->
|
||||
打款管理
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 提现信息 -->
|
||||
提现信息
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 达人端物料 -->
|
||||
达人端物料
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
26
src/pages/manage/pages/manage-expert-management/index.vue
Normal file
26
src/pages/manage/pages/manage-expert-management/index.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<script setup>
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<!-- 达人端管理 -->
|
||||
<div id="Item-View">
|
||||
<transition name="fade">
|
||||
<router-view></router-view>
|
||||
</transition>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.fade-enter-active,
|
||||
.fade-leave-active {
|
||||
transition: opacity 0.5s;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.fade-enter-from,
|
||||
.fade-leave-to {
|
||||
opacity: 0;
|
||||
position: absolute;
|
||||
}
|
||||
</style>
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 任务排序 -->
|
||||
任务排序
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 团队投诉 -->
|
||||
团队投诉
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
26
src/pages/manage/pages/manage-reward-mission/index.vue
Normal file
26
src/pages/manage/pages/manage-reward-mission/index.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<script setup>
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<!-- 悬赏任务 -->
|
||||
<div id="Item-View">
|
||||
<transition name="fade">
|
||||
<router-view></router-view>
|
||||
</transition>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.fade-enter-active,
|
||||
.fade-leave-active {
|
||||
transition: opacity 0.5s;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.fade-enter-from,
|
||||
.fade-leave-to {
|
||||
opacity: 0;
|
||||
position: absolute;
|
||||
}
|
||||
</style>
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 子任务审核 -->
|
||||
子任务审核
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 任务审核 -->
|
||||
任务审核
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 免审审核 -->
|
||||
免审审核
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
@@ -4,8 +4,23 @@
|
||||
|
||||
<template>
|
||||
<!-- 消息中心 -->
|
||||
<div id="Item-View">
|
||||
<transition name="fade">
|
||||
<router-view></router-view>
|
||||
</transition>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
<style lang="scss" scoped>
|
||||
.fade-enter-active,
|
||||
.fade-leave-active {
|
||||
transition: opacity 0.5s;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.fade-enter-from,
|
||||
.fade-leave-to {
|
||||
opacity: 0;
|
||||
position: absolute;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 消息审核 -->
|
||||
消息审核
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
|
||||
<template>
|
||||
<!-- 平台介入 -->
|
||||
平台介入
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
<script setup>
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<!-- 悬赏任务 -->
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user