whereabouts.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <view>
  3. <!--标题栏-->
  4. <bar-title bgColor="bg-white" isBack>
  5. <block slot="content">平台交易打款提示</block>
  6. <block slot="right">
  7. <text class="text-orange">联系客服</text>
  8. </block>
  9. </bar-title>
  10. <!--内容区域,此处只做模板演示,不做富文本解析功能。可自行更换为富文本解析。-->
  11. <view class="content-view-box">
  12. <view class="font-view">
  13. <text class="text-green cuIcon-title"></text>
  14. <text>平台为卖家打款成功后,卖家会收到来自</text>
  15. <text class="text-green">微信支付</text>
  16. <text>的消息</text>
  17. </view>
  18. <view class="font-view">
  19. <image src="/static/images/home/goods/13.png" mode="widthFix"/>
  20. </view>
  21. <view class="font-view">
  22. <text class="text-green cuIcon-title"></text>
  23. <text>在微信支付的消息中找到</text>
  24. <text class="text-green">零钱入账</text>
  25. </view>
  26. <view class="font-view">
  27. <image src="/static/images/home/goods/10.png" mode="widthFix"/>
  28. </view>
  29. </view>
  30. <view class="zaiui-hight-view"/>
  31. </view>
  32. </template>
  33. <script>
  34. import barTitle from '@/components/zaiui-common/basics/bar-title';
  35. import _tool from '@/static/zaiui/util/tools.js'; //工具函数
  36. export default {
  37. components: {
  38. barTitle
  39. },
  40. data() {
  41. return {
  42. }
  43. },
  44. onLoad() {
  45. },
  46. onReady() {
  47. _tool.setBarColor(true);
  48. uni.pageScrollTo({
  49. scrollTop: 0,
  50. duration: 0
  51. });
  52. },
  53. methods: {
  54. }
  55. }
  56. </script>
  57. <style lang="scss">
  58. /* #ifdef APP-PLUS */
  59. @import "../../static/colorui/main.css";
  60. @import "../../static/colorui/icon.css";
  61. @import "../../static/zaiui/style/app.scss";
  62. /* #endif */
  63. page {
  64. background: #FFFFFF;
  65. }
  66. .content-view-box {
  67. position: relative;
  68. .font-view {
  69. padding: 18.18upx;
  70. line-height: 1.7;
  71. }
  72. image {
  73. padding-left: 27.27upx;
  74. width: 100%;
  75. }
  76. }
  77. .zaiui-hight-view {
  78. width: 100%;
  79. height: 36.36upx;
  80. }
  81. </style>