You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
568 B
26 lines
568 B
<template> |
|
<view class="per-mask"> |
|
<view class="mask"></view> |
|
<view class="texts"> |
|
<view class="text">权限审核中,可联系下方平台运营加快审核进度</view> |
|
<image class="qrcode" :src="src" mode="widthFix"></image> |
|
</view> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
data() { |
|
return { |
|
src: uni.getSystemInfoSync().uniPlatform === 'mp-toutiao' ? 'https://occupationlab.com/images/dyQrcode.jpg' : 'https://occupationlab.com/images/customer.png' |
|
} |
|
}, |
|
methods: { |
|
|
|
} |
|
} |
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
|
|
</style>
|
|
|