|
|
@@ -4,512 +4,373 @@
|
|
|
<view class="content-money">
|
|
|
<view class="flex " style="width: 750rpx;justify-content: space-around;margin-left: 0;">
|
|
|
<view class="buttom">
|
|
|
- <view class="icon">{{ money | getMoneyStyle }}</view>
|
|
|
- <text class="text">可提现佣金</text>
|
|
|
+ <view class="icon">{{ userInfo.brokerage_price | getMoneyStyle }}</view>
|
|
|
+ <text class="text">可提现现金</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
-
|
|
|
+
|
|
|
<view class="row-box">
|
|
|
<view class="title">提现金额</view>
|
|
|
<view class="row">
|
|
|
<text class="tit">¥</text>
|
|
|
- <input class="input" type="number" v-model="withdrawal" :placeholder="'最低提现金额' + minPrice + '元'"
|
|
|
- placeholder-class="placeholder" />
|
|
|
- <view class="buttom" @click="withdrawal = money">全部提现</view>
|
|
|
+ <input class="input" type="number" v-model="withdrawal" :placeholder="'最低提现金额' + minPrice + '元'" placeholder-class="placeholder" />
|
|
|
+ <view class="buttom" @click="withdrawal = userInfo.brokerage_price">全部提现</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
- <view class="list">
|
|
|
+ <view class="list" >
|
|
|
<radio-group @change="tabRadio">
|
|
|
- <label>
|
|
|
+ <!-- <label>
|
|
|
<view class="box">
|
|
|
<view class="icon iconfont iconweixin1"></view>
|
|
|
<view class="title-box">
|
|
|
- <view class="title">
|
|
|
- <text >提现至微信</text>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
- <view class="right">
|
|
|
- <radio value="weixin" color="#a9d664" :checked="type == 'weixin'" />
|
|
|
+ <view class="title"><text>提现至微信</text></view>
|
|
|
</view>
|
|
|
+ <view class="right"><radio value="weixin" color="#01a6a8" :checked="type == 'weixin'" /></view>
|
|
|
</view>
|
|
|
- </label>
|
|
|
- <template v-if="isSh == 1">
|
|
|
- <label>
|
|
|
- <view class="box">
|
|
|
- <view class="icon iconfont iconzhifubao"></view>
|
|
|
- <view class="title-box">
|
|
|
- <view class="title">
|
|
|
- <text >提现至支付宝</text>
|
|
|
- </view>
|
|
|
+ </label> -->
|
|
|
+ <label>
|
|
|
+ <view class="box">
|
|
|
+ <view class="icon iconfont iconzhifubao"></view>
|
|
|
+ <view class="title-box">
|
|
|
+ <view class="title">
|
|
|
+ <text v-if="aliData.fullname">提现至支付宝</text>
|
|
|
+ <text v-else>请创建支付宝账号</text>
|
|
|
</view>
|
|
|
- <view class="right">
|
|
|
- <radio value="alipay" color="#a9d664" :checked="type == 'alipay'" />
|
|
|
+ <view class="node">
|
|
|
+ <text v-if="aliData.fullname">真实姓名({{ aliData.fullname }})</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
- </label>
|
|
|
- <label>
|
|
|
- <view class="box">
|
|
|
- <view class="icon iconfont">
|
|
|
- <image class="icon-img" src="/static/icon/i8.png" mode="aspectFit"></image>
|
|
|
- </view>
|
|
|
- <view class="title-box">
|
|
|
- <view class="title">
|
|
|
- <text >提现银行账号</text>
|
|
|
- </view>
|
|
|
+ <view class="right"><radio value="alipay" color="#01a6a8" :checked="type == 'alipay'" /></view>
|
|
|
+ </view>
|
|
|
+ </label>
|
|
|
+ <label >
|
|
|
+ <view class="box">
|
|
|
+ <view class="icon iconfont"><image class="icon-img" src="/static/icon/i8.png" mode="aspectFit"></image></view>
|
|
|
+ <view class="title-box">
|
|
|
+ <view class="title">
|
|
|
+ <text v-if="bankData.bankno">{{ bankData.bank + ' ' + bankData.bankno }}</text>
|
|
|
+ <text v-else>请输入银行账号</text>
|
|
|
</view>
|
|
|
- <view class="right">
|
|
|
- <radio value="bank" color="#a9d664" :checked="type == 'bank'" />
|
|
|
+ <view class="node">
|
|
|
+ <text v-if="bankData.fullname">真实姓名({{ bankData.fullname }})</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
- </label>
|
|
|
- </template>
|
|
|
-
|
|
|
+ <view class="right"><radio value="bank" color="#01a6a8" :checked="type == 'bank'" /></view>
|
|
|
+ </view>
|
|
|
+ </label>
|
|
|
</radio-group>
|
|
|
</view>
|
|
|
- <!-- <view class="row b-b" v-if="type == 'weixin'">
|
|
|
- <text class="tit">微信账号</text>
|
|
|
- <input class="input" type="text" v-model="weixin_no" placeholder="请输入微信账号"
|
|
|
- placeholder-class="placeholder" />
|
|
|
- </view> -->
|
|
|
- <template v-if="isSh == 1">
|
|
|
- <view class="row b-b" v-if="type == 'alipay'">
|
|
|
- <text class="tit">姓名</text>
|
|
|
- <input class="input" type="text" v-model="ali_people" placeholder="请输入支付宝姓名"
|
|
|
- placeholder-class="placeholder" />
|
|
|
- </view>
|
|
|
- <view class="row b-b" v-if="type == 'alipay'">
|
|
|
- <text class="tit">支付宝账号</text>
|
|
|
- <input class="input" type="text" v-model="alipay_code" placeholder="请输入支付宝账号"
|
|
|
- placeholder-class="placeholder" />
|
|
|
- </view>
|
|
|
- <view class="row b-b" v-if="type == 'bank'">
|
|
|
- <text class="tit">姓名</text>
|
|
|
- <input class="input" type="text" v-model="bank_people" placeholder="请输入银行卡姓名"
|
|
|
- placeholder-class="placeholder" />
|
|
|
- </view>
|
|
|
- <view class="row b-b" v-if="type == 'bank'">
|
|
|
+ <view class="row b-b" v-if="type == 'alipay'">
|
|
|
+ <text class="tit">支付宝账号</text>
|
|
|
+ <input class="input" type="text" v-model="alipay_code" placeholder="请输入支付宝账号" placeholder-class="placeholder" />
|
|
|
+ </view>
|
|
|
+ <view class="row b-b" v-if="type == 'alipay'">
|
|
|
+ <text class="tit">支付宝姓名</text>
|
|
|
+ <input class="input" type="text" v-model="alipay_name" placeholder="请输入支付宝姓名" placeholder-class="placeholder" />
|
|
|
+ </view>
|
|
|
+ <template v-if="type == 'bank'">
|
|
|
+ <view class="row b-b" >
|
|
|
<text class="tit">银行卡号</text>
|
|
|
- <input class="input" type="text" v-model="bank_code" placeholder="请输入银行卡号"
|
|
|
- placeholder-class="placeholder" />
|
|
|
+ <input class="input" type="text" v-model="bank_code" placeholder="请输入银行卡号" placeholder-class="placeholder" />
|
|
|
</view>
|
|
|
-
|
|
|
- <view class="row b-b" v-if="type == 'bank'">
|
|
|
- <text class="tit">手机号</text>
|
|
|
- <input class="input" type="text" v-model="phone" placeholder="请输入银行卡姓名"
|
|
|
- placeholder-class="placeholder" />
|
|
|
+ <view class="row b-b" >
|
|
|
+ <text class="tit">姓名</text>
|
|
|
+ <input class="input" type="text" v-model="bank_people" placeholder="请输入银行卡姓名" placeholder-class="placeholder" />
|
|
|
</view>
|
|
|
- <view class="row b-b" v-if="type == 'bank'">
|
|
|
+ <view class="row b-b" >
|
|
|
<text class="tit">所属银行</text>
|
|
|
- <input class="input" type="text" v-model="bank_name" placeholder="请输入所属银行"
|
|
|
- placeholder-class="placeholder" />
|
|
|
+ <input class="input" type="text" v-model="bank_name" placeholder="请输入所属银行" placeholder-class="placeholder" />
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
- <!-- <view class="row b-b" v-if="type == 'bank'">
|
|
|
- <text class="tit">所属支行</text>
|
|
|
- <input class="input" type="text" v-model="bank_belonging" placeholder="请输入所属支行"
|
|
|
- placeholder-class="placeholder" />
|
|
|
- </view> -->
|
|
|
<button class="add-btn up" @click="confirm">提交申请</button>
|
|
|
-
|
|
|
+ <!-- <button class="add-btn modified" v-if="!weichatBsrowser" @click="navTo('/pages/money/account')">账号管理</button> -->
|
|
|
</view>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
- import {
|
|
|
+import { getMoneyStyle } from '@/utils/rocessor.js';
|
|
|
+import { extractCash, extractBank, aliInfo, bankInfo ,examine} from '@/api/wallet.js';
|
|
|
+import { orderData, getUserInfo } from '@/api/user.js';
|
|
|
+import { mapState, mapMutations } from 'vuex';
|
|
|
+import uniNoticeBar from '@/components/uni-notice-bar/uni-notice-bar.vue';
|
|
|
+export default {
|
|
|
+ filters: {
|
|
|
getMoneyStyle
|
|
|
- } from '@/utils/rocessor.js';
|
|
|
- import {
|
|
|
- extractCash,
|
|
|
- extractBank,
|
|
|
- aliInfo,
|
|
|
- bankInfo,
|
|
|
- setBank,
|
|
|
- getBank,
|
|
|
- examine
|
|
|
- } from '@/api/wallet.js';
|
|
|
- import {
|
|
|
- orderData,
|
|
|
- getUserInfo
|
|
|
- } from '@/api/user.js';
|
|
|
- import {
|
|
|
- mapState,
|
|
|
- mapMutations
|
|
|
- } from 'vuex';
|
|
|
- import uniNoticeBar from '@/components/uni-notice-bar/uni-notice-bar.vue';
|
|
|
- export default {
|
|
|
- filters: {
|
|
|
- getMoneyStyle
|
|
|
+ },
|
|
|
+ components: {
|
|
|
+ uniNoticeBar
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ ...mapState('user', ['userInfo', 'orderInfo', 'hasLogin'])
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ type: 'bank', //提现方式
|
|
|
+ money: '0.00', //可提现金额
|
|
|
+ freeze: '0.0', //冻结金额
|
|
|
+ withdrawal: '', //提现金额
|
|
|
+ minPrice: '', //最少提现金额
|
|
|
+ aliData: {},
|
|
|
+ sxf:0,
|
|
|
+ bank:0,
|
|
|
+ bankData: {},
|
|
|
+ alipay_code: '',
|
|
|
+ alipay_name: '',
|
|
|
+ bank_code: '',
|
|
|
+ bank_people: '',
|
|
|
+ bank_name: '',
|
|
|
+ // #ifdef H5
|
|
|
+ weichatBsrowser: false,
|
|
|
+ // #endif
|
|
|
+ sh: 1,
|
|
|
+ };
|
|
|
+ },
|
|
|
+ onLoad(options) {
|
|
|
+ this.bank_people = uni.getStorageSync('bank_people')
|
|
|
+ this.bank_name = uni.getStorageSync('bank_name')
|
|
|
+ this.bank_code = uni.getStorageSync('bank_code')
|
|
|
+ // #ifdef H5
|
|
|
+ this.weichatBsrowser = uni.getStorageSync('weichatBrowser');
|
|
|
+ // #endif
|
|
|
+ this.loadData()
|
|
|
+ //加载提现信息
|
|
|
+ // // 加载提款账号信息
|
|
|
+ // this.loadAli();
|
|
|
+ // this.loadBank();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ ...mapMutations('user', ['setUserInfo', 'setOrderInfo']),
|
|
|
+ // 加载余额信息
|
|
|
+ async loadData() {
|
|
|
+ extractBank({}).then(({ data }) => {
|
|
|
+ this.minPrice = data.minPrice;
|
|
|
+ });
|
|
|
+ // examine({}).then(res => {
|
|
|
+ // console.log(res)
|
|
|
+ // this.sh = res.msg
|
|
|
+ // })
|
|
|
},
|
|
|
- components: {
|
|
|
- uniNoticeBar
|
|
|
+ // 跳转
|
|
|
+ navTo(url) {
|
|
|
+ uni.navigateTo({
|
|
|
+ url: url
|
|
|
+ });
|
|
|
},
|
|
|
- computed: {
|
|
|
- ...mapState('user', ['userInfo', 'orderInfo', 'hasLogin'])
|
|
|
+ // 切换选中对象
|
|
|
+ tabRadio(e) {
|
|
|
+ this.type = e.detail.value;
|
|
|
+ console.log(this.type);
|
|
|
},
|
|
|
- data() {
|
|
|
- return {
|
|
|
- ali_people: '',
|
|
|
- loading: false,
|
|
|
- phone: '',
|
|
|
- weixin_no: '',
|
|
|
- type: 'weixin', //提现方式
|
|
|
- money: '0.00', //可提现金额
|
|
|
- freeze: '0.0', //冻结金额
|
|
|
- withdrawal: '', //提现金额
|
|
|
- minPrice: '', //最少提现金额
|
|
|
- aliData: {},
|
|
|
- bankData: {},
|
|
|
- weixin: {},
|
|
|
- alipay_code: '',
|
|
|
- alipay_name: '',
|
|
|
- bank_code: '',
|
|
|
- bank_people: '',
|
|
|
- bank_name: '',
|
|
|
- bank_belonging: '',
|
|
|
- jftype: 0,
|
|
|
- isSh: 2
|
|
|
+ // 提交
|
|
|
+ confirm() {
|
|
|
+ let obj = this
|
|
|
+ let data = {
|
|
|
+ extract_type: this.type, //bank -银行卡 alipay-支付宝 weixin-微信
|
|
|
+ money: this.withdrawal, //金额
|
|
|
+ money_type: 0 //0佣金1余额
|
|
|
};
|
|
|
- },
|
|
|
- onLoad(options) {
|
|
|
- this.examine()
|
|
|
- //加载提现信息
|
|
|
- this.loadData();
|
|
|
- // // 加载提款账号信息
|
|
|
- // this.loadAli();
|
|
|
- // this.loadBank();
|
|
|
- this.getBank()
|
|
|
-
|
|
|
- },
|
|
|
- methods: {
|
|
|
- ...mapMutations('user', ['setUserInfo', 'setOrderInfo']),
|
|
|
- // 加载余额信息
|
|
|
- getBank() {
|
|
|
- let obj = this
|
|
|
- getBank().then(res => {
|
|
|
- if(res.data.zfb.name) {
|
|
|
- obj.ali_people = res.data.zfb.name
|
|
|
- obj.alipay_code = res.data.zfb.payment
|
|
|
- }
|
|
|
- if(res.data.bank.name) {
|
|
|
- obj.bank_people = res.data.bank.name
|
|
|
- obj.bank_code = res.data.bank.payment
|
|
|
- obj.phone = res.data.bank.phone
|
|
|
- obj.bank_name = res.data.bank.bank
|
|
|
- }
|
|
|
- })
|
|
|
- },
|
|
|
- async loadData() {
|
|
|
-
|
|
|
- extractBank({}).then(({
|
|
|
- data
|
|
|
- }) => {
|
|
|
- console.log(data, 'data+++++++++')
|
|
|
- this.minPrice = data.minPrice;
|
|
|
- this.money = data.brokerage_price
|
|
|
- });
|
|
|
-
|
|
|
- },
|
|
|
- examine() {
|
|
|
- examine().then(res => {
|
|
|
- this.isSh = res.msg
|
|
|
- })
|
|
|
- },
|
|
|
- // 跳转
|
|
|
- navTo(url) {
|
|
|
- uni.navigateTo({
|
|
|
- url: url
|
|
|
- });
|
|
|
- },
|
|
|
- // 切换选中对象
|
|
|
- tabRadio(e) {
|
|
|
- this.type = e.detail.value;
|
|
|
- },
|
|
|
- // 提交
|
|
|
- confirm() {
|
|
|
- let obj = this
|
|
|
- if(obj.loading) {
|
|
|
- return
|
|
|
- }
|
|
|
- let data = {
|
|
|
- extract_type: this.type, //bank -银行卡 alipay-支付宝 weixin-微信
|
|
|
- money: this.withdrawal, //金额
|
|
|
- type: 0 //0佣金1余额
|
|
|
- };
|
|
|
- if (this.withdrawal < this.minPrice) {
|
|
|
- uni.showToast({
|
|
|
- title: '提现金额不可少于' + this.minPrice,
|
|
|
- duration: 2000,
|
|
|
- mask: false,
|
|
|
- icon: 'none'
|
|
|
- });
|
|
|
- return;
|
|
|
- }
|
|
|
- if(obj.type == 'alipay') {
|
|
|
- if(obj.ali_people == '') {
|
|
|
- return obj.$api.msg('请输入姓名')
|
|
|
- }
|
|
|
- if(obj.alipay_code == '') {
|
|
|
- return obj.$api.msg('请输入支付宝账号')
|
|
|
- }
|
|
|
- data.name = obj.ali_people
|
|
|
- data.alipay_code = obj.alipay_code
|
|
|
- }
|
|
|
- // if (this.type == 'alipay') {
|
|
|
- // console.log('alipay');
|
|
|
- // data.name = this.aliData.name;
|
|
|
- // data.alipay_code = this.aliData.payment;
|
|
|
- // }
|
|
|
- if (obj.type == 'bank') {
|
|
|
- if(obj.bank_people == '') {
|
|
|
- return obj.$api.msg('请输入姓名')
|
|
|
- }
|
|
|
- if(obj.phone == '') {
|
|
|
- return obj.$api.msg('请输入手机号码')
|
|
|
- }
|
|
|
- if(obj.bank_name == '') {
|
|
|
- return obj.$api.msg('请输入所属银行')
|
|
|
- }
|
|
|
- if(obj.bank_code == '') {
|
|
|
- return obj.$api.msg('请输入银行卡号')
|
|
|
- }
|
|
|
- data.name = obj.bank_people;
|
|
|
- data.phone = obj.phone
|
|
|
- data.bankname = obj.bank_name;
|
|
|
- data.cardnum = obj.bank_code;
|
|
|
- }
|
|
|
- // if (this.type == 'bank') {
|
|
|
- // console.log('bank');
|
|
|
- // data.name = this.bankData.name;
|
|
|
- // data.bankname = this.bankData.bank;
|
|
|
- // data.cardnum = this.bankData.payment;
|
|
|
- // // data.bank_belonging = this.bankData.bank_name
|
|
|
- // }
|
|
|
- // if(this.type == 'weixin') {
|
|
|
- // console.log('weixin');
|
|
|
- // data.weixin = this.weixin_no
|
|
|
-
|
|
|
- // }
|
|
|
- obj.loading = true
|
|
|
- extractCash(data)
|
|
|
- .then(e => {
|
|
|
- obj.loadData()
|
|
|
- obj.withdrawal = ''
|
|
|
- obj.loading = false
|
|
|
- uni.showToast({
|
|
|
- title: '提交成功',
|
|
|
- duration: 2000,
|
|
|
- position: 'top'
|
|
|
- });
|
|
|
- setBank({
|
|
|
- type: obj.type == 'alipay' ? 2:3,//2-alipay 3-bank
|
|
|
- name: obj.type == 'alipay' ? obj.ali_people:obj.bank_people,//
|
|
|
- phone: obj.phone,
|
|
|
- payment: obj.type == 'alipay' ?obj.alipay_code:obj.bank_code,
|
|
|
- bank: obj.bank_name,
|
|
|
- // bank_name: obj.bank_name
|
|
|
- }).then(res => {
|
|
|
-
|
|
|
- })
|
|
|
-
|
|
|
- })
|
|
|
- .catch(e => {
|
|
|
- obj.loading = false
|
|
|
- });
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-</script>
|
|
|
-
|
|
|
-<style lang="scss">
|
|
|
- page {
|
|
|
- height: 100%;
|
|
|
- }
|
|
|
-
|
|
|
- .content-money {
|
|
|
- padding: 30rpx 0;
|
|
|
- background: #ffffff;
|
|
|
- }
|
|
|
-
|
|
|
- .flex {
|
|
|
- background-color: #ffffff;
|
|
|
- text-align: center;
|
|
|
- margin: 0 30rpx;
|
|
|
- border-radius: $border-radius-sm;
|
|
|
-
|
|
|
- .buttom {
|
|
|
- font-size: $font-lg;
|
|
|
- width: 50%;
|
|
|
- }
|
|
|
-
|
|
|
- .interval {
|
|
|
- width: 2px;
|
|
|
- height: 60rpx;
|
|
|
- background-color: #eeeeee;
|
|
|
- }
|
|
|
-
|
|
|
- .icon {
|
|
|
- background-size: 100%;
|
|
|
- font-size: 42rpx;
|
|
|
- color: $font-color-dark;
|
|
|
- font-weight: bold;
|
|
|
- background-repeat: no-repeat;
|
|
|
- background-position: center;
|
|
|
- }
|
|
|
-
|
|
|
- .text {
|
|
|
- color: $font-color-light;
|
|
|
- }
|
|
|
- }
|
|
|
|
|
|
- .row-box {
|
|
|
- margin-top: 30rpx;
|
|
|
- padding: 20rpx 30rpx;
|
|
|
- background: #fff;
|
|
|
-
|
|
|
- .title {
|
|
|
- font-size: $font-base + 2rpx;
|
|
|
- color: $font-color-dark;
|
|
|
- }
|
|
|
-
|
|
|
- .row {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- position: relative;
|
|
|
- height: 80rpx;
|
|
|
-
|
|
|
- .tit {
|
|
|
- flex-shrink: 0;
|
|
|
- width: 40rpx;
|
|
|
- font-size: 30rpx;
|
|
|
- color: $font-color-dark;
|
|
|
+ if (this.withdrawal < this.minPrice) {
|
|
|
+ uni.showToast({
|
|
|
+ title: '提现金额不可少于' + this.minPrice,
|
|
|
+ duration: 2000,
|
|
|
+ mask: false,
|
|
|
+ icon: 'none'
|
|
|
+ });
|
|
|
+ return;
|
|
|
}
|
|
|
-
|
|
|
- .input {
|
|
|
- flex: 1;
|
|
|
- font-size: 30rpx;
|
|
|
- color: $font-color-dark;
|
|
|
+ if (this.type == 'alipay') {
|
|
|
+ console.log('alipay');
|
|
|
+ data.name = this.alipay_name;
|
|
|
+ data.alipay_code = this.alipay_code;
|
|
|
}
|
|
|
-
|
|
|
- .iconlocation {
|
|
|
- font-size: 36rpx;
|
|
|
- color: $font-color-light;
|
|
|
+ if (this.type == 'bank') {
|
|
|
+ // console.log(bank,'bank');
|
|
|
+ data.name = this.bank_people;
|
|
|
+ data.bankname = this.bank_name;
|
|
|
+ data.cardnum = this.bank_code;
|
|
|
}
|
|
|
|
|
|
- .buttom {
|
|
|
- color: $font-color-spec;
|
|
|
- font-size: $font-base;
|
|
|
- }
|
|
|
+ extractCash(data)
|
|
|
+ .then(e => {
|
|
|
+ if(obj.type == 'bank') {
|
|
|
+ uni.setStorageSync('bank_people', obj.bank_people)
|
|
|
+ uni.setStorageSync('bank_name',obj.bank_name)
|
|
|
+ uni.setStorageSync('bank_code',obj.bank_code)
|
|
|
+ }
|
|
|
+ getUserInfo({})
|
|
|
+ .then(({ data }) => {
|
|
|
+ this.setUserInfo(data);
|
|
|
+ })
|
|
|
+ .catch(e => {
|
|
|
+ console.log(e);
|
|
|
+ });
|
|
|
+ uni.showToast({
|
|
|
+ title: '申请成功!',
|
|
|
+ duration: 2000,
|
|
|
+ position: 'top'
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .catch(e => {
|
|
|
+ console.log();
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
+};
|
|
|
+</script>
|
|
|
|
|
|
- .add-btn {
|
|
|
- &.modified {
|
|
|
- // color: #ffffff;
|
|
|
- border:1px solid #ff4072;
|
|
|
- // background-color: #fff;
|
|
|
- color: #ff4072;
|
|
|
- }
|
|
|
-
|
|
|
- &.up {
|
|
|
- background: linear-gradient(90deg, #a9d664, #a9d664);
|
|
|
- color: #fff;
|
|
|
- }
|
|
|
-
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- justify-content: center;
|
|
|
- width: 690rpx;
|
|
|
- height: 80rpx;
|
|
|
- margin: 0 auto;
|
|
|
- margin-top: 30rpx;
|
|
|
+<style lang="scss">
|
|
|
+page {
|
|
|
+ height: 100%;
|
|
|
+}
|
|
|
+.content-money {
|
|
|
+ padding: 30rpx 0;
|
|
|
+ background: #ffffff;
|
|
|
+}
|
|
|
+.flex {
|
|
|
+ background-color: #ffffff;
|
|
|
+ text-align: center;
|
|
|
+ margin: 0 30rpx;
|
|
|
+ border-radius: $border-radius-sm;
|
|
|
+ .buttom {
|
|
|
font-size: $font-lg;
|
|
|
- border-radius: 10rpx;
|
|
|
- // box-shadow: 1px 2px 5px rgba(219, 63, 96, 0.4);
|
|
|
+ width: 50%;
|
|
|
}
|
|
|
-
|
|
|
- .list {
|
|
|
- padding-left: 30rpx;
|
|
|
- margin-top: 30rpx;
|
|
|
- background-color: #ffffff;
|
|
|
-
|
|
|
- .box {
|
|
|
- display: flex;
|
|
|
- align-items: center;
|
|
|
- width: 100%;
|
|
|
- height: 120rpx;
|
|
|
- border-bottom: 1px solid $border-color-light;
|
|
|
-
|
|
|
- .icon {
|
|
|
- font-size: 48rpx;
|
|
|
- padding-right: 20rpx;
|
|
|
-
|
|
|
- .icon-img {
|
|
|
- height: 50rpx;
|
|
|
- width: 50rpx;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .iconweixin1 {
|
|
|
- color: #18bf16;
|
|
|
- }
|
|
|
-
|
|
|
- .iconzhifubao {
|
|
|
- color: #08aaec;
|
|
|
- }
|
|
|
-
|
|
|
- .title-box {
|
|
|
- flex-grow: 1;
|
|
|
- text-align: left;
|
|
|
-
|
|
|
- .title {
|
|
|
- font-size: $font-base + 2rpx;
|
|
|
- color: $font-color-base;
|
|
|
- }
|
|
|
-
|
|
|
- .node {
|
|
|
- font-size: $font-sm;
|
|
|
- color: $font-color-light;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
+ .interval {
|
|
|
+ width: 2px;
|
|
|
+ height: 60rpx;
|
|
|
+ background-color: #eeeeee;
|
|
|
}
|
|
|
-
|
|
|
- /deep/ .uni-radio-input {
|
|
|
- width: 45rpx;
|
|
|
- height: 45rpx;
|
|
|
+ .icon {
|
|
|
+ background-size: 100%;
|
|
|
+ font-size: 42rpx;
|
|
|
+ color: $font-color-dark;
|
|
|
+ font-weight: bold;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+ background-position: center;
|
|
|
+ }
|
|
|
+ .text {
|
|
|
+ color: $font-color-light;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+.row-box {
|
|
|
+ margin-top: 30rpx;
|
|
|
+ padding: 20rpx 30rpx;
|
|
|
+ background: #fff;
|
|
|
+ .title {
|
|
|
+ font-size: $font-base + 2rpx;
|
|
|
+ color: $font-color-dark;
|
|
|
}
|
|
|
-
|
|
|
.row {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
position: relative;
|
|
|
- padding: 0 30upx;
|
|
|
- height: 110upx;
|
|
|
- background: #fff;
|
|
|
-
|
|
|
+ height: 80rpx;
|
|
|
.tit {
|
|
|
flex-shrink: 0;
|
|
|
- width: 250upx;
|
|
|
- font-size: 30upx;
|
|
|
+ width: 40rpx;
|
|
|
+ font-size: 30rpx;
|
|
|
color: $font-color-dark;
|
|
|
}
|
|
|
-
|
|
|
.input {
|
|
|
flex: 1;
|
|
|
- font-size: 30upx;
|
|
|
+ font-size: 30rpx;
|
|
|
color: $font-color-dark;
|
|
|
}
|
|
|
-
|
|
|
.iconlocation {
|
|
|
- font-size: 36upx;
|
|
|
+ font-size: 36rpx;
|
|
|
color: $font-color-light;
|
|
|
}
|
|
|
+
|
|
|
+ .buttom {
|
|
|
+ color: #fff;
|
|
|
+ font-size: $font-base;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+.add-btn {
|
|
|
+ background: linear-gradient(-90deg, #FAC545, #FFE000);
|
|
|
+ border-radius: 10px;
|
|
|
+ width: 690rpx;
|
|
|
+ height: 80rpx;
|
|
|
+ margin: 0 auto;
|
|
|
+ margin-top: 30rpx;
|
|
|
+ font-size: $font-lg;
|
|
|
+ border-radius: 10rpx;
|
|
|
+ color: #6B4216;
|
|
|
}
|
|
|
|
|
|
- .tip {
|
|
|
- padding: 20rpx;
|
|
|
- color: #fd3b39;
|
|
|
+.list {
|
|
|
+ padding-left: 30rpx;
|
|
|
+ margin-top: 30rpx;
|
|
|
+ background-color: #ffffff;
|
|
|
+ .box {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ width: 100%;
|
|
|
+ height: 120rpx;
|
|
|
+ border-bottom: 1px solid $border-color-light;
|
|
|
+ .icon {
|
|
|
+ font-size: 48rpx;
|
|
|
+ padding-right: 20rpx;
|
|
|
+ .icon-img {
|
|
|
+ height: 50rpx;
|
|
|
+ width: 50rpx;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .iconweixin1 {
|
|
|
+ color: #18bf16;
|
|
|
+ }
|
|
|
+ .iconzhifubao {
|
|
|
+ color: #08aaec;
|
|
|
+ }
|
|
|
+ .title-box {
|
|
|
+ flex-grow: 1;
|
|
|
+ text-align: left;
|
|
|
+ .title {
|
|
|
+ font-size: $font-base + 2rpx;
|
|
|
+ color: $font-color-base;
|
|
|
+ }
|
|
|
+ .node {
|
|
|
+ font-size: $font-sm;
|
|
|
+ color: $font-color-light;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+/deep/ .uni-radio-input {
|
|
|
+ width: 45rpx;
|
|
|
+ height: 45rpx;
|
|
|
+}
|
|
|
+.row {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ position: relative;
|
|
|
+ padding: 0 30upx;
|
|
|
+ height: 110upx;
|
|
|
+ background: #fff;
|
|
|
+
|
|
|
+ .tit {
|
|
|
+ flex-shrink: 0;
|
|
|
+ width: 250upx;
|
|
|
+ font-size: 30upx;
|
|
|
+ color: $font-color-dark;
|
|
|
+ }
|
|
|
+ .input {
|
|
|
+ flex: 1;
|
|
|
+ font-size: 30upx;
|
|
|
+ color: $font-color-dark;
|
|
|
+ }
|
|
|
+ .iconlocation {
|
|
|
+ font-size: 36upx;
|
|
|
+ color: $font-color-light;
|
|
|
}
|
|
|
+}
|
|
|
+.tip {
|
|
|
+ padding: 20rpx;
|
|
|
+ color: #FD3B39;
|
|
|
+}
|
|
|
</style>
|