mall-uniapp/pages/commission/index.vue

69 lines
1.6 KiB
Vue
Raw Normal View History

2022-11-22 07:45:36 +00:00
<!-- 分销中心 -->
<template>
2023-12-21 09:58:15 +00:00
<s-layout navbar="inner" class="index-wrap" title="分销中心" :bgStyle="bgStyle" onShareAppMessage>
<!-- 分销商信息 -->
<commission-info />
<!-- 账户信息 -->
<account-info />
<!-- 菜单栏 -->
<commission-menu />
<!-- 分销记录 -->
<commission-log />
<!-- 弹框 -->
<commission-condition :error="state.error" :errorData="state.errorData" />
2022-11-22 07:45:36 +00:00
2023-12-21 09:58:15 +00:00
<!-- 权限 -->
<commission-auth :error="state.error" @getAgentInfo="getAgentInfo" />
</s-layout>
2022-11-22 07:45:36 +00:00
</template>
<script setup>
2023-12-21 09:58:15 +00:00
import sheep from '@/sheep';
import {
onShow
} from '@dcloudio/uni-app';
import {
computed,
reactive
} from 'vue';
import commissionInfo from './components/commission-info.vue';
import accountInfo from './components/account-info.vue';
import commissionLog from './components/commission-log.vue';
import commissionMenu from './components/commission-menu.vue';
import commissionAuth from './components/commission-auth.vue';
import commissionCondition from './components/commission-condition.vue';
2022-11-22 07:45:36 +00:00
2023-12-21 09:58:15 +00:00
const state = reactive({
error: 0,
errorData: {},
config: {
background: '/storage/default/20220704/29ac76a3c9d0d983200d612e45a052ca.png',
},
});
2022-11-22 07:45:36 +00:00
2023-12-21 09:58:15 +00:00
const agentInfo = computed(() => sheep.$store('user').agentInfo);
2022-11-22 07:45:36 +00:00
2023-12-21 09:58:15 +00:00
const bgStyle = {
color: '#F7D598',
};
2022-11-22 07:45:36 +00:00
2023-12-21 09:58:15 +00:00
async function getAgentInfo() {
const {
error,
data
} = await sheep.$store('user').getAgentInfo();
if (error !== 0) {
state.error = error;
state.errorData = data;
}
}
onShow(() => {
getAgentInfo();
});
2022-11-22 07:45:36 +00:00
</script>
<style lang="scss" scoped>
2023-12-21 09:58:15 +00:00
:deep(.page-main) {
background-size: 100% 100% !important;
}
</style>