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. import { queryRelevant } from "@/api/product.js"
  22. export default{
  23. name:'secondDeatail',
  24. props:{
  25. product:{
  26. type:Object,
  27. }
  28. },
  29. data() {
  30. return{
  31. }
  32. },
  33. }
  34. </script>
  35. <style>
  36. .Disclaimer{
  37. width: 702rpx;
  38. background: #F7F7F7;
  39. color:#333333 ;
  40. line-height: 48rpx;
  41. margin:20rpx auto;
  42. border-radius: 4rpx;
  43. }
  44. .Disclaimer h3{
  45. color: 28rpx;
  46. padding: 20rpx 15rpx 0rpx 15rpx
  47. }
  48. .Disclaimer ._p{
  49. font-size: 24rpx;
  50. color: #666666;
  51. padding: 10rpx 15rpx
  52. }
  53. .imgList{
  54. width: 702rpx;
  55. margin: auto;
  56. height: 710rpx;
  57. margin-bottom: 20rpx;
  58. }
  59. .imgList img{
  60. width: 100%;
  61. height: 100%;
  62. }
  63. .detailsText{
  64. padding: 0 0rpx 20rpx 22rpx;
  65. color: #333333;
  66. font-size: 24rpx;
  67. }
  68. </style>