yigePay.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <template>
  2. <view class="Body" >
  3. <view class="left">
  4. <image src="/static/staticPc/bg2.png" mode=""></image>
  5. </view>
  6. <view class="right">
  7. <image class="right_logo" src="/static/staticPc/logo1.png" mode=""></image>
  8. <view class="right_title">I宜昌统一支付管理平台</view>
  9. <view class="right_btn" @click="jump('https://hmpay.sandpay.com.cn/merchant/login')">商户登录</view>
  10. <view class="right_btn" @click="jump('https://yichang.sandpay.com.cn/agent/')">代理商登录</view>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default{
  16. data(){
  17. return{
  18. }
  19. },
  20. methods:{
  21. jump(url){
  22. window.open(url)
  23. }
  24. }
  25. }
  26. </script>
  27. <style lang="scss">
  28. .Body{
  29. background: url('@/static/staticPc/bg1.png');
  30. background-size: cover;
  31. width: 100%;
  32. height: 100vh;
  33. display: flex;
  34. justify-content: center;
  35. align-items: center;
  36. .left{
  37. font-size: 0;
  38. image{
  39. width: 836px;
  40. height: 788px;
  41. }
  42. }
  43. .right{
  44. width: 664px;
  45. height: 788px;
  46. background: #fff;
  47. text-align: center;
  48. padding-top: 100px;
  49. box-sizing: border-box;
  50. .right_logo{
  51. width: 257px;
  52. height: 54px;
  53. }
  54. .right_title{
  55. font-size: 48px;
  56. font-family: Microsoft YaHei, Microsoft YaHei-Bold;
  57. font-weight: 700;
  58. text-align: center;
  59. color: #3384ED;
  60. margin-top: 40px;
  61. margin-bottom: 120px;
  62. }
  63. .right_btn{
  64. width: 455px;
  65. height: 76px;
  66. background: #3081eb;
  67. border-radius: 10px;
  68. color: #ffffff;
  69. font-size: 30px;
  70. line-height: 76px;
  71. margin: 44px auto;
  72. cursor: pointer;
  73. }
  74. }
  75. }
  76. </style>