index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  1. <template>
  2. <view style=" padding: 30rpx;">
  3. <view class="group-buying-data">
  4. <view class="group-content">
  5. <view class="group-content-l">
  6. <view class="content-num">
  7. {{statistics.noPayoutsAccounts || 0}}
  8. </view>
  9. <view class="content-info">
  10. 待分红金额 (元)
  11. </view>
  12. </view>
  13. <view class="group-content-r">
  14. <view class="content-num">
  15. {{statistics.payoutsAccounts || 0}}
  16. </view>
  17. <view class="content-info">
  18. 累计已分红 (元)
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="tool_list">
  24. <u-cell-group>
  25. <navigator url="/pages/groupbuying/distributionPerformance/index" hover-class="none">
  26. <u-cell isLink>
  27. <view slot="title" class="u-slot-title">
  28. <image src="http://www.gzzzyd.com/groupon/home_slices/收入业绩@2x.png" mode=""></image>
  29. <text class="u-cell-text">分销业绩</text>
  30. </view>
  31. </u-cell>
  32. </navigator>
  33. <view class="line"></view>
  34. <navigator url="/pages/groupbuying/myClient/index" hover-class="none">
  35. <u-cell isLink>
  36. <view slot="title" class="u-slot-title">
  37. <image src="http://www.gzzzyd.com/groupon/home_slices/编组 8@2x.png" mode=""></image>
  38. <text class="u-cell-text">我的客户</text>
  39. </view>
  40. </u-cell>
  41. </navigator>
  42. </u-cell-group>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. import {commissionStatistics} from '@/api/groupon.js'
  48. import {
  49. getUserInfo,
  50. userEdit,
  51. getLogout
  52. } from '@/api/user.js';
  53. import {
  54. switchH5Login
  55. } from '@/api/api.js';
  56. import {
  57. toLogin
  58. } from '@/libs/login.js';
  59. import {
  60. mapGetters
  61. } from "vuex";
  62. import dayjs from "@/plugin/dayjs/dayjs.min.js";
  63. // #ifdef MP
  64. import authorize from '@/components/Authorize';
  65. // #endif
  66. import colors from '@/mixins/color.js';
  67. export default {
  68. components: {
  69. // #ifdef APP-PLUS
  70. appUpdate,
  71. // #endif
  72. // #ifdef MP
  73. authorize
  74. // #endif
  75. },
  76. mixins: [colors],
  77. data () {
  78. return {
  79. statistics:{},
  80. };
  81. },
  82. computed: mapGetters(['isLogin']),
  83. watch: {
  84. isLogin: {
  85. handler: function (newV, oldV) {
  86. if (newV) {
  87. this.getUserInfo();
  88. }
  89. },
  90. deep: true
  91. }
  92. },
  93. onShow(){
  94. this.commissionStatistics()
  95. },
  96. onLoad () {
  97. if (this.isLogin) {
  98. this.getUserInfo();
  99. // #ifdef APP-PLUS
  100. this.formatSize()
  101. // 获取版本号
  102. plus.runtime.getProperty(plus.runtime.appid, (inf) => {
  103. console.log(inf.version)
  104. this.version = inf.version;
  105. });
  106. // #endif
  107. this.setLang();
  108. } else {
  109. toLogin();
  110. }
  111. },
  112. methods: {
  113. commissionStatistics(){
  114. commissionStatistics().then(res => {
  115. this.statistics =res.data
  116. })
  117. },
  118. isNew () {
  119. this.$util.Tips({
  120. title: this.$t(`当前为最新版本`)
  121. });
  122. },
  123. setLang () {
  124. this.array.map((item, i) => {
  125. if (this.$i18n.locale == item.value) {
  126. this.setIndex = i
  127. }
  128. })
  129. },
  130. bindPickerChange (e, item) {
  131. this.setIndex = e.detail.value
  132. this.$i18n.locale = this.array[this.setIndex].value;
  133. uni.setStorageSync('locale', this.array[this.setIndex].value);
  134. },
  135. updateApp () {
  136. this.$refs.appUpdate.update(); //调用子组件 检查更新
  137. },
  138. formatSize () {
  139. let that = this;
  140. plus.cache.calculate(function (size) {
  141. let sizeCache = parseInt(size);
  142. if (sizeCache == 0) {
  143. that.fileSizeString = "0B";
  144. } else if (sizeCache < 1024) {
  145. that.fileSizeString = sizeCache + "B";
  146. } else if (sizeCache < 1048576) {
  147. that.fileSizeString = (sizeCache / 1024).toFixed(2) + "KB";
  148. } else if (sizeCache < 1073741824) {
  149. that.fileSizeString = (sizeCache / 1048576).toFixed(2) + "MB";
  150. } else {
  151. that.fileSizeString = (sizeCache / 1073741824).toFixed(2) + "GB";
  152. }
  153. });
  154. },
  155. initData () {
  156. uni.showModal({
  157. title: this.$t(`清除缓存`),
  158. content: this.$t(`确定清楚本地缓存数据吗`),
  159. success: (res) => {
  160. if (res.confirm) {
  161. this.clearCache()
  162. this.formatSize()
  163. } else if (res.cancel) {
  164. return that.$util.Tips({
  165. title: that.$t(`取消`)
  166. });
  167. }
  168. }
  169. });
  170. },
  171. clearCache () {
  172. let that = this;
  173. let os = plus.os.name;
  174. if (os == 'Android') {
  175. let main = plus.android.runtimeMainActivity();
  176. let sdRoot = main.getCacheDir();
  177. let files = plus.android.invoke(sdRoot, "listFiles");
  178. let len = files.length;
  179. for (let i = 0; i < len; i++) {
  180. let filePath = '' + files[i]; // 没有找到合适的方法获取路径,这样写可以转成文件路径
  181. plus.io.resolveLocalFileSystemURL(filePath, function (entry) {
  182. if (entry.isDirectory) {
  183. entry.removeRecursively(function (entry) { //递归删除其下的所有文件及子目录
  184. uni.showToast({
  185. title: that.$t(`缓存清理完成`),
  186. duration: 2000
  187. });
  188. that.formatSize(); // 重新计算缓存
  189. }, function (e) {
  190. console.log(e.message)
  191. });
  192. } else {
  193. entry.remove();
  194. }
  195. }, function (e) { });
  196. }
  197. } else { // ios暂时未找到清理缓存的方法,以下是官方提供的方法,但是无效,会报错
  198. plus.cache.clear(function () {
  199. uni.showToast({
  200. title: that.$t(`缓存清理完成`),
  201. duration: 2000
  202. });
  203. that.formatSize();
  204. });
  205. }
  206. },
  207. /**
  208. * 授权回调
  209. */
  210. onLoadFun: function () {
  211. this.getUserInfo();
  212. },
  213. // 授权关闭
  214. authColse: function (e) {
  215. this.isShowAuth = e
  216. },
  217. /**
  218. * 小程序设置
  219. */
  220. Setting: function () {
  221. uni.openSetting({
  222. success: function (res) { }
  223. });
  224. },
  225. switchAccounts: function (index) {
  226. let userInfo = this.switchUserInfo[index],
  227. that = this;
  228. that.userIndex = index;
  229. if (that.switchUserInfo.length <= 1) return true;
  230. if (userInfo === undefined) return that.$util.Tips({
  231. title: that.$t(`切换的账号不存在`)
  232. });
  233. if (userInfo.user_type === 'h5') {
  234. uni.showLoading({
  235. title: that.$t(`正在切换中`)
  236. });
  237. switchH5Login().then(res => {
  238. uni.hideLoading();
  239. that.$store.commit("LOGIN", {
  240. 'token': res.data.token,
  241. 'time': this.$Cache.strTotime(res.data.expires_time) - this.$Cache.time()
  242. });
  243. that.getUserInfo();
  244. }).catch(err => {
  245. uni.hideLoading();
  246. return that.$util.Tips({
  247. title: err
  248. });
  249. })
  250. } else {
  251. that.$store.commit("LOGOUT");
  252. uni.showLoading({
  253. title: that.$t(`正在切换中`)
  254. });
  255. toLogin();
  256. }
  257. },
  258. /**
  259. * 退出登录
  260. *
  261. */
  262. outLogin: function () {
  263. let that = this;
  264. if (that.loginType == 'h5') {
  265. uni.showModal({
  266. title: that.$t(`提示`),
  267. content: that.$t(`确认退出登录`),
  268. success: function (res) {
  269. if (res.confirm) {
  270. getLogout()
  271. .then(res => {
  272. // uni.clearStorage()
  273. that.$store.commit("LOGOUT");
  274. uni.reLaunch({
  275. url: '/pages/index/index'
  276. })
  277. })
  278. .catch(err => { });
  279. } else if (res.cancel) { }
  280. }
  281. });
  282. }
  283. },
  284. /**
  285. * 获取用户详情
  286. */
  287. getUserInfo: function () {
  288. let that = this;
  289. getUserInfo().then(res => {
  290. that.$set(that, 'userInfo', res.data);
  291. let switchUserInfo = res.data.switchUserInfo || [];
  292. for (let i = 0; i < switchUserInfo.length; i++) {
  293. if (switchUserInfo[i].uid == that.userInfo.uid) that.userIndex = i;
  294. // 切割h5用户;user_type状态:h5、routine(小程序)、wechat(公众号);注:只有h5未注册手机号时,h5才可和小程序或是公众号数据想通;
  295. //#ifdef H5
  296. if (
  297. !that.$wechat.isWeixin() &&
  298. switchUserInfo[i].user_type != "h5" &&
  299. switchUserInfo[i].phone === ""
  300. )
  301. switchUserInfo.splice(i, 1);
  302. //#endif
  303. }
  304. that.$set(that, "switchUserInfo", switchUserInfo);
  305. });
  306. },
  307. /**
  308. * 上传文件
  309. *
  310. */
  311. uploadpic: function () {
  312. let that = this;
  313. this.canvasStatus = true
  314. that.$util.uploadImageChange('upload/image', (res) => {
  315. let userInfo = that.switchUserInfo[that.userIndex];
  316. if (userInfo !== undefined) {
  317. that.userInfo.avatar = res.data.url;
  318. }
  319. that.switchUserInfo[that.userIndex] = userInfo;
  320. that.$set(that, 'switchUserInfo', that.switchUserInfo);
  321. this.canvasStatus = false
  322. }, (res) => {
  323. this.canvasStatus = false
  324. }, (res) => {
  325. this.canvasWidth = res.w
  326. this.canvasHeight = res.h
  327. });
  328. },
  329. /**
  330. * 提交修改
  331. */
  332. formSubmit: function (e) {
  333. let that = this,
  334. value = e.detail.value,
  335. userInfo = that.switchUserInfo[that.userIndex];
  336. if (!value.nickname) return that.$util.Tips({
  337. title: that.$t(`请输入姓名`)
  338. });
  339. value.avatar = this.userInfo.avatar;
  340. userEdit(value).then(res => {
  341. return that.$util.Tips({
  342. title: res.msg,
  343. icon: 'success'
  344. }, {
  345. tab: 3,
  346. url: 1
  347. });
  348. }).catch(msg => {
  349. return that.$util.Tips({
  350. title: msg || that.$t(`保存失败`)
  351. }, {
  352. tab: 3,
  353. url: 1
  354. });
  355. });
  356. }
  357. }
  358. }
  359. </script>
  360. <style scoped lang="scss">
  361. .cartcolor {
  362. color: var(--view-theme);
  363. border: 1px solid var(--view-theme);
  364. }
  365. .personal-data .wrapper {
  366. margin: 10rpx 0;
  367. background-color: #fff;
  368. padding: 36rpx 30rpx 13rpx 30rpx;
  369. }
  370. .personal-data .wrapper .title {
  371. margin-bottom: 30rpx;
  372. font-size: 32rpx;
  373. color: #282828;
  374. }
  375. .group-buying-data {
  376. position: relative;
  377. width: 100%;
  378. height: 200rpx;
  379. padding: 40rpx;
  380. margin: 0 auto;
  381. background-image: url('http://www.gzzzyd.com/groupon/regiment/提货管理@2x.png');
  382. background-size: 100% auto;
  383. background-color: var(--view-theme);
  384. .group-title {
  385. font-size: 32rpx;
  386. font-weight: 500;
  387. color: #B22338;
  388. line-height: 44rpx;
  389. height: 44rpx;
  390. }
  391. .group-content {
  392. display: flex;
  393. .group-content-l {
  394. text-align: center;
  395. flex: 1;
  396. border-color: #333333;
  397. border-right: 1px solid white;
  398. }
  399. .group-content-r {
  400. text-align: center;
  401. flex: 1
  402. }
  403. .content-num {
  404. margin-top: 20rpx;
  405. height: 48rpx;
  406. font-size: 40rpx;
  407. font-weight: bold;
  408. color: #B22338;
  409. line-height: 48rpx;
  410. }
  411. .content-info {
  412. margin-top: 20rpx;
  413. text-align: center;
  414. width: 100%;
  415. height: 36rpx;
  416. font-size: 24rpx;
  417. font-weight: 400;
  418. color: #CF7986;
  419. line-height: 36rpx;
  420. }
  421. }
  422. }
  423. .tool_list,
  424. .footer {
  425. background: #fff;
  426. border-radius: 16rpx;
  427. margin-top: 20rpx;
  428. }
  429. .footer {
  430. height: 100rpx;
  431. button {
  432. height: 100%;
  433. font-size: 28rpx;
  434. font-weight: 400;
  435. color: #999999;
  436. line-height: 100rpx;
  437. }
  438. }
  439. /deep/ .tool_list .u-line,
  440. .my_order .u-line {
  441. display: none !important;
  442. }
  443. .u-slot-title {
  444. line-height: 60rpx;
  445. font-size: 28rpx;
  446. font-weight: 400;
  447. color: #333333;
  448. text {
  449. vertical-align: text-bottom;
  450. }
  451. image {
  452. margin-right: 20rpx;
  453. transform: translateY(10rpx);
  454. width: 40rpx;
  455. height: 40rpx;
  456. vertical-align: super;
  457. }
  458. }
  459. .line{
  460. width: 100%;
  461. border: 1px solid #F9F9F9;
  462. }
  463. </style>