purchase.vue 9.9 KB

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