reward.vue 917 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <template>
  2. <view>
  3. <!--标题栏-->
  4. <bar-title bgColor="bg-red">
  5. <block slot="content">打赏</block>
  6. </bar-title>
  7. <view class="padding bg-white">
  8. <image src="/static/images/reward/zfb.png" mode="widthFix"/>
  9. <image src="/static/images/reward/wx.png" mode="widthFix"/>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. import barTitle from '@/components/zaiui-common/basics/bar-title';
  15. import _tool from '@/static/zaiui/util/tools.js'; //工具函数
  16. export default {
  17. components: {
  18. barTitle,
  19. },
  20. data() {
  21. return {
  22. }
  23. },
  24. onReady() {
  25. _tool.setBarColor(false);
  26. uni.pageScrollTo({
  27. scrollTop: 0,
  28. duration: 0
  29. });
  30. },
  31. }
  32. </script>
  33. <style lang="scss">
  34. /* #ifdef APP-PLUS */
  35. @import "../../static/colorui/main.css";
  36. @import "../../static/colorui/icon.css";
  37. @import "../../static/zaiui/style/app.scss";
  38. /* #endif */
  39. image {
  40. width: 100%;
  41. }
  42. </style>