secondDeatail.vue 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <template name="secondDeatail">
  2. <view class="secondDeatail clearfix">
  3. <view class="Disclaimer">
  4. <h3>免责声明:</h3>
  5. <p>
  6. 鉴于本网站提供的二手版块信息包括但不限于公司名称,商品的简介、性能、描述与说明,相关图片、视频等均由卖家自行提供,由卖家对其提供的信息承担相应法律责任。买家应自行甄别商品信息并查验商品性状。本网站对二手版块中买卖双方的交易不提供任何形式的担保与保证,特此声明!
  7. </p>
  8. </view>
  9. <view class="contentHtml">
  10. <view class="detailsText" v-if="product.productDetails!=''||product.productDetails!=null" >{{product.productDetails}}</view>
  11. <view class="imgList" v-for="(item, index) in product.imageList" :key="index" :data-src="item">
  12. <img :src="item"/>
  13. </view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. import authorize from '@/common/config/authorize.js'
  19. import tuiLoadmore from "@/components/tui-components/loadmore/loadmore"
  20. import tuiNomore from "@/components/tui-components/nomore/nomore"
  21. export default{
  22. name:'secondDeatail',
  23. props:{
  24. product:{
  25. type:Object,
  26. }
  27. },
  28. data() {
  29. return{
  30. }
  31. },
  32. }
  33. </script>
  34. <style>
  35. .Disclaimer{
  36. width: 702rpx;
  37. background: #F7F7F7;
  38. color:#333333 ;
  39. line-height: 48rpx;
  40. margin:20rpx auto;
  41. border-radius: 4rpx;
  42. }
  43. .Disclaimer h3{
  44. color: 28rpx;
  45. padding: 20rpx 15rpx 0rpx 15rpx
  46. }
  47. .Disclaimer ._p{
  48. font-size: 24rpx;
  49. color: #666666;
  50. padding: 10rpx 15rpx;
  51. }
  52. .imgList{
  53. width: 702rpx;
  54. margin: auto;
  55. height: 710rpx;
  56. margin-bottom: 20rpx;
  57. }
  58. .imgList img{
  59. width: 100%;
  60. height: 100%;
  61. }
  62. .detailsText{
  63. padding: 0 30rpx 30rpx 30rpx;
  64. color: #333333;
  65. font-size: 24rpx;
  66. text-align: left;
  67. }
  68. </style>