words.vue 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <template>
  2. <view class="words">
  3. <u-toast ref="uToast" />
  4. <view class="ul">
  5. <image @click="index = i" :class="i==index?'active':''" :src="item" mode="" v-for="(item,i) in pic" :key="i"></image>
  6. </view>
  7. <view class="con" v-html="strArr[index]">
  8. 111
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default {
  14. data() {
  15. return {
  16. index:0,
  17. patient:{},
  18. pic:[],
  19. strArr:[]
  20. }
  21. },
  22. onLoad(option) {
  23. if(uni.getStorageSync('patient')){
  24. this.patient = JSON.parse(uni.getStorageSync('patient'))
  25. if(this.patient.pic != ''){
  26. this.pic = this.patient.pic.split(',')
  27. }
  28. if(this.patient.picWordRecognition != '' && this.patient.picWordRecognition != null){
  29. this.strArr = this.patient.picWordRecognition.split(',')
  30. }
  31. }
  32. },
  33. methods: {
  34. }
  35. }
  36. </script>
  37. <style lang="scss">
  38. .words{
  39. height: 100%;
  40. .ul{
  41. display: flex;
  42. // flex-direction: row;
  43. // align-items: center;
  44. overflow: hidden;
  45. overflow-x: auto;
  46. margin-left: 32rpx;
  47. image{
  48. flex-grow: 0;
  49. flex-shrink: 0;
  50. width: 160rpx;
  51. height: 160rpx;
  52. border-radius: 24rpx;
  53. border: 2rpx solid #fff;
  54. margin-right: 24rpx;
  55. }
  56. .active{
  57. border: 2rpx solid #167FFF;
  58. }
  59. }
  60. .con{
  61. width:680rpx;
  62. margin: 24rpx auto;
  63. padding:32rpx;
  64. background-color: #fff;
  65. border-radius: 24rpx;
  66. }
  67. }
  68. </style>