123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <template>
- <uni-popup ref="popupRef">
- <view class="unopen-box">
- <view class="unopen-title">
- <text class="z-close"></text>
- <text>资金划转</text>
- <text class="z-close" @click.stop="close">x</text>
- </view>
- <view class="unopen-content">
- <view class="hint-text">
- 温馨提示:无限模式仅盈利部分可划转至合
- 约账户中,最小划转金额为100USDT
- </view>
- <view class="account-box">
- <view class="account-item">
- 盈利账户
- </view>
- <view class="account-link">
- <text>划转至</text>
- </view>
- <view class="account-item">
- 合约账户
- </view>
- </view>
- <view class="capital-type">
- <text class="type-left">全部</text>
- <text class="type-rigth">USDT</text>
- </view>
- <view class="capital-nums">
- <text class="num-title">可划转金额:</text>
- <text class="num">29997.9123 USDT</text>
- </view>
- <view class="capital-btn">
- 确定
- </view>
- </view>
- </view>
- </uni-popup>
- </template>
- <script>
- // 合约 - 币币
- // 币币 - 合约 / 法币
- export default {
- data() {
- return {
- };
- },
- mounted() {
- },
- methods: {
- open() {
- this.$nextTick(() => {
- this.$refs.popupRef.open();
- })
- },
- close(){
- this.$refs.popupRef.close();
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import "~../switch.scss";
- </style>
|