purchase.vue 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. <template>
  2. <view class="content">
  3. <u-navbar title=" " @leftClick="leftClick" :placeholder="true" :autoBack="true">
  4. <view slot="center" class="hflex nav">
  5. <view class="nav_item" :class="nav_index == 1 ? 'nav_active' : ''" @click="changeNav(nav_index)">采购订单</view>
  6. <view class="nav_item" :class="nav_index == 2 ? 'nav_active' : ''" @click="changeNav(nav_index)">接单需求</view>
  7. </view>
  8. </u-navbar>
  9. <view class="" v-if="nav_index == 1">
  10. <view class="tabs">
  11. <u-tabs :list="tabs" :scrollable="false" :activeStyle="{color: '#506DFF'}" lineColor="#506DFF" @click="changeTabs"></u-tabs>
  12. </view>
  13. <view class="box1">
  14. <view class="box1_top hflex acenter">
  15. <view class="top_item" :class="sort_index == 1 ? 'top_active' : ''" @click="changeSort(sort_index)">按照距离</view>
  16. <view class="top_item" :class="sort_index == 2 ? 'top_active' : ''" @click="changeSort(sort_index)">价格高低</view>
  17. </view>
  18. <block v-for="(item,index) in pageList" :key="index">
  19. <view class="order_box">
  20. <view class="order_top hflex acenter">
  21. <image src="/static/images/comment/order_type1.png" v-if="item.tab == 1" class="order_img"></image>
  22. <image src="/static/images/comment/order_type2.png" v-if="item.tab == 2" class="order_img"></image>
  23. <image src="/static/images/comment/order_type3.png" v-if="item.tab == 3" class="order_img"></image>
  24. <image src="/static/images/comment/order_type4.png" v-if="item.tab == 4" class="order_img"></image>
  25. <view class="order_title">{{item.real_name}}</view>
  26. </view>
  27. <view class="">
  28. <block v-for="(item2,inx) in item.items" :key="inx">
  29. <view class="order_item">
  30. <view class="item_name">{{item2.name}}</view>
  31. <view class="hflex acenter " v-if="item.tab !== 4">
  32. <view class="text_style1 padR-20" >规格:{{item2.spec}}</view>
  33. <view class="text_style1">数量:{{item2.number}}桶 </view>
  34. </view>
  35. <view class="hflex acenter " v-else>
  36. <view class="text_style1 padR-20" >数量/吨位:{{item2.weight}}吨</view>
  37. </view>
  38. </view>
  39. </block>
  40. </view>
  41. <view class="hflex acenter jbetween order_bottom">
  42. <view class="text_style1">发布于{{item.create_time}}</view>
  43. <view class="more" @click="toDetail(item.id)">查看更多 》</view>
  44. </view>
  45. </view>
  46. </block>
  47. </view>
  48. </view>
  49. <view class="box2" v-if="nav_index == 2">
  50. <view class="search">
  51. <u-input v-model="serach_value" type="text" border="none" placeholder="大家都在搜" shape="circle"
  52. prefixIcon="search" prefixIconStyle="font-size: 22px;color: #909399">
  53. </u-input>
  54. </view>
  55. <block v-for="(item,index) in pageList2" :key="index">
  56. <view class="box hflex" @click="toDetail2(item.id)">
  57. <image :src="item.avatar" mode="aspectFill" class="item_avatar"></image>
  58. <view class="vflex" style="margin-left: 20rpx;">
  59. <view class="item_name">{{item.name}}</view>
  60. <view class="hflex acenter cell">
  61. <u-icon name="phone-fill" color="#b8b8b8" size="14"></u-icon>
  62. <view class="text_style1" style="padding-left: 16rpx;">{{item.phone}}</view>
  63. </view>
  64. <view class="hflex astart cell">
  65. <u-icon name="map-fill" color="#b8b8b8" size="14"></u-icon>
  66. <view class="text_style1" style="padding-left: 16rpx;">{{item.address}}</view>
  67. </view>
  68. </view>
  69. </view>
  70. </block>
  71. <view class="add">
  72. <image src="/static/images/comment/add.png" class="add_img" @click="release"></image>
  73. </view>
  74. </view>
  75. </view>
  76. </template>
  77. <script>
  78. import $api from '@/static/js/api.js'
  79. var that = ''
  80. export default {
  81. data() {
  82. return {
  83. nav_index: 1,
  84. tabs: [
  85. {
  86. index: 0,
  87. name: '采购订单',
  88. },
  89. {
  90. index: 1,
  91. name: '生产订单',
  92. },
  93. {
  94. index: 2,
  95. name: '外协订单',
  96. },
  97. {
  98. index: 3,
  99. name: '海运订单',
  100. }
  101. ],
  102. sort_index: 1,
  103. pageList: [
  104. ],
  105. pageList2: [
  106. {
  107. id: 1,
  108. avatar: '/static/images/mine/avatar1.jpg',
  109. name: '张美华',
  110. phone: '189235767865',
  111. address: '山东省济南市历下区历元大街188号解放军家 属院东省济南市'
  112. }
  113. ],
  114. page: 1,
  115. limit: 10,
  116. tab_active: 0,
  117. }
  118. },
  119. onLoad() {
  120. that = this
  121. that.getList()
  122. },
  123. methods: {
  124. // 返回
  125. leftClick() {
  126. console.log('返回');
  127. $api.jump(-1)
  128. },
  129. getList() {
  130. $api.req({
  131. url: '/data/api.auth.Purchase/list',
  132. data: {
  133. page: that.page,
  134. limit: that.limit,
  135. tab: Number(that.tab_active) + 1,
  136. sort: that.sort_index,
  137. sort_dir: 'asc',
  138. longitude: uni.getStorageSync('userLocation').split(',')[0],
  139. latitude: uni.getStorageSync('userLocation').split(',')[1]
  140. }
  141. }, function(res) {
  142. if(res.code == 1) {
  143. that.pageList = res.data.data
  144. }
  145. })
  146. },
  147. // 切换导航栏
  148. changeNav(index) {
  149. if (index == 1) {
  150. that.nav_index = 2
  151. } else {
  152. that.nav_index = 1
  153. }
  154. },
  155. // 切换tabs
  156. changeTabs(e) {
  157. console.log(e);
  158. that.tab_active = e.index
  159. that.pageList = []
  160. that.getList()
  161. },
  162. // 切换排序
  163. changeSort(index) {
  164. if (index == 1) {
  165. that.sort_index = 2
  166. } else {
  167. that.sort_index = 1
  168. }
  169. that.pageList = []
  170. that.getList()
  171. },
  172. // 查看订单详情
  173. toDetail(id) {
  174. $api.jump('/page_index/pages/purchase/orderDetail?id=' + id + '&tab=' + that.tab_active)
  175. },
  176. // 发布
  177. release() {
  178. $api.jump('/page_index/pages/purchase/release')
  179. },
  180. // 查看接单详情
  181. toDetail2(id) {
  182. $api.jump('/page_index/pages/purchase/receivingDetail?id=' + id)
  183. },
  184. },
  185. }
  186. </script>
  187. <style lang="scss" scoped>
  188. .content::v-deep {
  189. background: #F4F4F4;
  190. .nav {
  191. width: 350rpx;
  192. height: 60rpx;
  193. background: #F4F4F4;
  194. border-radius: 30rpx;
  195. font-size: 28rpx;
  196. font-weight: 400;
  197. color: #020202;
  198. .nav_item {
  199. width: 50%;
  200. height: 60rpx;
  201. background: #F4F4F4;
  202. border-radius: 15px;
  203. text-align: center;
  204. line-height: 60rpx;
  205. }
  206. .nav_active {
  207. background: #506DFF;
  208. color: #FFFFFF;
  209. }
  210. }
  211. .tabs {
  212. width: 100%;
  213. background-color: #fff;
  214. height: 80rpx;
  215. }
  216. .box1 {
  217. width: 100%;
  218. margin-top: 20rpx;
  219. background: linear-gradient(180deg, #FFFFFF 0%, #F4F4F4 100%);
  220. border-radius: 40rpx 40rpx 0px 0px;
  221. box-sizing: border-box;
  222. padding: 28rpx 30rpx 72rpx;
  223. .box1_top {
  224. width: 100%;
  225. margin-bottom: 8rpx;
  226. .top_item {
  227. width: 152rpx;
  228. height: 52rpx;
  229. background: #EDEDED;
  230. border-radius: 26rpx;
  231. margin-right: 28rpx;
  232. font-size: 26rpx;
  233. font-weight: 400;
  234. color: #666666;
  235. text-align: center;
  236. line-height: 52rpx;
  237. }
  238. .top_active {
  239. color: #516EFE;
  240. background: #EDF2FE;
  241. border-radius: 26rpx;
  242. border: 1px solid #506DFF;
  243. }
  244. }
  245. .order_box {
  246. width: 100%;
  247. margin: 20rpx 0 ;
  248. background: #FFFFFF;
  249. border-radius: 10px;
  250. box-sizing: border-box;
  251. padding: 28rpx 20rpx;
  252. .order_top {
  253. width: 100%;
  254. /* .order_type {
  255. width: 108rpx;
  256. height: 36rpx;
  257. text-align: center;
  258. line-height: 36rpx;
  259. font-size: 20rpx;
  260. color: #fff;
  261. margin-right: 5rpx;
  262. border-radius: 4rpx;
  263. }
  264. .type1 {
  265. background-color: #506dff;
  266. } */
  267. .order_img {
  268. width: 108rpx;
  269. height: 36rpx;
  270. margin-right: 5rpx;
  271. }
  272. .order_title {
  273. font-size: 32rpx;
  274. font-weight: 500;
  275. color: #222222;
  276. }
  277. }
  278. .order_item {
  279. width: 100%;
  280. padding: 20rpx 0;
  281. border-bottom: 1rpx solid #F4F4F4;
  282. }
  283. .item_name {
  284. font-size: 28rpx;
  285. font-weight: 400;
  286. color: #222222;
  287. padding: 20rpx 0;
  288. }
  289. .order_bottom {
  290. width: 100%;
  291. padding: 20rpx 0 0;
  292. .more {
  293. // width: 140rpx;
  294. // height: 48rpx;
  295. box-sizing: border-box;
  296. padding: 10rpx 20rpx;
  297. border-radius: 24rpx;
  298. border: 1px solid #979797;
  299. font-size: 20rpx;
  300. font-weight: 400;
  301. color: #888888;
  302. }
  303. }
  304. }
  305. }
  306. .padR-20 {
  307. padding-right: 20rpx;
  308. }
  309. .text_style1 {
  310. font-size: 24rpx;
  311. font-weight: 400;
  312. color: #888888;
  313. }
  314. .box2 {
  315. width: 100%;
  316. box-sizing: border-box;
  317. padding: 0 30rpx;
  318. .search {
  319. width: 100%;
  320. margin: 20rpx 0 4rpx;
  321. .u-input {
  322. background-color: #fff !important;
  323. padding: 20rpx 30rpx !important;
  324. }
  325. }
  326. .box {
  327. background: #FFFFFF;
  328. box-sizing: border-box;
  329. padding: 24rpx 20rpx;
  330. border-radius: 20rpx;
  331. margin: 20rpx 0;
  332. .item_avatar {
  333. width: 84rpx;
  334. height: 84rpx;
  335. border-radius: 50%;
  336. }
  337. .cell {
  338. margin-top: 20rpx;
  339. }
  340. .item_name {
  341. font-size: 30rpx;
  342. font-weight: 500;
  343. color: #222222;
  344. }
  345. }
  346. .add {
  347. position: fixed;
  348. right: 30rpx;
  349. bottom: 186rpx;
  350. z-index: 99;
  351. .add_img {
  352. width: 96rpx;
  353. height: 96rpx;
  354. }
  355. }
  356. }
  357. }
  358. </style>