123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511 |
- <template>
- <view style=" padding: 30rpx;">
- <view class="group-buying-data">
- <view class="group-content">
- <view class="group-content-l">
- <view class="content-num">
- {{statistics.noPayoutsAccounts || 0}}
- </view>
- <view class="content-info">
- 待分红金额 (元)
- </view>
- </view>
- <view class="group-content-r">
- <view class="content-num">
- {{statistics.payoutsAccounts || 0}}
- </view>
- <view class="content-info">
- 累计已分红 (元)
- </view>
- </view>
- </view>
- </view>
- <view class="tool_list">
- <u-cell-group>
- <navigator url="/pages/groupbuying/distributionPerformance/index" hover-class="none">
- <u-cell isLink>
- <view slot="title" class="u-slot-title">
- <image src="http://www.gzzzyd.com/groupon/home_slices/收入业绩@2x.png" mode=""></image>
- <text class="u-cell-text">分销业绩</text>
- </view>
- </u-cell>
- </navigator>
- <view class="line"></view>
- <navigator url="/pages/groupbuying/myClient/index" hover-class="none">
- <u-cell isLink>
- <view slot="title" class="u-slot-title">
- <image src="http://www.gzzzyd.com/groupon/home_slices/编组 8@2x.png" mode=""></image>
- <text class="u-cell-text">我的客户</text>
- </view>
- </u-cell>
- </navigator>
- </u-cell-group>
- </view>
- </view>
- </template>
- <script>
- import {commissionStatistics} from '@/api/groupon.js'
- import {
- getUserInfo,
- userEdit,
- getLogout
- } from '@/api/user.js';
- import {
- switchH5Login
- } from '@/api/api.js';
- import {
- toLogin
- } from '@/libs/login.js';
- import {
- mapGetters
- } from "vuex";
- import dayjs from "@/plugin/dayjs/dayjs.min.js";
- // #ifdef MP
- import authorize from '@/components/Authorize';
- // #endif
- import colors from '@/mixins/color.js';
- export default {
- components: {
- // #ifdef APP-PLUS
- appUpdate,
- // #endif
- // #ifdef MP
- authorize
- // #endif
- },
- mixins: [colors],
- data () {
- return {
- statistics:{},
- };
- },
- computed: mapGetters(['isLogin']),
- watch: {
- isLogin: {
- handler: function (newV, oldV) {
- if (newV) {
- this.getUserInfo();
- }
- },
- deep: true
- }
- },
- onShow(){
- this.commissionStatistics()
- },
- onLoad () {
- if (this.isLogin) {
- this.getUserInfo();
- // #ifdef APP-PLUS
- this.formatSize()
- // 获取版本号
- plus.runtime.getProperty(plus.runtime.appid, (inf) => {
- console.log(inf.version)
- this.version = inf.version;
- });
- // #endif
- this.setLang();
- } else {
- toLogin();
- }
- },
- methods: {
- commissionStatistics(){
- commissionStatistics().then(res => {
- this.statistics =res.data
- })
- },
- isNew () {
- this.$util.Tips({
- title: this.$t(`当前为最新版本`)
- });
- },
- setLang () {
- this.array.map((item, i) => {
- if (this.$i18n.locale == item.value) {
- this.setIndex = i
- }
- })
- },
- bindPickerChange (e, item) {
- this.setIndex = e.detail.value
- this.$i18n.locale = this.array[this.setIndex].value;
- uni.setStorageSync('locale', this.array[this.setIndex].value);
- },
- updateApp () {
- this.$refs.appUpdate.update(); //调用子组件 检查更新
- },
- formatSize () {
- let that = this;
- plus.cache.calculate(function (size) {
- let sizeCache = parseInt(size);
- if (sizeCache == 0) {
- that.fileSizeString = "0B";
- } else if (sizeCache < 1024) {
- that.fileSizeString = sizeCache + "B";
- } else if (sizeCache < 1048576) {
- that.fileSizeString = (sizeCache / 1024).toFixed(2) + "KB";
- } else if (sizeCache < 1073741824) {
- that.fileSizeString = (sizeCache / 1048576).toFixed(2) + "MB";
- } else {
- that.fileSizeString = (sizeCache / 1073741824).toFixed(2) + "GB";
- }
- });
- },
- initData () {
- uni.showModal({
- title: this.$t(`清除缓存`),
- content: this.$t(`确定清楚本地缓存数据吗`),
- success: (res) => {
- if (res.confirm) {
- this.clearCache()
- this.formatSize()
- } else if (res.cancel) {
- return that.$util.Tips({
- title: that.$t(`取消`)
- });
- }
- }
- });
- },
- clearCache () {
- let that = this;
- let os = plus.os.name;
- if (os == 'Android') {
- let main = plus.android.runtimeMainActivity();
- let sdRoot = main.getCacheDir();
- let files = plus.android.invoke(sdRoot, "listFiles");
- let len = files.length;
- for (let i = 0; i < len; i++) {
- let filePath = '' + files[i]; // 没有找到合适的方法获取路径,这样写可以转成文件路径
- plus.io.resolveLocalFileSystemURL(filePath, function (entry) {
- if (entry.isDirectory) {
- entry.removeRecursively(function (entry) { //递归删除其下的所有文件及子目录
- uni.showToast({
- title: that.$t(`缓存清理完成`),
- duration: 2000
- });
- that.formatSize(); // 重新计算缓存
- }, function (e) {
- console.log(e.message)
- });
- } else {
- entry.remove();
- }
- }, function (e) { });
- }
- } else { // ios暂时未找到清理缓存的方法,以下是官方提供的方法,但是无效,会报错
- plus.cache.clear(function () {
- uni.showToast({
- title: that.$t(`缓存清理完成`),
- duration: 2000
- });
- that.formatSize();
- });
- }
- },
- /**
- * 授权回调
- */
- onLoadFun: function () {
- this.getUserInfo();
- },
- // 授权关闭
- authColse: function (e) {
- this.isShowAuth = e
- },
- /**
- * 小程序设置
- */
- Setting: function () {
- uni.openSetting({
- success: function (res) { }
- });
- },
- switchAccounts: function (index) {
- let userInfo = this.switchUserInfo[index],
- that = this;
- that.userIndex = index;
- if (that.switchUserInfo.length <= 1) return true;
- if (userInfo === undefined) return that.$util.Tips({
- title: that.$t(`切换的账号不存在`)
- });
- if (userInfo.user_type === 'h5') {
- uni.showLoading({
- title: that.$t(`正在切换中`)
- });
- switchH5Login().then(res => {
- uni.hideLoading();
- that.$store.commit("LOGIN", {
- 'token': res.data.token,
- 'time': this.$Cache.strTotime(res.data.expires_time) - this.$Cache.time()
- });
- that.getUserInfo();
- }).catch(err => {
- uni.hideLoading();
- return that.$util.Tips({
- title: err
- });
- })
- } else {
- that.$store.commit("LOGOUT");
- uni.showLoading({
- title: that.$t(`正在切换中`)
- });
- toLogin();
- }
- },
- /**
- * 退出登录
- *
- */
- outLogin: function () {
- let that = this;
- if (that.loginType == 'h5') {
- uni.showModal({
- title: that.$t(`提示`),
- content: that.$t(`确认退出登录`),
- success: function (res) {
- if (res.confirm) {
- getLogout()
- .then(res => {
- // uni.clearStorage()
- that.$store.commit("LOGOUT");
- uni.reLaunch({
- url: '/pages/index/index'
- })
- })
- .catch(err => { });
- } else if (res.cancel) { }
- }
- });
- }
- },
- /**
- * 获取用户详情
- */
- getUserInfo: function () {
- let that = this;
- getUserInfo().then(res => {
- that.$set(that, 'userInfo', res.data);
- let switchUserInfo = res.data.switchUserInfo || [];
- for (let i = 0; i < switchUserInfo.length; i++) {
- if (switchUserInfo[i].uid == that.userInfo.uid) that.userIndex = i;
- // 切割h5用户;user_type状态:h5、routine(小程序)、wechat(公众号);注:只有h5未注册手机号时,h5才可和小程序或是公众号数据想通;
- //#ifdef H5
- if (
- !that.$wechat.isWeixin() &&
- switchUserInfo[i].user_type != "h5" &&
- switchUserInfo[i].phone === ""
- )
- switchUserInfo.splice(i, 1);
- //#endif
- }
- that.$set(that, "switchUserInfo", switchUserInfo);
- });
- },
- /**
- * 上传文件
- *
- */
- uploadpic: function () {
- let that = this;
- this.canvasStatus = true
- that.$util.uploadImageChange('upload/image', (res) => {
- let userInfo = that.switchUserInfo[that.userIndex];
- if (userInfo !== undefined) {
- that.userInfo.avatar = res.data.url;
- }
- that.switchUserInfo[that.userIndex] = userInfo;
- that.$set(that, 'switchUserInfo', that.switchUserInfo);
- this.canvasStatus = false
- }, (res) => {
- this.canvasStatus = false
- }, (res) => {
- this.canvasWidth = res.w
- this.canvasHeight = res.h
- });
- },
- /**
- * 提交修改
- */
- formSubmit: function (e) {
- let that = this,
- value = e.detail.value,
- userInfo = that.switchUserInfo[that.userIndex];
- if (!value.nickname) return that.$util.Tips({
- title: that.$t(`请输入姓名`)
- });
- value.avatar = this.userInfo.avatar;
- userEdit(value).then(res => {
- return that.$util.Tips({
- title: res.msg,
- icon: 'success'
- }, {
- tab: 3,
- url: 1
- });
- }).catch(msg => {
- return that.$util.Tips({
- title: msg || that.$t(`保存失败`)
- }, {
- tab: 3,
- url: 1
- });
- });
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .cartcolor {
- color: var(--view-theme);
- border: 1px solid var(--view-theme);
- }
- .personal-data .wrapper {
- margin: 10rpx 0;
- background-color: #fff;
- padding: 36rpx 30rpx 13rpx 30rpx;
- }
- .personal-data .wrapper .title {
- margin-bottom: 30rpx;
- font-size: 32rpx;
- color: #282828;
- }
- .group-buying-data {
- position: relative;
- width: 100%;
- height: 200rpx;
- padding: 40rpx;
- margin: 0 auto;
- background-image: url('http://www.gzzzyd.com/groupon/regiment/提货管理@2x.png');
- background-size: 100% auto;
- background-color: var(--view-theme);
- .group-title {
- font-size: 32rpx;
- font-weight: 500;
- color: #B22338;
- line-height: 44rpx;
- height: 44rpx;
- }
- .group-content {
- display: flex;
- .group-content-l {
- text-align: center;
- flex: 1;
- border-color: #333333;
- border-right: 1px solid white;
- }
- .group-content-r {
- text-align: center;
- flex: 1
- }
- .content-num {
- margin-top: 20rpx;
- height: 48rpx;
- font-size: 40rpx;
- font-weight: bold;
- color: #B22338;
- line-height: 48rpx;
- }
- .content-info {
- margin-top: 20rpx;
- text-align: center;
- width: 100%;
- height: 36rpx;
- font-size: 24rpx;
- font-weight: 400;
- color: #CF7986;
- line-height: 36rpx;
- }
- }
- }
- .tool_list,
- .footer {
- background: #fff;
- border-radius: 16rpx;
- margin-top: 20rpx;
- }
- .footer {
- height: 100rpx;
- button {
- height: 100%;
- font-size: 28rpx;
- font-weight: 400;
- color: #999999;
- line-height: 100rpx;
- }
- }
- /deep/ .tool_list .u-line,
- .my_order .u-line {
- display: none !important;
- }
- .u-slot-title {
- line-height: 60rpx;
- font-size: 28rpx;
- font-weight: 400;
- color: #333333;
- text {
- vertical-align: text-bottom;
- }
- image {
- margin-right: 20rpx;
- transform: translateY(10rpx);
- width: 40rpx;
- height: 40rpx;
- vertical-align: super;
- }
- }
- .line{
- width: 100%;
- border: 1px solid #F9F9F9;
- }
- </style>
|