index.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <page title="玩法规则">
  3. <view class="flex-column-align-center paddingT12">
  4. <image :src="ossurl.common.playRule" style="width: 100%" mode="widthFix" />
  5. </view>
  6. <view class="flex-column-align-center paddingY15" v-if="rule">
  7. <image
  8. :src="rule.title.img"
  9. :style="{ width: `${rule.title.width}rpx`, height: '44rpx' }"
  10. />
  11. </view>
  12. <view class="wrapper">
  13. <!-- <view class="" v-if="rule && rule.setpTitle">
  14. <view class="flex-column-align-center">
  15. <image
  16. :src="rule.setpTitle"
  17. :style="{
  18. width: '100%',
  19. height: '132rpx'
  20. }"
  21. />
  22. </view>
  23. </view> -->
  24. <view v-if="rule" style="font-size: 0;">
  25. <image
  26. v-for="(item, index) in rule.data"
  27. :key="index"
  28. webp
  29. :src="item"
  30. :style="{ width: '100%' }"
  31. mode="widthFix"
  32. />
  33. </view>
  34. </view>
  35. </page>
  36. </template>
  37. <script>
  38. import resource from '@/utils/resource'
  39. import ossurl from '@/utils/ossurl'
  40. const RULE = {
  41. 1: {
  42. title: { img: ossurl.box.rule.ruleTitle, width: 194 },
  43. setpTitle: ossurl.box.rule.ruleTip,
  44. data: [
  45. ossurl.box.rule.step_1,
  46. ossurl.box.rule.step_2,
  47. ossurl.box.rule.step_3,
  48. ossurl.box.rule.step_4,
  49. ossurl.box.rule.step_5,
  50. ossurl.box.rule.step_6,
  51. // ossurl.box.rule.step_7,
  52. // ossurl.box.rule.step_8
  53. ]
  54. },
  55. 2: {
  56. title: { img: ossurl.box.rule.ruleTitle, width: 194 },
  57. data: [
  58. ossurl.box.rule.step_2_1,
  59. ossurl.box.rule.step_2_2,
  60. ossurl.box.rule.step_2_3,
  61. ossurl.box.rule.step_2_4,
  62. ossurl.box.rule.step_2_5,
  63. ossurl.box.rule.step_2_6,
  64. // ossurl.box.rule.step_2_7
  65. ]
  66. }
  67. }
  68. export default {
  69. data() {
  70. return {
  71. resource,
  72. rule: null,
  73. ossurl
  74. }
  75. },
  76. onLoad(options) {
  77. this.rule = RULE[options.type - 0]
  78. },
  79. computed: {
  80. screenWidth() {
  81. return this.$store.state.systemInfo.screenWidth
  82. },
  83. image1Style() {
  84. let width = this.$store.state.systemInfo.screenWidth - 28
  85. return {
  86. width: width + 'px',
  87. height: parseInt((width * 306) / 347) + 'px'
  88. }
  89. }
  90. }
  91. }
  92. </script>
  93. <style>
  94. page {
  95. background: #fff;
  96. }
  97. </style>
  98. <style lang="scss" scoped>
  99. .context {
  100. padding: 20rpx 0;
  101. border-radius: 20rpx;
  102. margin: 0 14px 30rpx;
  103. background: #e2e6e7;
  104. }
  105. .context2 {
  106. border-radius: 20rpx;
  107. margin: 0 14px 30rpx;
  108. background: #e2e6e7;
  109. }
  110. </style>