oneMarket.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360
  1. <template>
  2. <view>
  3. <!-- <image src="../../static/images/top-bg.png"></image> -->
  4. <!-- <navigation-bar :title="title" background-color="#fff" front-color="#000000" :left-button="null" /> -->
  5. <uni-nav-bar color="#fff" height="60" left-icon="back" @clickLeft="back()" @clickRight="rightClick()"
  6. right-icon="list" :border="false" backgroundColor="#0081ff" title="一级市场" />
  7. </u-navbar>
  8. <u-list v-if="active==1" class="list" width="100%" @scrolltolower="scrolltolower">
  9. <u-list-item v-for="(item, index) in goods" :key="index">
  10. <view class="item-box">
  11. <view class="goods-item">
  12. <u-row>
  13. <u-col span="5" @click="toDetails(item.id)">
  14. <u--image :showLoading="true" src="" width="270rpx" height="220rpx"></u--image>
  15. </u-col>
  16. <u-col span="7">
  17. <view class="t1 txt" @click="toDetails(item.id)">
  18. <text>{{item.goodsName}}</text>
  19. <!-- <text>[老板力荐]鲜活小龙虾(帮剪头去虾线)约250g/份</text> -->
  20. </view>
  21. <view class="txt">
  22. <text v-if="item.grossWeight">{{item.grossWeight}}吨</text>
  23. </view>
  24. <view class="txt" v-if="item.tradeAreaName">
  25. <u-tag style="width: 250rpx" :text="item.tradeAreaName" plain size="mini"></u-tag>
  26. </view>
  27. <view class="t4">
  28. <view class="price">¥{{item.price}}</view>
  29. <view class="car" @click="addCar(item)">
  30. <u-icon color="#fff" name="shopping-cart-fill" size="30"></u-icon>
  31. </view>
  32. </view>
  33. </u-col>
  34. </u-row>
  35. </view>
  36. </view>
  37. </u-list-item>
  38. </u-list>
  39. <u-popup :show="show" mode="right" @close="close" @open="open">
  40. <view class="pop" style="padding: 15px;">
  41. <view class="item">
  42. <view class="title">生鲜海鲜</view>
  43. <view class="rows">
  44. <view class="row omit" v-for="(item, index) in typeList" :key="index">
  45. <view class="out">
  46. <view class="int" :style="{color:index==5?'#0081FF':'#213227'}">{{item.name}}</view>
  47. </view>
  48. </view>
  49. <view class="clear"></view>
  50. </view>
  51. </view>
  52. <view class="item">
  53. <view class="title">生鲜海鲜</view>
  54. <view class="rows">
  55. <view class="row omit" v-for="(item, index) in typeList" :key="index">
  56. <view class="out">
  57. <view class="int" :active="{active:true}">{{item.name}}</view>
  58. </view>
  59. </view>
  60. <view class="clear"></view>
  61. </view>
  62. </view>
  63. <!-- <view class="u-page__tag-item" style="display: flex; align-items: center;"
  64. v-for="(item, index) in typeList" :key="index">
  65. <u-tag class="tag" :text="item.name" :plain="!item.checked" :name="item.no" @click="checkboxClick">
  66. </u-tag>
  67. </view> -->
  68. <u-button class="custom-style" shape="circle" type="primary" size="small" text="确定"
  69. @click="close()"></u-button>
  70. </view>
  71. </u-popup>
  72. <view class="tab">
  73. <view class="tabBtn" @click="BtnClick(1)">
  74. <u-icon label="购物车" size="30" color="#ef732a" labelColor="#ef732a" name="shopping-cart"></u-icon>
  75. </view>
  76. <view class="tabBtn" @click="BtnClick(2)">
  77. <u-icon label="订单列表" size="30" color="#1E90FF" labelColor="#1E90FF" name="order"></u-icon>
  78. </view>
  79. </view>
  80. </view>
  81. </template>
  82. <script>
  83. export default {
  84. data() {
  85. return {
  86. loadmoreStatus: 'loadmore',
  87. goods: [],
  88. active: '',
  89. title: '一级市场',
  90. show: false,
  91. typeList: [],
  92. }
  93. },
  94. onLoad() {
  95. this.getGoodsList()
  96. },
  97. // onShow() {
  98. // var a = document.getElementsByClassName('uni-page-head-hd')[0]
  99. // a.style.display = 'none';
  100. // },
  101. methods: {
  102. getGoodsList() {
  103. this.http.request({
  104. url: '/level-one-server/TbGoodsTransit/getTransitList',
  105. success: res => {
  106. this.goods = res.data.data;
  107. this.goods.forEach((item, index) => {
  108. if (index === this.goods.length - 1) {
  109. this.loadmoreStatus = 'nomore'
  110. } else {
  111. this.loadmoreStatus = 'loadmore'
  112. }
  113. })
  114. }
  115. });
  116. },
  117. // 添加购物车
  118. addCar(goods) {
  119. let user = uni.getStorageSync("info")
  120. let params = {
  121. buyUserId: user.id,
  122. enterpriseId: goods.merchantId,
  123. shopId: goods.shopId,
  124. tradeAreaId: goods.tradeAreaId,
  125. saleGoodsInfoId: goods.id,
  126. goodsImg: goods.goodsImg,
  127. goodsName: goods.goodsName,
  128. // buyNum: parseInt(this.num)
  129. }
  130. console.log(goods)
  131. this.http.request({
  132. url: '/level-one-server/app/TbGoodsCart/addGoodsInShopCart',
  133. data: params,
  134. contentType: 'application/json; charset=utf-8',
  135. method: 'POST',
  136. success: res => {
  137. setTimeout(function() {
  138. uni.showToast({
  139. title: res.data.data.msg
  140. });
  141. }, 1000)
  142. }
  143. });
  144. },
  145. // 商品分类
  146. getGoodsType() {
  147. this.http.request({
  148. url: '/level-one-server/TbGoodsType/getList',
  149. success: res => {
  150. this.typeList = res.data.data
  151. console.log(this.typeList)
  152. }
  153. });
  154. },
  155. scrolltolower() {
  156. this.getGoodsList()
  157. },
  158. toDetails(id) {
  159. this.$common.to('/pages/goodsDetails/goodsDetails?id=' + id)
  160. },
  161. // change(index) {
  162. // console.log(index)
  163. // this.active = index
  164. // },
  165. // tabClick(id) {
  166. // this.active = id
  167. // if (id == 1) {
  168. // this.title = '一级市场'
  169. // } else if (id == 2) {
  170. // this.title = '购物车'
  171. // } else {
  172. // this.title = '订单列表'
  173. // }
  174. // },
  175. back() {
  176. uni.switchTab({
  177. url: '/pages/index/index'
  178. });
  179. },
  180. rightClick() {
  181. this.show = true
  182. this.getGoodsType()
  183. },
  184. open() {
  185. // console.log('open');
  186. },
  187. close() {
  188. this.show = false
  189. // console.log('close');
  190. },
  191. BtnClick(type) {
  192. type == 1 ? uni.navigateTo({
  193. url: '/pages/oneMarket/cart/cart'
  194. }) : uni.navigateTo({
  195. url: '/pages/oneMarket/order/order'
  196. })
  197. },
  198. checkboxClick(name) {
  199. this.typeList.map((item, index) => {
  200. if (item.no == name) item.checked = true
  201. })
  202. }
  203. }
  204. }
  205. </script>
  206. <style lang="scss">
  207. .item {
  208. .title {
  209. padding: 5px;
  210. }
  211. .rows {
  212. width: 100%;
  213. .row {
  214. width: 33.33%;
  215. float: left;
  216. text-align: center;
  217. .out {
  218. padding: 6px;
  219. overflow: hidden;
  220. .int {
  221. padding: 5px;
  222. color: #213227;
  223. background-color: #eaf1fe;
  224. border-radius: 3px;
  225. font-size: 14px;
  226. overflow: hidden;
  227. &.active {
  228. color: $main-color;
  229. }
  230. }
  231. }
  232. }
  233. }
  234. }
  235. page {
  236. background-image: url(../../static/images/top-bg.png);
  237. background-size: 100% 400rpx;
  238. background-repeat: no-repeat;
  239. background-position: top;
  240. background-color: #f3f4f6;
  241. }
  242. .list {
  243. height: auto;
  244. border-radius: 10rpx;
  245. margin: 15rpx;
  246. }
  247. .goods-item {
  248. margin-bottom: 8rpx;
  249. }
  250. .item-box {
  251. height: 230rpx;
  252. width: 90%;
  253. padding: 20rpx;
  254. background-color: #fff;
  255. border: 1rpx #FFF solid;
  256. margin: 10rpx 0rpx;
  257. border-radius: 10rpx;
  258. }
  259. .txt {
  260. /* height: 50rpx; */
  261. margin-bottom: 20rpx;
  262. }
  263. .t1 {
  264. font-size: 32rpx;
  265. font-weight: bold;
  266. word-wrap: break-word;
  267. position: relative;
  268. top: 1rpx;
  269. right: 5rpx;
  270. }
  271. .t4 {
  272. display: flex;
  273. position: relative;
  274. bottom: 1rpx;
  275. right: 5rpx;
  276. }
  277. .price {
  278. color: #ef732a;
  279. width: 400rpx;
  280. font-weight: bold;
  281. }
  282. .car {
  283. background-color: #0081ff;
  284. width: 60rpx;
  285. height: 60rpx;
  286. border-radius: 30rpx;
  287. text-align: center;
  288. display: flex;
  289. align-items: center;
  290. justify-content: center;
  291. }
  292. .tab {
  293. position: fixed;
  294. bottom: 1rpx;
  295. width: 100%;
  296. height: 100rpx;
  297. display: flex;
  298. align-items: center;
  299. justify-content: center;
  300. border-top: #ffffff 1rpx solid;
  301. background-color: #ffffff;
  302. }
  303. .tabBtn {
  304. width: 35%;
  305. height: 100%;
  306. display: flex;
  307. align-items: center;
  308. justify-content: center;
  309. margin: 0 30rpx;
  310. }
  311. .pop {
  312. width: 400rpx;
  313. margin-top: 200rpx;
  314. }
  315. .custom-style {
  316. width: 300rpx;
  317. }
  318. .tag {
  319. margin-bottom: 30rpx;
  320. display: flex;
  321. align-items: center;
  322. /* width: 300rpx;
  323. height: 50rpx;
  324. background-color: #f3f4f6;
  325. border-radius: 10rpx;
  326. text-align: center; */
  327. }
  328. /* .active-btn {
  329. width: 35%;
  330. height: 100%;
  331. display: flex;
  332. align-items: center;
  333. justify-content: center;
  334. color: #fff;
  335. background-color: #00BFFF;
  336. } */
  337. </style>