bookReadMe.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <template>
  2. <view class="app-content">
  3. <view class="list">
  4. <view>
  5. <image mode="widthFix" :src="`${constant.imgUrl}/ghs/a_hr_before.jpg?v=3`" style="widht:100%;"></image>
  6. </view>
  7. <view>
  8. <image class="image" :src="`${constant.imgUrl}/ghs/b_hr_after1.jpg?v=3`" mode="widthFix"></image>
  9. <image class="image" :src="`${constant.imgUrl}/ghs/b_hr_after2.jpg?v=3`" mode="widthFix"></image>
  10. </view>
  11. </view>
  12. <view style="text-align:center;margin-top:40upx;">
  13. <button class="admin-button-com big default go-back" style="width:260upx;" @click="goBack()">返回</button>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. name: "book-what",
  20. components: {
  21. },
  22. mixins: [],
  23. data() {
  24. return {
  25. shopId:0
  26. };
  27. },
  28. onLoad(){
  29. this.shopId = this.option.shopId
  30. },
  31. methods: {
  32. init(){
  33. },
  34. goBack(){
  35. uni.navigateBack()
  36. },
  37. toPhone(phone){
  38. uni.makePhoneCall({ phoneNumber: phone })
  39. }
  40. }
  41. };
  42. </script>
  43. <style lang="scss" scoped>
  44. .app-content{
  45. padding:20upx 20upx 60upx 20upx;
  46. background-color: white;
  47. .title{
  48. font-weight: bold;
  49. font-size:36upx;
  50. margin-bottom:22upx;
  51. }
  52. .smallTitle{
  53. font-weight: bold;
  54. font-size:30upx;
  55. font-weight: bold;
  56. margin:25upx 0 25upx 0;
  57. }
  58. .info{
  59. font-size:32upx;
  60. margin-bottom:20upx;
  61. }
  62. .image{
  63. width:100%;
  64. margin-bottom:20upx;
  65. }
  66. .video{
  67. margin:0 auto;
  68. text-align: center;
  69. margin-bottom:10upx;
  70. }
  71. .book-button{
  72. margin-bottom:15upx;
  73. }
  74. .go-back{
  75. margin:0 auto;
  76. }
  77. }
  78. </style>