123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508 |
- <template>
- <mobile-frame>
- <view class="main">
- <view class="one">
- <view class="one_1">
- <text>¥</text><text>{{money}}</text>
- </view>
- <view class="one_2" @tap="toCash">
- <button type="default" size="mini">提现</button>
- </view>
- </view>
- <view class="two">
- <tabs :tabs="tabs" @tabsChange="tabsChange">
- <view class="tabsList">
- <scroll-view scroll-y="true" class="scroll-view" @scrolltolower="toPage" @scroll="toScroll">
- <view class="list-scroll-view">
- <view class="list" v-for="(item, index) in list" :key="index">
- <view v-if="tabs.active=='0'" class="other" @tap="toDetail(item,'0')">
- <view class="other_1">
- <view class="source textOver">{{item.zhSource}}</view>
- <view class="time">{{item.time}}</view>
- </view>
- <view class="other_2">
- <view class="money">
- <text>{{item.source=='-2'||item.source=='-1'?'-':'+'}}</text>
- {{item.money}}
- </view>
- <text class="iconfont icon-jiantouyou"></text>
- </view>
- </view>
- <view v-if="tabs.active=='1'" class="other" @tap="toDetail(item,'1')">
- <view class="other_1">
- <view class="source textOver">{{item.apply_reason}}</view>
- <view class="time">{{item.apply_time}}</view>
- </view>
- <view class="other_2">
- <view class="money">-{{item.money}}</view>
- <text class="iconfont icon-jiantouyou"></text>
- </view>
- </view>
- </view>
- <view class="is_bottom" v-if="is_bottom">
- <text>{{config.bottom_title}}</text>
- </view>
- </view>
- </scroll-view>
- </view>
- </tabs>
- </view>
- </view>
- <uni-popup ref="popup" background-color="#fff" type="bottom">
- <view class="popup">
- <uni-forms ref="form" :rules="rules" :model="form" label-width="auto">
- <uni-forms-item label="真实姓名" name="card_name">
- <uni-easyinput v-model="form.card_name" placeholder="请输入真实姓名" />
- </uni-forms-item>
- <uni-forms-item label="所属银行" name="card_bank">
- <uni-easyinput v-model="form.card_bank" placeholder="请输入所属银行" />
- </uni-forms-item>
- <uni-forms-item label="银行卡号" name="card">
- <uni-easyinput v-model="form.card" placeholder="请输入银行卡号" />
- </uni-forms-item>
- <uni-forms-item label="提现金额" name="money">
- <uni-easyinput type="digit" v-model="form.money" @input="toMoney" placeholder="请输入提现金额" />
- <view class="money">
- 可提现金额为{{canGet||0}}(收货{{config.reward_day}}天以后才可提现),<text @tap="toAll">全部提现</text>
- </view>
- </uni-forms-item>
- <uni-forms-item label="提现理由" name="apply_reason">
- <uni-easyinput type="textarea" v-model="form.apply_reason" placeholder="请输入提现理由" />
- </uni-forms-item>
- <view class="btn">
- <button type="primary" @tap="onSubmit('form')">提现</button>
- </view>
- </uni-forms>
- </view>
- </uni-popup>
- </mobile-frame>
- </template>
- <script>
- import moment from 'moment';
- import tabs from '../components/tabs/index.vue';
- export default {
- components: {
- tabs
- },
- data() {
- return {
- // 系统设置
- config: {},
- user: {},
- money: 0,
- tabs: {
- active: '0',
- menu: [ //菜单列表
- {
- title: '收益记录',
- active: '0'
- },
- {
- title: '提现记录',
- active: '1'
- }
- ]
- },
- // 提现金额
- canGet: 0,
- // 提现
- form: {},
- rules: {
- card_name: {
- rules: [{
- required: true,
- errorMessage: '请输入真实姓名',
- }]
- },
- card_bank: {
- rules: [{
- required: true,
- errorMessage: '请输入所属银行',
- }]
- },
- card: {
- rules: [{
- required: true,
- errorMessage: '请输入银行卡号',
- }]
- },
- money: {
- rules: [{
- required: true,
- errorMessage: '请输入提现金额',
- }]
- },
- apply_reason: {
- rules: [{
- required: true,
- errorMessage: '请输入提现理由',
- }]
- },
- },
- list: [],
- total: 0,
- skip: 0,
- limit: 10,
- page: 0,
- // 来源
- sourceList: [],
- // 数据是否触底
- is_bottom: false,
- scrollTop: 0,
- };
- },
- onShow: async function(e) {
- const that = this;
- that.searchConfig();
- await that.searchOther();
- await that.watchLogin();
- },
- onHide: function() {
- const that = this;
- that.clearPage();
- },
- methods: {
- // 查询基本设置
- searchConfig() {
- const that = this;
- uni.getStorage({
- key: 'config',
- success: function(res) {
- if (res.data) that.$set(that, `config`, res.data)
- },
- fail: function(err) {
- console.log(err);
- }
- })
- },
- watchLogin() {
- const that = this;
- uni.getStorage({
- key: 'token',
- success: function(res) {
- let user = that.$jwt(res.data);
- that.$set(that, `user`, user)
- that.search()
- }
- })
- },
- // 查询列表
- async search() {
- const that = this;
- let user = that.user;
- let active = that.tabs.active;
- if (user._id) {
- let info = {
- skip: that.skip,
- limit: that.limit,
- }
- let res;
- if (active == '0') {
- info.inviter = user._id;
- // 收益记录
- res = await that.$api(`/cashBack`, 'GET', {
- ...info,
- })
- } else {
- info.customer = user._id;
- // 提现记录
- res = await that.$api(`/cashOut`, 'GET', {
- ...info,
- })
- }
- if (res.errcode == '0') {
- let list = [...that.list, ...res.data];
- for (let val of list) {
- let source = that.sourceList.find(i => i.value == val.source)
- if (source) val.zhSource = source.label;
- }
- that.$set(that, `list`, list);
- that.$set(that, `total`, res.total)
- }
- let arr = await that.$api(`/cashBack/computedTotal`, 'GET', {
- customer: user._id
- })
- if (arr.errcode == '0') {
- if (arr.data.money < 0) that.$set(that, `money`, 0);
- else that.$set(that, `money`, 0);
- that.$set(that, `money`, arr.data.total);
- if (arr.data.canGet < 0) that.$set(that, `canGet`, 0);
- else that.$set(that, `canGet`, arr.data.canGet);
- }
- }
- },
- // 查询其他信息
- async searchOther() {
- const that = this;
- let res;
- res = await that.$api(`/dictData`, 'GET', {
- code: "cashBack_source"
- });
- if (res.errcode == '0') {
- that.$set(that, `sourceList`, res.data)
- }
- },
- // 分页
- toPage(e) {
- const that = this;
- let list = that.list;
- let limit = that.limit;
- if (that.total > list.length) {
- uni.showLoading({
- title: '加载中',
- mask: true
- })
- let page = that.page + 1;
- that.$set(that, `page`, page)
- let skip = page * limit;
- that.$set(that, `skip`, skip)
- that.search();
- uni.hideLoading();
- } else that.$set(that, `is_bottom`, true)
- },
- toScroll(e) {
- const that = this;
- let up = that.scrollTop;
- that.$set(that, `scrollTop`, e.detail.scrollTop);
- let num = Math.sign(up - e.detail.scrollTop);
- if (num == 1) that.$set(that, `is_bottom`, false);
- },
- // 选择选项卡
- tabsChange(e) {
- const that = this;
- that.$set(that.tabs, `active`, e.active)
- that.clearPage();
- that.search()
- },
- // 清空列表
- clearPage() {
- const that = this;
- that.$set(that, `list`, [])
- that.$set(that, `skip`, 0)
- that.$set(that, `limit`, 10)
- that.$set(that, `page`, 0)
- },
- // 提现
- toCash() {
- const that = this;
- that.$set(that, `form`, {})
- that.$refs.popup.open()
- },
- // 提现金额
- toMoney(value) {
- const that = this;
- let money = that.canGet;
- if (parseFloat(value) > parseFloat(money)) {
- uni.showToast({
- title: '输入金额不能超过可提现金额',
- icon: 'none'
- })
- }
- },
- // 全部提现
- toAll() {
- const that = this;
- that.$set(that.form, `money`, that.canGet)
- },
- // 提交保存
- async onSubmit(ref) {
- const that = this;
- let money = that.canGet;
- that.$refs[ref].validate().then(async params => {
- if (parseFloat(params.money) > 0) {
- if (parseFloat(params.money) > parseFloat(money)) {
- uni.showToast({
- title: '输入金额不能超过可提现金额',
- icon: 'none'
- })
- } else {
- uni.getStorage({
- key: 'shop',
- success: async function(res) {
- params.shop = res.data;
- params.customer = that.user._id;
- params.apply_time = moment().format('YYYY-MM-DD HH:mm:ss')
- const arr = await that.$api(`/cashOut`, 'POST', params);
- if (arr.errcode == '0') {
- uni.showToast({
- title: `提现申请成功`,
- icon: 'success',
- });
- that.$refs.popup.close();
- that.clearPage();
- that.search()
- } else {
- uni.showToast({
- title: arr.errmsg,
- icon: 'none',
- })
- }
- }
- })
- }
- } else {
- uni.showToast({
- title: '输入金额不能为0',
- icon: 'none'
- })
- }
- })
- },
- // 明细
- toDetail(item, type) {
- const that = this;
- that.clearPage();
- uni.navigateTo({
- url: `/pagesMy/assets/info?id=${item._id}&type=${type}`
- })
- },
- },
- onPullDownRefresh: async function() {
- const that = this;
- that.$set(that, `list`, [])
- that.$set(that, `skip`, 0)
- that.$set(that, `limit`, 10)
- that.$set(that, `page`, 0)
- await that.search();
- uni.stopPullDownRefresh();
- }
- }
- </script>
- <style lang="scss">
- .main {
- display: flex;
- flex-direction: column;
- width: 100vw;
- height: 100vh;
- .one {
- background-color: var(--fFB1Color);
- padding: 5vw 2vw;
- display: flex;
- justify-content: space-between;
- .one_1 {
- color: #fff;
- font-size: 15px;
- font-weight: bold;
- text:last-child {
- padding: 0 0 0 2vw;
- font-size: 25px;
- }
- }
- .one_2 {
- button {
- background: #fff;
- color: var(--fFB1Color);
- border-radius: 25px;
- font-size: 14px;
- }
- }
- }
- .two {
- position: relative;
- flex-grow: 1;
- padding: 2vw 0 0 0;
- .tabsList {
- position: relative;
- width: 100vw;
- height: 78vh;
- .list {
- width: 92vw;
- border-bottom: 0.5vw solid var(--f1Color);
- margin: 2vw 2vw 0 2vw;
- padding: 2vw;
- border-radius: 5px;
- .other {
- display: flex;
- justify-content: space-between;
- align-items: center;
- .other_1 {
- width: 60vw;
- font-size: var(--font16Size);
- margin: 0 0 1vw 0;
- .time {
- margin: 1vw 0 0 0;
- color: var(--f85Color);
- font-size: var(--font12Size);
- }
- }
- .other_2 {
- display: flex;
- align-items: center;
- .money {
- font-size: var(--font18Size);
- font-weight: bold;
- margin: 0 1vw;
- }
- .iconfont {
- font-size: 16px;
- }
- }
- }
- }
- }
- }
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
- }
- .is_bottom {
- text-align: center;
- text {
- padding: 2vw 0;
- display: inline-block;
- color: #858585;
- font-size: 14px;
- }
- }
- .popup {
- min-height: 80vw;
- padding: 2vw;
- .money {
- margin: 1vw 0 0 0;
- font-size: 12px;
- text {
- color: #6A5ACD;
- }
- }
- .btn {
- text-align: center;
- button {
- background-color: var(--fFB1Color);
- }
- }
- }
- </style>
|