list.vue 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. <template>
  2. <view class="content">
  3. <view class="tabs">
  4. <u-tabs :list="tabs" @click="changeTabs" :activeStyle="activeStyle" :inactiveStyle="inactiveStyle" lineColor="#506DFF" lineWidth="48rpx" lineHeight='8rpx' :scrollable="false"></u-tabs>
  5. </view>
  6. <view class="tabs2">
  7. <u-tabs :list="tabList" @click="changeTabs2" :activeStyle="activeStyle2" :inactiveStyle="inactiveStyle2"lineWidth="0" lineHeight='0' :scrollable="false"></u-tabs>
  8. </view>
  9. <view class="vflex" style="box-sizing: border-box;padding: 0 30rpx;">
  10. <block v-for="(item,index) in pageList" :key="index">
  11. <view class="box" @click="toDetail(item.id)">
  12. <view class="top hflex acenter jbetween">
  13. <view class="hflex acenter" v-if="item.tab == 1">
  14. <image src="/static/images/mine/orderType1.png" class="icon_type"></image>
  15. <view class="top_title">{{item.order_no}}</view>
  16. </view>
  17. <view class="hflex acenter" v-if="item.tab == 2">
  18. <image src="/static/images/mine/orderType2.png" class="icon_type"></image>
  19. <view class="top_title">{{item.order_no}}</view>
  20. </view>
  21. <view class="hflex acenter" v-if="item.tab == 3">
  22. <image src="/static/images/mine/orderType3.png" class="icon_type"></image>
  23. <view class="top_title">{{item.order_no}}</view>
  24. </view>
  25. <view class="hflex acenter" v-if="item.tab == 4">
  26. <image src="/static/images/mine/orderType4.png" class="icon_type"></image>
  27. <view class="top_title">{{item.order_no}}</view>
  28. </view>
  29. <view class="top_right1 hflex acenter jcenter" v-if="item.status == 1">未报价</view>
  30. <view class="top_right1 top_right2 hflex acenter jcenter" v-if="item.status == 2">已报价</view>
  31. <view class="top_right1 top_right3 hflex acenter jcenter" v-if="item.status == 3">已匹配</view>
  32. </view>
  33. <view class="center">
  34. <block v-for="(item2,index2) in item.items" :key="index2">
  35. <view class="items">
  36. <view class="items_name">{{item2.name}}</view>
  37. <view class="hflex acenter items_spec" v-if="item.tab != 4">
  38. <view>规格:{{item2.spec}} </view>
  39. <view style="padding-left: 20rpx;">采购数量:{{item2.number}}</view>
  40. </view>
  41. <view class="hflex acenter items_spec" v-else>
  42. <view>数量/吨位:{{item2.weight}} </view>
  43. </view>
  44. </view>
  45. </block>
  46. </view>
  47. <view class="bottom hflex acenter jbetween">
  48. <view class="bottom_left">{{item.create_time}}</view>
  49. <view class="hflex acenter" v-if="item.status != 3">
  50. <view class="btn1 hflex acenter jcenter" @click.stop="cancel(item.id)">取消订单</view>
  51. <view class="btn1 btn2 hflex acenter jcenter" @click.stop="edit(item.id)">编辑订单</view>
  52. </view>
  53. <view class="hflex" v-else>
  54. <view class="btn1 btn2 hflex acenter jcenter" @click.stop="remind(index)">提醒完成</view>
  55. </view>
  56. </view>
  57. </view>
  58. </block>
  59. </view>
  60. </view>
  61. </template>
  62. <script>
  63. import $api from '@/static/js/api.js'
  64. var that = ''
  65. export default {
  66. data() {
  67. return {
  68. tabs: [
  69. {
  70. name: '全部'
  71. },
  72. {
  73. name: '未报价'
  74. },
  75. {
  76. name: '已报价'
  77. },
  78. {
  79. name: '已匹配'
  80. }
  81. ],
  82. activeStyle: {
  83. fontSize: '32rpx',
  84. color: '#222222',
  85. },
  86. inactiveStyle: {
  87. color: '#333333',
  88. },
  89. status: 0,
  90. tabList: [
  91. {
  92. name: '采购订单',
  93. },
  94. {
  95. name: '生产订单',
  96. },
  97. {
  98. name: '外协订单',
  99. },
  100. {
  101. name: '海运订单',
  102. }
  103. ],
  104. activeStyle2: {
  105. width: '148rpx',
  106. height: '60rpx',
  107. borderRadius: '42rpx',
  108. fontSize: '26rpx',
  109. textAlign: 'center',
  110. lineHeight: '60rpx',
  111. background: '#E7EBF7',
  112. color: '#506DFF'
  113. },
  114. inactiveStyle2: {
  115. width: '148rpx',
  116. height: '60rpx',
  117. borderRadius: '42rpx',
  118. fontSize: '26rpx',
  119. textAlign: 'center',
  120. lineHeight: '60rpx',
  121. background: '#E9E9E9',
  122. color: '#333333',
  123. },
  124. tab: 1,
  125. page: 1,
  126. limit: 10,
  127. pageList: []
  128. }
  129. },
  130. onLoad() {
  131. that = this
  132. },
  133. onShow() {
  134. that.getList()
  135. },
  136. onPullDownRefresh() {
  137. that.getList()
  138. },
  139. methods: {
  140. getList() {
  141. $api.req({
  142. url: '/data/api.business.Purchase/list',
  143. data: {
  144. page: that.page,
  145. limit: that.limit,
  146. status: that.status,
  147. tab: that.tab
  148. }
  149. }, function(res) {
  150. uni.stopPullDownRefresh()
  151. if(res.code == 1) {
  152. if(that.page == 1) {
  153. that.pageList = res.data.data
  154. } else {
  155. that.pageList = that.pageList.concat(res.data.data)
  156. }
  157. that.total = res.data.total
  158. console.log('订单列表',that.pageList);
  159. }
  160. })
  161. },
  162. changeTabs(e) {
  163. that.status = e.index
  164. that.page = 1
  165. that.pageList = []
  166. that.getList()
  167. },
  168. changeTabs2(e) {
  169. that.tab = e.index + 1
  170. that.page = 1
  171. that.pageList = []
  172. that.getList()
  173. },
  174. cancel(id) {
  175. $api.req({
  176. url: '/data/api.business.Purchase/cancel',
  177. data: {
  178. tab:that.tab,
  179. id: id
  180. }
  181. }, function(res) {
  182. if(res.code == 1) {
  183. $api.info(res.info)
  184. setTimeout(()=>{
  185. that.getList()
  186. },1000)
  187. }
  188. })
  189. },
  190. edit(id) {
  191. var url = ''
  192. switch(that.tab) {
  193. case 1 :
  194. url = '/pages/release/purchase/purchase?id=' + id;
  195. break;
  196. case 2 :
  197. url = '/pages/release/production/production?id=' +id;
  198. break;
  199. case 3 :
  200. url = '/pages/release/waixie/waixie?id=' +id;
  201. break;
  202. case 4 :
  203. url = '/pages/release/ocean/ocean?id=' +id;
  204. break;
  205. }
  206. $api.jump(url + '&back=true')
  207. },
  208. remind(index) {
  209. var user_id = ""
  210. if(that.tab == 1) {
  211. for(var i=0;i<that.pageList[index].items.length;i++) {
  212. if (that.pageList[index].items[i].is_matched) {
  213. for(var j=0;j<that.pageList[index].items[i].offers.length;j++) {
  214. if (that.pageList[index].items[i].offer_id == that.pageList[index].items[i].offers[j].id) {
  215. user_id = that.pageList[index].items[i].offers[j].user_id
  216. $api.req({
  217. url: '/data/api.business.Purchase/reminder',
  218. data: {
  219. user_id: user_id,
  220. order_no: that.pageData.order_no
  221. }
  222. }, function(res) {
  223. if(res.code == 1) {
  224. $api.info('已发送提醒')
  225. }
  226. })
  227. }
  228. }
  229. }
  230. }
  231. } else {
  232. if (that.pageList[index].is_matched) {
  233. for(var j=0;j<that.pageList[index].offers.length;j++) {
  234. if (that.pageList[index].offer_id == that.pageList[index].offers[j].id) {
  235. user_id = that.pageList[index].offers[j].user_id
  236. $api.req({
  237. url: '/data/api.business.Purchase/reminder',
  238. data: {
  239. user_id: user_id,
  240. order_no: that.pageData.order_no
  241. }
  242. }, function(res) {
  243. if(res.code == 1) {
  244. $api.info('已发送提醒')
  245. }
  246. })
  247. }
  248. }
  249. }
  250. }
  251. },
  252. toDetail(id) {
  253. $api.jump('/pages/mine/service/purOrder/detail?id=' + id + '&tab=' + that.tab)
  254. },
  255. onReachBottom() {
  256. if (Number(that.page) * Number(that.limit) >= Number(that.total)) {
  257. $api.info("没有更多了")
  258. } else {
  259. that.page++
  260. that.getList()
  261. }
  262. }
  263. },
  264. }
  265. </script>
  266. <style lang="scss" scoped>
  267. .content::v-deep {
  268. background: #F4F4F4;
  269. .tabs {
  270. width: 100%;
  271. height: 80rpx;
  272. background: #fff;
  273. }
  274. .tabs2 {
  275. padding: 24rpx 0 28rpx;
  276. }
  277. .box {
  278. background: #FFFFFF;
  279. border-radius: 20rpx;
  280. margin-bottom: 20rpx;
  281. box-sizing: border-box;
  282. padding: 0 20rpx;
  283. .top {
  284. padding: 30rpx 0 0;
  285. .icon_type {
  286. width: 32rpx;
  287. height: 32rpx;
  288. margin-right: 12rpx;
  289. }
  290. .top_title {
  291. font-size: 30rpx;
  292. font-weight: 500;
  293. color: #222222;
  294. line-height: 42rpx;
  295. }
  296. .top_right1 {
  297. width: 96rpx;
  298. height: 40rpx;
  299. background: #FFF4E8;
  300. border-radius: 4rpx;
  301. font-size: 22rpx;
  302. font-weight: 400;
  303. color: #FBA94E;
  304. }
  305. .top_right2 {
  306. background: #E7EBF7;
  307. color: #506DFF;
  308. }
  309. .top_right3 {
  310. background: #E6F7E8;
  311. color: #4AB256;
  312. }
  313. }
  314. .center {
  315. width: 100%;
  316. .items {
  317. padding: 24rpx 0;
  318. border-bottom: 1rpx solid #F4F4F4;
  319. .items_name {
  320. font-size: 28rpx;
  321. font-weight: 400;
  322. color: #222222;
  323. line-height: 40rpx;
  324. padding-bottom: 16rpx;
  325. }
  326. .items_spec {
  327. width: max-content;
  328. font-size: 24rpx;
  329. font-weight: 400;
  330. color: #999999;
  331. box-sizing: border-box;
  332. padding: 6rpx 16rpx;
  333. background: #F4F4F4;
  334. border-radius: 8rpx;
  335. }
  336. }
  337. }
  338. .bottom {
  339. width: 100%;
  340. padding: 24rpx 0;
  341. .bottom_left {
  342. font-size: 24rpx;
  343. font-weight: 400;
  344. color: #777777;
  345. line-height: 30rpx;
  346. }
  347. .btn1 {
  348. width: 152rpx;
  349. height: 60rpx;
  350. border-radius: 32rpx;
  351. border: 1px solid #979797;
  352. font-size: 28rpx;
  353. font-weight: 400;
  354. color: #444444;
  355. }
  356. .btn2 {
  357. color: #506DFF;
  358. border: 1px solid #506DFF;
  359. margin-left: 20rpx;
  360. }
  361. }
  362. }
  363. }
  364. </style>