123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- <template>
- <view class="box">
- <view class="title">
- 请使用手机网银将货款转入下方的公司账户,转的时候一定要在“备注”或者“附言”里输入【<text>货款</text>】两个字。
- </view>
- <view class="item">
- <view class="flex">
- <view class="item_title">
- 【账户名称】:大卫博士(浙江)贸易有限公司
- </view>
- <view class="item_btn" @click="copyG('大卫博士(浙江)贸易有限公司')">复制</view>
- </view>
- <text>
- (注意:直接点击“复制”公司账户名称,转账时直接粘贴,无需手动输入)
- </text>
- </view>
- <view class="item">
- <view class="flex">
- <view class="item_title">
- 【银行账号】:366279292191
- </view>
- <view class="item_btn" @click="copyG('366279292191')">复制</view>
- </view>
- <text>
- (注意:直接点击“复制”银行账号,转账时直接粘贴,无需手动输入)
- </text>
- </view>
- <view class="item">
- <view class="item_title">
- 【开户银行】:中国银行(浙江自贸区义乌支行)
- </view><br>
- <text>
- (注意:如果转账时若系统不要求选择具体的支行,直接选择“中国银行”就行)
- </text>
- </view>
- <view class="bottom">
- 提示:为了以后转款方便,建议代理公司去银行开通个人手机网银,以后可以随时随地在手机网银里转账,再也不用跑去银行了。
- </view>
- </view>
- </template>
- <script>
- import {
- handleClipboard
- } from '../../utils.js';
- export default {
- data() {
- return {
-
- }
- },
- methods: {
- copyG(data) {
- console.log(data)
- handleClipboard(
- data,
- event,
- () => {
- uni.showToast({
- icon: 'none',
- title: '复制成功'
- });
- },
- () => {
- uni.showToast({
- icon: 'none',
- title: '复制失败'
- });
- }
- );
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .box {
- padding: 60rpx 20rpx 0 20rpx;
- .title {
- font-weight: bold;
- margin-bottom: 30rpx;
- line-height: 38rpx;
- text {
- color: #FF0000;
- }
- }
- .item {
- margin-bottom: 30rpx;
- .flex {
- display: flex;
- align-items: center;
- margin-bottom: 10rpx;
- }
- &_btn {
- height: 30rpx;
- line-height: 30rpx;
- text-align: center;
- background-color: #409EFF;
- padding: 10rpx 20rpx;
- border-radius: 8rpx;
- color: #fff;
- font-size: 24rpx;
- }
- &_title {
- background-color: #FFFF00;
- line-height: 30rpx !important;
- font-weight: bold;
- padding: 10rpx 10rpx 10rpx 0;
- display: inline-block;
- margin-right: 20rpx;
-
- }
- text {
- font-size: 22rpx;
- }
- }
- .bottom {
- margin-top: 50rpx;
- font-size: 24rpx;
- color: #3983C6;
- }
- }
- </style>
|