123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568 |
- <template>
- <view class="container">
- <view class="logo"><image :src="logo"></image></view>
- <view class="select-box flex_item">
- <view @tap="handleTap('picker')">{{ title }}</view>
- <lb-picker
- ref="picker"
- v-model="value"
- mode="selector"
- :list="typeList"
- :dataset="{ name: 'type' }"
- @change="handleChange"
- @confirm="handleConfirm"
- @cancel="handleCancel"
- ></lb-picker>
- <image src="../../static/img/img37.png"></image>
- </view>
- <view class="empty-box" v-show="list.length == 0"><empty></empty></view>
- <view class="list" v-show="list.length > 0">
- <view class="list-box" v-for="(ls, index) in list" :key="index" @click="nav(index)">
- <view class="flex">
- <view class="list-tpl flex_item">
- <image src="../../static/img/img36.png"></image>
- <view class="tpl-name">{{ ls.title }}</view>
- </view>
- <view class="num clamp" v-if="ls.pm === 0">- {{ ls.number }}</view>
- <view class="num clamp" v-else>+ {{ ls.number }}</view>
- </view>
- <view class="tpl-time">{{ ls.add_time }}</view>
- </view>
- </view>
- <uni-load-more :status="loadingType"></uni-load-more>
- <view class="flex submit-box">
- <view class="submit" @click="recharge">充币</view>
- <view class="tip"></view>
- <view class="submit" @click="withdraw">提币</view>
- </view>
- <uni-popup ref="popup" type="center">
- <view class="popup">
- <view class="cancel flex" @click="close">
- <view></view>
- <view class="tip">x</view>
- </view>
- <view class="list-boxs">
- <view class="popup-text">购买数量:</view>
- <view class="password"><input type="number" v-model="num" placeholder="请输入算力数量" /></view>
- <view class="popup-text">币种选择:</view>
- <view class="content" @click="useOutClickSide"><easy-select ref="easySelect" :options="moneyTypeList" :value="name" @selectOne="selectOne"></easy-select></view>
- <view class="confirm-btn" @click="pay"><text>确认充币</text></view>
- </view>
- </view>
- </uni-popup>
- <uni-popup ref="mation" type="center">
- <view class="popup">
- <view class="cancel flex" @click="close2"><view class="tip">x</view></view>
- <view class="list-boxs">
- <view class="textBox flex">
- <view class="font">交易前:</view>
- <view class="number">{{ before * 1 }} {{ code }}</view>
- </view>
- <view class="xian"></view>
- <view class="textBox flex">
- <view class="font">交易额:</view>
- <view class="number">{{ pm }}{{ number * 1 }} {{ code }}</view>
- </view>
- <view class="xian"></view>
- <view class="textBox flex">
- <view class="font">交易后:</view>
- <view class="number">{{ balance * 1 }} {{ code }}</view>
- </view>
- <view class="xian"></view>
- <scroll-view scroll-y="true" class="textBox">
- <view class="font">流水详情:</view>
- <view class="text">{{ text }}</view>
- </scroll-view>
- </view>
- </view>
- </uni-popup>
- </view>
- </template>
- <script>
- import { moneyLog, recharge } from '@/api/finance.js';
- import { moneyType } from '@/api/index.js';
- import LbPicker from '@/components/lb-picker';
- import empty from '@/components/empty';
- import uniLoadMore from '@/components/uni-load-more/uni-load-more.vue';
- export default {
- components: {
- LbPicker,
- empty,
- uniLoadMore
- },
- data() {
- return {
- code: '',
- title: '筛选',
- type: '',
- value: '',
- index: 0,
- typeList: [],
- list: [],
- num: '',
- moneyTypeList: [],
- money: '',
- name: '',
- logo: '',
- price: '',
- mark: '',
- charge: 0,
- _address_qr: '',
- __money_address: '',
- ids: '',
- keysAddr: '',
- text: '',
- balance: '',
- before: '',
- number: '',
- pm: '',
- way: [],
- address: '',
- waypath: '',
- less: '',
- page: 1,
- limit: 10,
- isLast: true,
- loadingType: 'more',
- };
- },
- onLoad(option) {
- console.log(option, 'detail-option');
- this.waypath = option.waypath;
- console.log(this.waypath, '+++++++++++++++++++++');
- this.way = option.way;
- console.log('detail', this.way);
- this.code = option.code;
- this.logo = option.logo;
- this.name = option.name;
- this.price = option.price;
- this.charge = option.charge;
- this.address = option.address;
- console.log(this.address, 'detail');
- this._address_qr = option._address_qr;
- this.__money_address = option.__money_address;
- this.mark = option.mark;
- this.ids = option.ids;
- this.keysAddr = option.keysAddr;
- this.moneyType();
- this.firstLoad()
- },
- onShow() {},
- onReachBottom() {
- this.loadData();
- },
- methods: {
- firstLoad() {
-
- this.loadData();
-
- },
- loadData() {
- let obj = this;
- if(obj.loadingType == 'noMore' || obj.loadingType == 'loading') {
- return
- }
- obj.loadingType = 'loading'
- // if(obj.page == 1) {
- // uni.showLoading({
- // title: '加载中...',
- // mask: true
- // })
- // }
- moneyLog(
- {
- page: obj.page,
- limit: obj.limit,
- type: obj.type
- },
- obj.code
- ).then(({ data }) => {
- obj.typeList = data.type_list;
- console.log(data.list,'data.list')
- obj.list = obj.list.concat(data.list);
- console.log(obj.list);
- // if(obj.page == 1) {
- // uni.hideLoading()
- // }
-
- if(data.list.length == obj.limit) {
- obj.page++
- obj.loadingType = 'more'
- }else {
- obj.loadingType = 'noMore'
- }
- }).catch( e => {
- uni.hideLoading()
- console.log()
- })
- },
- // 所有币种
- async moneyType() {
- let obj = this;
- moneyType({}).then(({ data }) => {
- obj.moneyTypeList = data;
- });
- },
- pay() {
- let obj = this;
- recharge(
- {
- num: obj.num,
- money_type: obj.code
- },
- obj.buyId
- )
- .then(({ data }) => {
- obj.$api.msg(data.msg);
- obj.$refs.popup.close();
- obj.num = '';
- obj.code = '';
- uni.navigateTo({
- url: '/pages/finance/recharge?LOGO=' + data._address_qr + '&order_id=' + data.order_id + '&ddress=' + data.__money_address + '&id=' + data.id
- });
- })
- .catch(e => {
- obj.$refs.popup.close();
- });
- },
- selectOne(options) {
- this.name = options.name;
- this.code = options.code;
- },
- useOutClickSide() {
- this.$refs.easySelect.hideOptions && this.$refs.easySelect.hideOptions();
- },
- handleTap(name) {
- this.$refs[name].show();
- },
- handleChange(e) {
- // this.title = e.item.title;
- // this.type = e.item.type;
- },
- handleConfirm(e) {
- this.title = e.item.title;
- this.type = e.item.type;
- this.loadData();
- },
- handleCancel(e) {},
- recharge() {
- let url = '/pages/finance/recharge?logo=' +
- this.logo +
- '&name=' +
- this.name +
- '&code=' +
- this.code +
- '&_address_qr=' +
- this._address_qr +
- '&__money_address=' +
- this.__money_address +
- '&mark=' +
- this.mark +
- '&ids=' +
- this.ids +
- '&keysAddr=' +
- this.keysAddr +
- '&charge=' +
- this.charge +
- '&address=' +
- this.address +
- '&way=' +
- this.way +
- '&waypath=' +
- this.waypath
- if(this.code === 'FIL') {
- console.log("555555555")
- url='/pages/finance/recharge'
- }
- uni.navigateTo({
- url:url
- // '/pages/finance/recharge?logo=' +
- // this.logo +
- // '&name=' +
- // this.name +
- // '&code=' +
- // this.code +
- // '&_address_qr=' +
- // this._address_qr +
- // '&__money_address=' +
- // this.__money_address +
- // '&mark=' +
- // this.mark +
- // '&ids=' +
- // this.ids +
- // '&keysAddr=' +
- // this.keysAddr +
- // '&charge=' +
- // this.charge +
- // '&address=' +
- // this.address +
- // '&way=' +
- // this.way +
- // '&waypath=' +
- // this.waypath
- });
- // this.$refs.popup.open();
- },
- close() {
- this.$refs.popup.close();
- },
- withdraw() {
- uni.navigateTo({
- url: '/pages/finance/withdraw?logo=' + this.logo + '&name=' + this.name + '&code=' + this.code + '&money=' + this.price
- });
- },
- navTo(url) {
- uni.navigateTo({
- url
- });
- },
- nav(index) {
- const obj = this;
- obj.text = obj.list[index].mark;
- obj.balance = obj.list[index].balance;
- obj.number = obj.list[index].number;
- if (obj.list[index].pm == 1) {
- obj.pm = '+';
- obj.before = obj.subNum(obj.balance, obj.number);
- } else {
- obj.pm = '-';
- obj.before = this.addNum(obj.balance, obj.number);
- }
- this.$refs.mation.open();
- },
- addNum(num1, num2) {
- let sq1, sq2, multiple;
- try {
- sq1 = num1.toString().split('.')[1].length;
- } catch (e) {
- sq1 = 0;
- }
- try {
- sq2 = num2.toString().split('.')[1].length;
- } catch (e) {
- sq2 = 0;
- }
- multiple = Math.pow(10, Math.max(sq1, sq2) + 1);
- return (num1 * multiple + num2 * multiple) / multiple;
- },
- close2() {
- this.$refs.mation.close();
- },
- subNum(num1, num2) {
- let sq1, sq2, multiple;
- try {
- sq1 = num1.toString().split('.')[1].length;
- } catch (e) {
- sq1 = 0;
- }
- try {
- sq2 = num2.toString().split('.')[1].length;
- } catch (e) {
- sq2 = 0;
- }
- multiple = Math.pow(10, Math.max(sq1, sq2) + 1);
- return (num1 * multiple - num2 * multiple) / multiple;
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- min-height: 100%;
- background-color: #ffffff;
- .container {
- width: 100%;
- padding: 60rpx 30rpx 120rpx 30rpx;
- }
- }
- .logo {
- text-align: center;
- image {
- width: 119rpx;
- height: 119rpx;
- }
- }
- .select-box {
- position: absolute;
- right: 0;
- padding: 30rpx 30rpx;
- font-size: 32rpx;
- font-weight: 500;
- color: #333333;
- image {
- width: 21rpx;
- height: 11rpx;
- margin-left: 15rpx;
- }
- .select-name {
- padding-right: 15rpx;
- }
- }
- .list {
- margin-top: 120rpx;
- }
- .list-box {
- padding: 60rpx 0rpx 30rpx 0rpx;
- font-size: 30rpx;
- font-weight: 400;
- color: #333333;
- .tpl-time {
- font-size: 24rpx;
- font-weight: 400;
- color: #999999;
- width: 100%;
- text-align: right;
- padding-top: 25rpx;
- }
- .list-tpl {
- image {
- width: 39rpx;
- height: 43rpx;
- }
- .tpl-name {
- padding: 0rpx 15rpx 0rpx 30rpx;
- }
- }
- .num {
- font-size: 36rpx;
- font-weight: 400;
- color: #fb3a2f;
- width: 50%;
- text-align: right;
- }
- }
- .empty-box {
- width: 100%;
- height: 500rpx;
- padding-top: 200rpx;
- }
- .submit-box {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- background-color: #141E47;
- color: #ffffff;
- .submit {
- padding: 20rpx 20%;
- }
- .tip {
- width: 2rpx;
- height: 37rpx;
- background: #ffffff;
- }
- }
- //弹窗
- .popup {
- background-color: #ffffff;
- border-radius: 25rpx;
- font-size: 30rpx;
- .cancel {
- text-align: center;
- width: 100%;
- line-height: 60rpx;
- .tip {
- background-color: #5771df;
- color: #ffffff;
- width: 70rpx;
- height: 70rpx;
- border-top-right-radius: 25rpx;
- }
- }
- .list-boxs {
- padding: 0rpx 80rpx;
- .password {
- padding: 50rpx 0rpx;
- width: 100%;
- input {
- width: 70%;
- height: 80rpx;
- border: 2rpx solid #999999;
- padding-left: 25rpx;
- box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.27);
- border-radius: 11rpx;
- }
- }
- .confirm-btn {
- padding-bottom: 120rpx;
- padding-top: 30rpx;
- text {
- background-color: #5771df;
- color: #ffffff;
- width: 70%;
- text-align: center;
- padding: 25rpx 90rpx;
- border-radius: 15rpx;
- }
- }
- }
- }
- .popup {
- height: 618rpx;
- background: #ffffff;
- box-shadow: 3rpx 3rpx 6rpx 0rpx rgba(31, 31, 31, 0.17);
- border-radius: 40rpx;
- width: 700rpx;
- .cancel {
- text-align: center;
- width: 100%;
- line-height: 60rpx;
- position: relative;
- .tip {
- color: #000000;
- width: 70rpx;
- height: 70rpx;
- position: absolute;
- top: 0;
- right: 0;
- background-color: #fff;
- }
- }
- .list-boxs {
- width: 90%;
- margin: 0 auto;
- margin-top: 100rpx;
- .textBox {
- padding: 24rpx 18rpx;
- .font {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #4f4f4f;
- }
- .number {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #fb3a2f;
- }
- .text {
- text-indent: 2em;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #4f4f4f;
- }
- }
- .xian {
- width: 100%;
- height: 1px;
- background: #e7dfe8;
- }
- }
- }
- </style>
|