2024-03-21 17:52:58 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="merchant-details">
|
|
|
|
|
<view class="top">
|
|
|
|
|
<image class="img" src="../static/images/successTop.png" mode=""></image>
|
|
|
|
|
<view class="title">
|
|
|
|
|
恭喜,您的申请已通过!
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="msg" v-if="mer_id > 0 && resData.login_url">
|
|
|
|
|
<view class="url">
|
|
|
|
|
<text class="head">登录地址:</text>
|
|
|
|
|
<text class="content">{{resData.login_url}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="phone">
|
|
|
|
|
<view class="">
|
|
|
|
|
<text class="head">商户账号:</text>
|
|
|
|
|
<text class="content">{{resData.phone}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
<text class="cope" @click="copyTBL()">复制</text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="btn" v-if="mer_id > 0">
|
|
|
|
|
<view class="">
|
|
|
|
|
温馨提示:初始密码默认为手机号后六位,请初次登录后及时修改
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2024-03-21 18:05:36 +08:00
|
|
|
|
|
2024-03-21 17:52:58 +08:00
|
|
|
|
import {
|
|
|
|
|
getGoodsDetails
|
|
|
|
|
} from '@/api/store.js'
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
mer_id: 0,
|
|
|
|
|
resData: {}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad(e) {
|
|
|
|
|
this.mer_id = e.mer_id
|
|
|
|
|
if (this.mer_id > 0) {
|
|
|
|
|
this.getGoodsDetails(e.mer_i_id)
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
getGoodsDetails(id) {
|
|
|
|
|
getGoodsDetails(id).then(res => {
|
|
|
|
|
this.resData = res.data
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
copyTBL(url) {
|
|
|
|
|
let copeData = `登录地址:${this.resData.login_url} 商户账号:${this.resData.phone}`
|
|
|
|
|
// #ifdef MP || APP-PLUS
|
|
|
|
|
uni.setClipboardData({
|
|
|
|
|
data: copeData,
|
|
|
|
|
success: function() {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '复制成功',
|
|
|
|
|
duration: 1000
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
// #endif
|
|
|
|
|
// #ifdef H5
|
|
|
|
|
this.copyText(copeData)
|
|
|
|
|
// #endif
|
|
|
|
|
},
|
|
|
|
|
//H5复制方法
|
|
|
|
|
webCopy(e) {
|
|
|
|
|
let transfer = document.createElement('input');
|
|
|
|
|
document.body.appendChild(transfer);
|
|
|
|
|
transfer.value = e; // 这里表示想要复制的内容
|
|
|
|
|
transfer.focus();
|
|
|
|
|
transfer.select();
|
|
|
|
|
if (document.execCommand('copy')) {
|
|
|
|
|
document.execCommand('copy');
|
|
|
|
|
}
|
|
|
|
|
transfer.blur();
|
|
|
|
|
this.$util.Tips({
|
|
|
|
|
title: '复制成功'
|
|
|
|
|
});
|
|
|
|
|
transfer.style.display = 'none'
|
|
|
|
|
document.body.removeChild(transfer);
|
|
|
|
|
},
|
|
|
|
|
// 兼容版一键复制
|
|
|
|
|
copyText(text) {
|
|
|
|
|
// 需要转化成字符串
|
|
|
|
|
const textString = text.toString();
|
|
|
|
|
let input = document.querySelector('#copy-input');
|
|
|
|
|
if (!input) {
|
|
|
|
|
input = document.createElement('input');
|
|
|
|
|
input.id = "copy-input";
|
|
|
|
|
input.readOnly = "readOnly"; // 防止ios聚焦触发键盘事件
|
|
|
|
|
input.style.position = "absolute";
|
|
|
|
|
input.style.left = "-1000px";
|
|
|
|
|
input.style.zIndex = "-1000";
|
|
|
|
|
document.body.appendChild(input)
|
|
|
|
|
}
|
|
|
|
|
input.value = textString;
|
|
|
|
|
// ios必须先选中文字且不支持 input.select();
|
|
|
|
|
selectText(input, 0, textString.length);
|
|
|
|
|
if (document.execCommand('copy')) {
|
|
|
|
|
document.execCommand('copy');
|
|
|
|
|
this.$util.Tips({
|
|
|
|
|
title: '复制成功'
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
input.blur();
|
|
|
|
|
// input自带的select()方法在苹果端无法进行选择
|
|
|
|
|
// 选择文本。createTextRange(setSelectionRange)是input方法
|
|
|
|
|
function selectText(textbox, startIndex, stopIndex) {
|
|
|
|
|
if (textbox.createTextRange) { //ie
|
|
|
|
|
const range = textbox.createTextRange();
|
|
|
|
|
range.collapse(true);
|
|
|
|
|
range.moveStart('character', startIndex); //起始光标
|
|
|
|
|
range.moveEnd('character', stopIndex - startIndex); //结束光标
|
|
|
|
|
range.select(); //不兼容苹果
|
|
|
|
|
} else { //firefox/chrome
|
|
|
|
|
textbox.setSelectionRange(startIndex, stopIndex);
|
|
|
|
|
textbox.focus();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.merchant-details {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
position: relative;
|
|
|
|
|
.top {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
.img {
|
|
|
|
|
width: 340rpx;
|
|
|
|
|
height: 280rpx;
|
|
|
|
|
margin: 140rpx 0 30rpx 0;
|
|
|
|
|
}
|
|
|
|
|
.title {
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.msg {
|
|
|
|
|
width: 85%;
|
|
|
|
|
padding: 30rpx;
|
|
|
|
|
height: 150rpx;
|
|
|
|
|
margin: 70rpx 70rpx;
|
|
|
|
|
background-color: #F6F6F6;
|
|
|
|
|
border-radius: 8rpx;
|
|
|
|
|
.url {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
|
margin-bottom: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
.phone {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
.head {
|
|
|
|
|
color: #333333;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
.content {
|
|
|
|
|
color: #999999;
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
}
|
|
|
|
|
.cope {
|
|
|
|
|
padding: 5rpx 16rpx;
|
|
|
|
|
color: #FFFFFF;
|
|
|
|
|
border-radius: 30rpx;
|
|
|
|
|
background-color: #999999;
|
|
|
|
|
margin-left: 40rpx;
|
|
|
|
|
font-size: 20rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
.btn {
|
|
|
|
|
width: 70%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #999999;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
bottom: 80rpx
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|