supplierdetail.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. <template>
  2. <view class="pages">
  3. <view class="supplierdetail">
  4. <view class="full-img-wrap">
  5. <image class="full-img" v-if="firstcompanyimg" :src="firstcompanyimg|miniImg(50)+'/thumbnail/750x'" mode="widthFix"></image>
  6. </view>
  7. <view class="base-info">
  8. <view class="base-info-til">{{companyinfo.compName}}</view>
  9. <view class="base-info-item">
  10. <text class="item">供应商资质:{{companyinfo.compQual}}</text>
  11. <text class="item">经营产品:{{companyinfo.compManageProduct}}</text>
  12. </view>
  13. </view>
  14. <!-- base-info end -->
  15. <view class="shop write-radius wrap" v-if="shops.length>0">
  16. <view class="block-til">
  17. <view class="block-til-left">店铺</view>
  18. </view>
  19. <view class="shop-link">
  20. <view v-for="(item,index) in shops" :key="index" class="shop-link-item" @click="shopclick(item.shopUrl)">
  21. <view class="shop-img">
  22. <image :src="item.shopImg|timestamp" mode=""></image>
  23. </view>
  24. <view class="shop-name" v-if="item.shopType == 'taobao'">天猫商城</view>
  25. <view class="shop-name" v-else-if="item.shopType == 'jd'">京东商城</view>
  26. <view class="shop-name" v-else>自营商城</view>
  27. </view>
  28. </view>
  29. </view>
  30. <!-- shop end -->
  31. <view class="write-radius supplier wrap">
  32. <view class="block-til">
  33. <view class="block-til-left">供应商</view>
  34. <view class="block-til-right" v-if="companyinfo.isCert==1">
  35. <view class="safe-icon">
  36. <image class="safe-icon-img" src="/static/img/icon-safe.png" mode=""></image>
  37. </view>
  38. 商家已缴纳诚信保证金
  39. </view>
  40. </view>
  41. <view class="supplier-info">
  42. <view class="supplier-info-til">{{companyinfo.compName}}</view>
  43. <view class="supplier-info-item">
  44. <text class="text">联系人:{{companyinfo.compConPerson}}</text>
  45. <text class="text">联系电话:{{companyinfo.compConNum}}</text>
  46. </view>
  47. <view class="supplier-info-item">
  48. 地址:{{companyinfo.detailAddress}}
  49. </view>
  50. <view class="supplier-info-item">
  51. 社会信用代码:{{companyinfo.compSocialCode}}
  52. </view>
  53. <view class="supplier-info-item">
  54. 生产许可证号:{{companyinfo.compManageLicenseNum}}
  55. </view>
  56. <view class="supplier-info-item compSum">
  57. 简介:<rich-text :nodes="companyinfo.compSum"></rich-text>
  58. <!-- 简介:{{companyinfo.compSum}} -->
  59. </view>
  60. <view class="supplier-info-certificate">
  61. <image v-for="(img,index) in companyimg" :key="index" :src="img.fileUrl|miniImg(50)+'/thumbnail/750x'" mode="widthFix"></image>
  62. <!-- <image class="image" src="../../../static/img/banner-supplierdetail.png" mode="widthFix"></image>
  63. <image class="image" src="../../../static/img/banner-supplierdetail.png" mode="widthFix"></image> -->
  64. </view>
  65. </view>
  66. </view>
  67. <!-- 供应商 end -->
  68. <view class="write-radius placeoforigin wrap" v-if="origines.length > 0">
  69. <view class="block-til">
  70. <view class="block-til-left">生产地</view>
  71. </view>
  72. <scroll-view scroll-x="true" class="scroll-X placeoforigin-scroll-view">
  73. <view class="placeoforigin-wrap" :style="origines.length==1?{width:'auto',display:'block'}:''" v-for="(item,index) in origines" :key="index">
  74. <view class="placeoforigin-banner">
  75. <image class="placeoforigin-banner-img" :src="item.imgUrl||'/static/img/placeoforigin-banner.png'|miniImg(50)" mode="widthFix"></image>
  76. </view>
  77. <view class="placeoforigin-text">
  78. <view class="placeoforigin-text-til">{{item.originName}}</view>
  79. <view class="placeoforigin-text-item">
  80. <text class="text">面积:{{item.originArea}}</text>
  81. <text class="text">人员数:{{item.peopleNum}}人</text>
  82. </view>
  83. <view class="placeoforigin-text-item">
  84. 地址:{{item.detailAddress}}
  85. </view>
  86. </view>
  87. </view>
  88. </scroll-view>
  89. </view>
  90. <!-- 生产地 end -->
  91. <view class="results write-radius" v-if="products.length > 0">
  92. <view v-for="(item,index) in products" :key="index" @click="productdetails(item.id)" class="results-item">
  93. <view class="results-item-img-wrap"><image :src="item.pic|miniImg(50)" mode="aspectFit" class="results-item-img"></image></view>
  94. <view class="results-item-info">
  95. <view class="results-item-info-til">{{item.name}}</view>
  96. <view class="results-item-info-brand">{{item.brandName}}</view>
  97. <!-- <view class="results-item-info-addr">{{item.placeOfProduction}}</view> -->
  98. <view class="results-item-info-label">
  99. <text v-if="item.postage" class="postage">包邮</text>
  100. </view>
  101. <view class="results-item-info-company">{{item.umsCompanyInfo}}</view>
  102. <view class="results-item-info-price">
  103. <text class="rmb" v-if="item.price">¥</text>
  104. <text class="price" :class="!item.price?'noprice':''">{{item.price||"暂无价格"}}</text>
  105. <text class="unit" v-if="item.price&&item.unit">/{{item.unit}}</text>
  106. <!-- <text class="minsell">4000斤起售</text> -->
  107. </view>
  108. </view>
  109. </view>
  110. </view>
  111. </view>
  112. </view>
  113. </template>
  114. <script>
  115. export default {
  116. data() {
  117. return {
  118. params:{
  119. token:'',
  120. },
  121. companyinfo:[],
  122. shops:[],
  123. companyimg:[],
  124. firstcompanyimg:'',
  125. origines:[],
  126. products:[],
  127. }
  128. },
  129. onShow() {
  130. let serf = this;
  131. //检查登录,获取token
  132. // let loginRes = this.checkLogin('/pages/index/index', '2');
  133. // if(!loginRes){return false;}
  134. // serf.params.token=loginRes[0];
  135. },
  136. onLoad(option) {
  137. let self = this;
  138. //检查登录,获取token
  139. // let loginRes = this.checkLogin('/pages/index/index', '2');
  140. // if(!loginRes){return false;}
  141. // serf.params.token=loginRes[0];
  142. uni.getStorage({
  143. key:'token',
  144. success: function (res) {
  145. self.params.token = res.data;
  146. // console.log(res.data);
  147. }
  148. });
  149. uni.getStorage({
  150. key:'tokenhead',
  151. success: function (res) {
  152. self.params.tokenhead = res.data;
  153. // console.log(res.data);
  154. }
  155. });
  156. let thetoken = this.params.tokenhead+this.params.token;
  157. uni.showLoading({
  158. title: '请稍等'
  159. });
  160. this.$api.http.get(this.config.apiBaseurl+'/company/cp/detail',{header: {Authorization:thetoken},params:{compId:option.id}}).then(res =>{
  161. uni.hideLoading();
  162. this.companyinfo = res.data.data;
  163. this.companyimg = res.data.data.files;
  164. this.shops = res.data.data.shops;
  165. // console.log('this.companyimg',this.companyimg);
  166. this.products = res.data.data.products;
  167. this.origines = res.data.data.origines;
  168. console.log('res',JSON.parse(JSON.stringify(res)));
  169. this.firstcompanyimg = this.companyimg[0].fileUrl||'';
  170. // console.log('this.companyinfo',JSON.parse(JSON.stringify(this.companyinfo)));
  171. });
  172. // console.log(option);
  173. },
  174. methods: {
  175. //跳转详情
  176. productdetails(id){
  177. uni.navigateTo({
  178. url:`/pages/product/product?id=${id}`
  179. })
  180. },
  181. // shopclick
  182. shopclick(url){
  183. window.location.assign(url);
  184. }
  185. }
  186. }
  187. </script>
  188. <style scoped>
  189. @import url("./supplierdetail.css");
  190. page{background-color: #FBFBFC;}
  191. </style>