| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947 |
- <template>
- <cwg-page-wrapper class="create-page" :isHeaderFixed="true">
- <cwg-header :title="t('Home.page_customer.item5')" />
- <uni-loading v-if="loading" />
- <view class="container" v-else>
- <view class="row">
- <view class="col-lg-8 col-sm-12">
- <view class="card">
- <view class="border-0 card-header">
- <uni-forms ref="formRef" :model="form" :rules="rules" label-position="top"
- validate-trigger="submit">
- <view class="row">
- <view class="col-lg-6">
- <h5 class="mb-3" v-t="'Custom.Transfer.Title1'"></h5>
- <uni-forms-item>
- <cwg-combox v-model:value="loginValue" :clearable="false"
- :options="withdrawDisplayList"
- :placeholder="t('placeholder.choose')" /></uni-forms-item>
- </view>
- <view class="col-lg-6">
- <h5 class="mb-3" v-t="'Custom.Transfer.Title2'"></h5>
- <uni-forms-item>
- <cwg-combox v-model:value="transferType" :clearable="false"
- :options="transferTypeOptions"
- :placeholder="t('placeholder.choose')" /></uni-forms-item>
- </view>
- <view class="col-lg-6">
- <h5 class="mb-3" v-t="'Custom.Transfer.IntoAccount'"></h5>
- <uni-forms-item name="depositLogin">
- <cwg-combox v-model:value="form.depositLogin" :clearable="false"
- :options="depositDisplayList" :placeholder="t('placeholder.choose')" />
- </uni-forms-item>
- </view>
- <view class="col-lg-6">
- <h5 class="mb-3" v-t="'Custom.Transfer.Amount'"></h5>
- <view class="card-row amount-box">
- <uni-forms-item name="amount" :error-message="amountErrorMessage"
- class="amount-input">
- <uni-easyinput v-model="form.amount"
- :placeholder="t('placeholder.input')" @blur="validateAmount" />
- </uni-forms-item>
- <view class="btn btn-gray waves-effect waves-light" v-t="'State.All'"
- @click="setAllAmount"></view>
- </view>
- </view>
- <button @click="toTransfer" class="btn btn-dark waves-effect waves-light"><i
- class="fi fi-rs-check"></i> <text v-t="'Btn.Submit'"></text></button>
- </view>
- </uni-forms>
- </view>
- </view>
- </view>
- <div class="col-lg-4 col-sm-12 card card-body">
- <h4 v-t="'Custom.Transfer.Tips'"></h4>
- <view class="fs-6 fw-semibold lh-sm">
- <view v-t="'Custom.Transfer.Tips1'"></view>
- <view v-t="'Custom.Transfer.Tips2'"></view>
- <view v-t="'Custom.Transfer.Tips3'"></view>
- <view v-t="'Custom.Transfer.Tips4'"></view>
- </view>
- </div>
- </view>
- </view>
- <!-- 步骤2:转账表单 -->
- <!-- 失败弹窗 -->
- <cwg-error-popup v-model:visible="dialogError" @confirm="closeDia" :responseMessage="RES" />
- <!-- 成功弹窗 -->
- <cwg-success-popup v-model:visible="dialogSuccess" @confirm="closeDia" />
- <!-- 等待弹窗 -->
- <cwg-wait-popup v-model:visible="dialogCheckWait" type="center" :mask-click="false" :showFooters="false" />
- <cwg-confirm-popup />
- </cwg-page-wrapper>
- </template>
- <script setup>
- import { ref, reactive, computed, onMounted, watch, nextTick } from 'vue'
- import { useI18n } from 'vue-i18n'
- import { onLoad, onReady } from '@dcloudio/uni-app'
- import { getCurrentInstance } from 'vue'
- import { isAfterJuly28 } from '@/utils/dateUtils'
- import { customApi } from '@/service/custom'
- import { financialApi } from '@/service/financial'
- import { ibApi } from '@/service/ib'
- // import ServiceA from "@/service/activity"; // 原注释保留
- import useUserStore from '@/stores/use-user-store'
- const userStore = useUserStore()
- const customInfo = computed(() => {
- return userStore?.userInfo?.customInfo || {}
- })
- import Config from '@/config/index'
- import { useConfirm } from '@/hooks/useConfirm'
- const confirm = useConfirm()
- const { Code } = Config
- const { t } = useI18n()
- // 获取全局实例(用于访问 Session、$pigeon 等)
- const { proxy } = getCurrentInstance()
- const Session = proxy?.Session
- const $pigeon = proxy?.$pigeon
- const balance = ref(0)
- // 响应式数据
- const loginValue = ref(null)
- const flag = ref(false)
- const RES = ref('') // 弹窗响应信息
- const loginOptions = ref([])
- const toOptions = ref([])
- // 跨系统内转下拉数据
- const accountList = ref([])
- const systemTransferType = ref(0)
- const step2 = ref(false)
- const transferType = ref('internal')
- const amountLimits = reactive({
- minAmount: '',
- maxAmount: '',
- })
- const form = reactive({
- currency: 'USD',
- depositLogin: null,
- withdrawLogin: null,
- amount: ''
- })
- const amountErrorMessage = ref('')
- const setAllAmount = () => {
- form.amount = balance.value
- validateAmount()
- }
- const dialogSuccess = computed(() => dialogCheck.value && dialogVisible.value)
- const dialogError = computed(() => dialogCheck.value && !dialogVisible.value)
- const dialogCheck = ref(false)
- const dialogVisible = ref(false)
- const dialogCheckWait = ref(false)
- const pageQuery = ref({})
- const rules = {
- withdrawLogin: {
- rules: [
- {
- required: true,
- errorMessage: t('vaildate.select.empty')
- },
- ],
- },
- depositLogin: {
- rules: [
- {
- required: true,
- errorMessage: t('vaildate.select.empty')
- },
- ],
- },
- amount: {
- rules: [
- {
- required: true,
- errorMessage: t('vaildate.amount.format'),
- },
- {
- validateFunction: (rule, value, data, callback) => {
- console.log(rule, value, data, callback, 2121212);
- value = Number(value)
- if (!value) {
- callback(t('vaildate.amount.format'))
- } else if (
- amountLimits.minAmount &&
- amountLimits.maxAmount &&
- (parseFloat(amountLimits.minAmount) > parseFloat(value) ||
- parseFloat(amountLimits.maxAmount) < parseFloat(value))
- ) {
- callback(t('vaildate.amount.amount') +
- amountLimits.minAmount +
- '-' +
- amountLimits.maxAmount)
- } else if (!/^[0-9]+([.]{1}[0-9]{1,2})?$/.test(value)) {
- callback(t('vaildate.amount.format'))
- } else if (value > balance.value) {
- callback(t('Label.LoginBalance') + ':$' + balance.value);
- }
- return true
- }
- },
- ],
- }
- }
- function validateAmount() {
- const value = Number(form.amount)
- if (!value) {
- amountErrorMessage.value = t('vaildate.amount.format')
- return false
- } else if (
- amountLimits.minAmount &&
- amountLimits.maxAmount &&
- (parseFloat(amountLimits.minAmount) > parseFloat(value) ||
- parseFloat(amountLimits.maxAmount) < parseFloat(value))
- ) {
- amountErrorMessage.value = t('vaildate.amount.amount') +
- amountLimits.minAmount +
- '-' +
- amountLimits.maxAmount
- } else if (!/^[0-9]+([.]{1}[0-9]{1,2})?$/.test(value)) {
- amountErrorMessage.value = t('vaildate.amount.format')
- } else if (value > balance.value) {
- amountErrorMessage.value = t('Label.LoginBalance') + ':$' + balance.value
- }
- amountErrorMessage.value = ''
- return true
- }
- // 模板引用(对应原 this.$refs.form)
- const formRef = ref(null)
- // 计算属性
- const getInfoAgentTransfer = computed(() => {
- return customInfo.value?.agentTransfer
- })
- // 单位类型
- function groupCurrency(type) {
- const map = { GBP: ': £', USD: ': $', EUR: ': €', USC: ': ¢' }
- return map[type] || ': $'
- }
- // 单位类型
- function groupCurrency1(type) {
- const map = { GBP: '£', USD: '$', EUR: '€', USC: '¢' }
- return map[type] || '$'
- }
- // 账户类型
- function groupTypeName(type) {
- const typeMap = {
- '1': t('AccountType.ClassicAccount'),
- '2': t('AccountType.SeniorAccount'),
- '3': isAfterJuly28() ? '--' : t('AccountType.AgencyAccount'),
- '5': t('AccountType.SpeedAccount'),
- '6': t('AccountType.SpeedAccount'),
- '7': t('AccountType.StandardAccount'),
- '8': t('AccountType.CentAccount')
- }
- return typeMap[type] || ''
- }
- const closeDia = () => {
- formRef.value?.clearValidate()
- step2.value = false
- loginValue.value = null
- form.depositLogin = null
- form.withdrawLogin = null
- form.amount = ''
- transferType.value = 'internal'
- dialogCheck.value = false
- dialogVisible.value = false
- amountErrorMessage.value = ''
- }
- const submitting = ref(false);
- const toTransfer = async () => {
- // 防止重复提交
- if (submitting.value) return;
- submitting.value = true;
- try {
- // 表单验证(验证失败会抛出异常)
- await formRef.value?.validate()
- // 检查活动参与情况(仅内部转账检查转出账户)[保留注释]
- if (transferType.value === 'internal') {
- // 活动检查代码已注释,保留原样
- }
- dialogCheckWait.value = true;
- let res;
- if (transferType.value === 'internal') {
- res = await financialApi.TransferApply({ ...form });
- } else if (transferType.value === 'agent') {
- res = await ibApi.agentTransCtaferApply({ ...form });
- } else if (transferType.value === 'system') {
- const selectedAccount = accountList.value.find(item => item.login === form.depositLogin);
- res = await financialApi.transferSystemApply({
- currency: form.currency,
- depositLogin: form.depositLogin,
- withdrawLogin: form.withdrawLogin,
- amount: form.amount,
- depositPlatform: selectedAccount?.platform || 'MT4',
- depositCurrency: selectedAccount?.currency || form.currency,
- depositType: selectedAccount?.type || 2,
- });
- }
- dialogCheckWait.value = false;
- if (res.code == Code.StatusOK) {
- dialogCheck.value = true;
- dialogVisible.value = true;
- } else {
- RES.value = res.msg;
- dialogCheck.value = true;
- dialogVisible.value = false;
- }
- } catch (error) {
- console.log(error, 12121);
- if (error instanceof Array) {
- uni.showToast({ title: error[0].errorMessage, icon: 'none' });
- return
- } else {
- console.log(232312);
- RES.value = error.msg;
- dialogCheck.value = true;
- dialogVisible.value = false;
- resetForm()
- }
- } finally {
- submitting.value = false;
- flag.value = false;
- if (dialogCheckWait.value) dialogCheckWait.value = false;
- }
- };
- const cancle = () => {
- step2.value = false
- loginValue.value = null
- transferType.value = 'internal'
- }
- // 转出账户列表
- const withdrawDisplayList = computed(() => {
- return loginOptions.value.map(item => ({
- text: `${item.login} - ${groupTypeName(item.type)} - ${t('Custom.Deposit.AvailableBalance')}${groupCurrency(item.currency)}${item.balance}`,
- value: item.login,
- disable: isWithdrawDisabled(item)
- }))
- })
- const transferTypeOptions = computed(() => [
- { value: 'internal', text: t('Home.page_customer.item5') },
- ...(getInfoAgentTransfer.value ? [{ value: 'agent', text: t('Home.page_ib.item9') }] : []),
- // ...(systemTransferType.value === 1 ? [{ value: 'system', text: t('Home.page_ib.item9') }] : []),
- ]);
- const currencyOptions = ref([{ value: 'USD', text: 'USD' }])
- // 转入账户列表
- const depositDisplayList = computed(() => {
- return toOptions.value.map(item => ({
- text: `${item.login} - ${groupTypeName(item.type)} - ${t('Custom.Deposit.AvailableBalance')}${groupCurrency(item.currency)}${item.balance}`,
- value: item.login,
- disable: isDepositDisabled(item)
- }))
- })
- // 转出账户是否禁用
- const isWithdrawDisabled = (item) => {
- const closeFunc = item.closeFunctions || []
- const transType = transferType.value // transferType 是 ref
- return (
- closeFunc.indexOf('5') !== -1 || // 包含'5'时禁用
- closeFunc.indexOf('6') !== -1 || // 包含'6'时禁用
- (transType === 'agent' && closeFunc.indexOf('3') !== -1) ||
- (transType === 'internal' && closeFunc.indexOf('7') !== -1) ||
- (transType === 'system' && closeFunc.indexOf('7') !== -1)
- )
- }
- // 转入账户是否禁用
- function isDepositDisabled(item) {
- const closeFunc = item.closeFunctions || []
- if (transferType.value === 'agent' && closeFunc.indexOf('3') !== -1) return true
- if (transferType.value === 'internal' && closeFunc.indexOf('7') !== -1) return true
- if (transferType.value === 'system' && closeFunc.indexOf('7') !== -1) return true
- return false
- }
- const loading = ref(false)
- const getDateList = async () => {
- loading.value = true
- let res = await customApi.CustomDropdown({ platform: '' })
- if (res.code == Code.StatusOK) {
- loginOptions.value = res.data
- nextTick(() => {
- handleRouteParams()
- })
- } else {
- uni.showToast({ title: res.msg, icon: 'none' })
- }
- loading.value = false
- }
- // 获取代理列表
- const getAgentList = async () => {
- let res = await financialApi.getAgentList({})
- if (res.code == Code.StatusOK) {
- toOptions.value = res.data
- } else {
- uni.showToast({ title: res.msg, icon: 'none' })
- }
- }
- //获取内转数额区间
- const getAmount = async () => {
- let res = await financialApi.transferInfo({})
- if (res.code == Code.StatusOK) {
- Object.assign(amountLimits, res.data)
- } else {
- uni.showToast({ title: res.msg, icon: 'none' })
- }
- }
- // 获取跨系统转账下拉列表
- const getTransferSystemDropdown = async () => {
- let res = await financialApi.transferSystemDropdown({})
- if (res.code == Code.StatusOK && res.data) {
- systemTransferType.value = res.data.transferType ?? 0
- console.log(systemTransferType.value, 'systemTransferType')
- accountList.value = res.data.accountList || []
- }
- }
- // 生命周期
- onLoad((options) => {
- pageQuery.value = options
- })
- // 更新转出账户选项
- function updateToOptions() {
- toOptions.value = []
- if (transferType.value === 'internal') {
- loginOptions.value.forEach(item => {
- if (form.withdrawLogin != null || item.login != form.withdrawLogin) {
- toOptions.value.push(item)
- }
- })
- } else if (transferType.value === 'agent') {
- getAgentList()
- } else if (transferType.value === 'system') {
- toOptions.value = accountList.value.filter(item => form.withdrawLogin != null || item.login != form.withdrawLogin)
- }
- }
- // 处理路由参数
- function handleRouteParams() {
- nextTick(() => {
- const loginNum = pageQuery.value.login ? Number(pageQuery.value.login) : null
- form.withdrawLogin = loginNum
- step2.value = loginNum ? true : false
- loginValue.value = loginNum
- })
- updateToOptions()
- }
- const showCentAccountTransferTip = (login) => {
- const selectedAccount = loginOptions.value.find(
- (item) => item.login == login,
- );
- if (!selectedAccount) {
- return;
- }
- const isCentAccount =
- selectedAccount.type == "8" || selectedAccount.currency === "USC";
- if (isCentAccount) {
- confirm({
- title: t("Msg.SystemPrompt"),
- content: t("vu.item14") + t("vu.item15") + t("vu.item16"),
- confirmText: t("Btn.Confirm"),
- cancelText: t("Btn.Cancel"),
- })
- }
- }
- onMounted(() => {
- getDateList()
- getAmount()
- getTransferSystemDropdown()
- })
- const resetForm = async () => {
- await nextTick();
- formRef.value?.clearValidate();
- form.customBankCode = ""
- form.depositLogin = null
- // form.withdrawLogin = null
- form.amount = ""
- amountErrorMessage.value = ""
- submitting.value = false;
- flag.value = false;
- // loginValue.value = null
- }
- // 侦听器
- watch(loginValue, (newVal) => {
- if (newVal != null) {
- step2.value = true
- form.withdrawLogin = Number(newVal)
- const found = loginOptions.value.find(opt => opt.login === Number(newVal))
- balance.value = found.balance
- form.depositLogin = null
- form.amount = ''
- amountErrorMessage.value = ''
- showCentAccountTransferTip(newVal)
- toOptions.value = []
- if (transferType.value === 'internal') {
- // 内部转账逻辑
- loginOptions.value.forEach((item) => {
- if (item.login != newVal) {
- toOptions.value.push(item)
- }
- })
- } else if (transferType.value === 'agent') {
- // 代理内转逻辑
- getAgentList()
- } else if (transferType.value === 'system') {
- // 跨系统内转,排除当前选择的转出账户
- toOptions.value = accountList.value.filter(
- (item) => item.login != form.withdrawLogin
- )
- }
- }
- })
- watch(transferType, (newVal) => {
- if (form.depositLogin) {
- form.depositLogin = null
- }
- if (loginValue.value && step2.value) {
- toOptions.value = []
- if (newVal === 'internal') {
- // 内部转账逻辑
- loginOptions.value.forEach((item) => {
- if (item.login != loginValue.value) {
- toOptions.value.push(item)
- }
- })
- } else if (newVal === 'agent') {
- // 代理内转逻辑
- getAgentList()
- } else if (newVal === 'system') {
- // 跨系统内转,排除当前选择的转出账户
- toOptions.value = accountList.value.filter(
- (item) => item.login != form.withdrawLogin
- )
- }
- }
- })
- </script>
- <style lang="scss" scoped>
- @import "@/uni.scss";
- .card-body{
- color: var(--bs-emphasis-color);
- }
- .amount-box {
- display: flex;
- align-items: center;
- gap: px2rpx(12);
- .amount-input {
- flex: 1;
- }
- .btn {
- margin-bottom: px2rpx(22);
- }
- }
- .transfer-page {
- width: 100%;
- padding-bottom: px2rpx(20);
- .main-content {
- text-align: left;
- .box {
- padding-top: px2rpx(5);
- color: #303133;
- .b-card {
- border: 1px solid var(--bs-border-color);
- background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
- margin-bottom: px2rpx(10);
- border-radius: px2rpx(6);
- box-shadow: 0 px2rpx(1) px2rpx(6) 0 rgba(0, 0, 0, 0.05);
- &:hover {
- box-shadow: 0 px2rpx(2) px2rpx(8) 0 rgba(0, 0, 0, 0.1);
- }
- .card-top {
- padding: px2rpx(15) px2rpx(20);
- .card-row {
- margin-bottom: px2rpx(30);
- &:last-child {
- margin-bottom: 0;
- }
- }
- .card-tit {
- margin-bottom: px2rpx(0) !important;
- }
- .tit {
- font-size: px2rpx(16);
- font-weight: 600;
- margin-bottom: px2rpx(16);
- display: flex;
- align-items: center;
- color: var(--bs-heading-color);
- position: relative;
- padding-left: 20px;
- &:after {
- content: '';
- position: absolute;
- left: 0;
- top: 50%;
- transform: translateY(-50%);
- width: 0;
- height: 0;
- border-top: 6px solid transparent;
- border-bottom: 6px solid transparent;
- border-left: 8px solid currentColor;
- }
- .iconfont {
- margin-right: px2rpx(8);
- color: var(--color-primary);
- font-size: px2rpx(18);
- }
- }
- .title-wrapper {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- }
- }
- }
- .box-step2 {
- .form-row {
- display: flex;
- flex-wrap: wrap;
- margin-bottom: px2rpx(12);
- gap: px2rpx(12);
- &:last-child {
- margin-bottom: 0;
- }
- .form-col {
- flex: 1;
- min-width: px2rpx(140);
- @media screen and (max-width: 991px) {
- flex: 0 0 100%;
- width: 100%;
- }
- }
- .form-col-full {
- width: 100%;
- padding: 0 px2rpx(5);
- }
- }
- .tips {
- line-height: 1.8;
- font-size: px2rpx(12);
- color: var(--bs-heading-color);
- background-color: rgba(var(--bs-body-bg-rgb), 1) !important;
- padding: px2rpx(12);
- border-radius: px2rpx(4);
- border-left: px2rpx(2) solid #cf1322;
- .title {
- font-weight: 600;
- margin-bottom: px2rpx(6);
- color: var(--bs-heading-color);
- }
- }
- }
- }
- .picker-select {
- background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
- border: 1px solid #dcdfe6;
- border-radius: px2rpx(4);
- padding: px2rpx(12) px2rpx(14);
- font-size: px2rpx(14);
- color: #606266;
- line-height: 1.4;
- width: 100%;
- box-sizing: border-box;
- &:hover {
- border-color: #409eff;
- }
- &.picker-disabled {
- background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
- color: #c0c4cc;
- cursor: not-allowed;
- }
- }
- .disabled-input {
- background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
- border: 1px solid #dcdfe6;
- border-radius: px2rpx(4);
- padding: px2rpx(12) px2rpx(14);
- font-size: px2rpx(14);
- color: #606266;
- width: 100%;
- box-sizing: border-box;
- }
- .m-input {
- background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
- border: 1px solid #dcdfe6;
- border-radius: px2rpx(4);
- padding: px2rpx(12) px2rpx(14);
- font-size: px2rpx(14);
- width: 100%;
- box-sizing: border-box;
- &:focus {
- border-color: #409eff;
- outline: none;
- box-shadow: 0 0 0 px2rpx(1) rgba(64, 158, 255, 0.2);
- }
- }
- .popup-content {
- padding: px2rpx(30) px2rpx(20);
- text-align: center;
- min-width: px2rpx(250);
- max-width: 80%;
- margin: 0 auto;
- @media screen and (max-width: 991px) {
- min-width: 80%;
- max-width: 90%;
- margin: 0 px2rpx(10);
- }
- position: relative;
- .icon {
- .iconfont {
- font-size: px2rpx(60);
- display: block;
- margin: 0 auto;
- }
- .icon-chenggong {
- color: #67c23a;
- }
- .icon-jingshi {
- color: #f56c6c;
- }
- .icon-dengdai {
- color: #e6a23c;
- }
- }
- .des1 {
- font-weight: 600;
- font-size: px2rpx(16);
- margin: px2rpx(20) 0 px2rpx(15);
- color: #303133;
- line-height: 1.4;
- padding: 0 px2rpx(10);
- }
- .dialog-footer {
- display: flex;
- justify-content: center;
- gap: px2rpx(10);
- margin-top: px2rpx(10);
- @media (max-width: 750rpx) {
- flex-direction: column;
- align-items: center;
- gap: px2rpx(6);
- }
- button {
- min-width: px2rpx(90);
- padding: 0 px2rpx(12);
- border-radius: px2rpx(4);
- font-size: px2rpx(14);
- transition: all 0.3s ease;
- cursor: pointer;
- &[type="primary"] {
- background-color: #409eff;
- color: var(--bs-emphasis-color);
- border: none;
- &:hover {
- background-color: #66b1ff;
- transform: translateY(px2rpx(-1));
- box-shadow: 0 px2rpx(2) px2rpx(6) 0 rgba(64, 158, 255, 0.3);
- }
- &:active {
- background-color: #3a8ee6;
- transform: translateY(0);
- }
- }
- &:not([type="primary"]) {
- background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
- border: 1px solid #dcdfe6;
- color: #606266;
- &:hover {
- border-color: #409eff;
- color: #409eff;
- transform: translateY(px2rpx(-1));
- }
- &:active {
- transform: translateY(0);
- }
- }
- }
- }
- }
- .wait-popup {
- .des1 {
- margin-top: px2rpx(10);
- }
- .icon {
- .iconfont {
- animation: spin 1s linear infinite;
- }
- }
- }
- }
- // 动画
- @keyframes popupFadeIn {
- from {
- opacity: 0;
- transform: scale(0.9);
- }
- to {
- opacity: 1;
- transform: scale(1);
- }
- }
- @keyframes fadeIn {
- from {
- opacity: 0;
- transform: translateY(px2rpx(10));
- }
- to {
- opacity: 1;
- transform: translateY(0);
- }
- }
- @keyframes pulse {
- 0% {
- transform: scale(1);
- }
- 50% {
- transform: scale(1.05);
- }
- 100% {
- transform: scale(1);
- }
- }
- @keyframes spin {
- from {
- transform: rotate(0deg);
- }
- to {
- transform: rotate(360deg);
- }
- }
- // 表单错误信息样式
- .uni-forms-item__error {
- font-size: px2rpx(12);
- color: #f56c6c;
- margin-top: px2rpx(4);
- }
- // 适配不同屏幕尺寸(媒体查询中的 750rpx 保持不变)
- @media (max-width: 750rpx) {
- .transfer-page {
- .main-content {
- padding: px2rpx(8);
- .box {
- .b-card {
- .card-top {
- padding: px2rpx(12) px2rpx(16);
- .tit {
- font-size: px2rpx(14);
- .iconfont {
- font-size: px2rpx(16);
- }
- }
- }
- }
- }
- }
- .s-btn {
- font-size: px2rpx(14);
- padding: px2rpx(10) px2rpx(16);
- }
- .popup-content {
- padding: px2rpx(20) px2rpx(16);
- .icon {
- .iconfont {
- font-size: px2rpx(50);
- }
- }
- .des1 {
- font-size: px2rpx(14);
- margin: px2rpx(15) 0 px2rpx(10);
- }
- .dialog-footer {
- button {
- min-width: px2rpx(80);
- font-size: px2rpx(13);
- }
- }
- }
- }
- }
- </style>
|