detail.vue 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <view>
  3. <view class="product_detail">
  4. <!-- <image :src="item.goodsImg" mode="widthFix" class="pic"></image> -->
  5. <image src="../../../static/news.jpg" mode="widthFix" class="pic"></image>
  6. <view class="box">
  7. <view class="title">{{item.goodsName}}</view>
  8. <!-- <view class="price">¥ 5000</view> -->
  9. <view class="clear"></view>
  10. <u-divider text="规格参数"></u-divider>
  11. <view class="item">
  12. <text class="desc">商品量:</text>
  13. <text>{{item.goodsQuantity}}</text>
  14. <view class="clear"></view>
  15. </view>
  16. <view class="item">
  17. <text class="desc">计量单位:</text>
  18. <text>{{item.goodsUnit}}</text>
  19. <view class="clear"></view>
  20. </view>
  21. <!-- 商户后续查,目前商户不对 -->
  22. <view class="item">
  23. <text class="desc">商户:</text>
  24. <text>{{item.createName}}</text>
  25. <view class="clear"></view>
  26. </view>
  27. <view class="item">
  28. <text class="desc">互市区:</text>
  29. <text>{{item.tradeAreaName}}</text>
  30. <view class="clear"></view>
  31. </view>
  32. <view class="item">
  33. <text class="desc">发布时间:</text>
  34. <text>{{item.createTime}}</text>
  35. <view class="clear"></view>
  36. </view>
  37. <!-- <u-divider text="商品介绍"></u-divider>
  38. <view class="contents">八角茴香是木兰科八角属的常绿乔木。树皮灰褐色或红褐色;叶互生或叶簇生于枝端;叶片革质,椭圆状倒卵</view> -->
  39. </view>
  40. </view>
  41. <view class="mfooter">
  42. <view class="flex">
  43. <view class="f">
  44. <button class="btn" v-if="user.userType !== 5" @click="pay()">立即接单</button>
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. </template>
  50. <script>
  51. export default {
  52. data() {
  53. return {
  54. user: this.getUser(),
  55. item: {}
  56. };
  57. },
  58. onLoad(e) {
  59. if (e.id) {
  60. this.http.request({
  61. url: '/level-two-server/app/TbGoodsDemand/getById?id=' + e.id,
  62. success: res => {
  63. this.item = res.data.data;
  64. }
  65. });
  66. }
  67. },
  68. methods: {
  69. pay() {
  70. uni.navigateTo({ url: '/pages/market/two/leader/confirm' });
  71. }
  72. }
  73. };
  74. </script>
  75. <style lang="scss">
  76. page {
  77. background-color: $pg;
  78. }
  79. </style>