list.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363
  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">采购订单</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">生产订单</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">外协订单</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">海运订单</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. methods: {
  137. getList() {
  138. $api.req({
  139. url: '/data/api.business.Purchase/list',
  140. data: {
  141. page: that.page,
  142. limit: that.limit,
  143. status: that.status,
  144. tab: that.tab
  145. }
  146. }, function(res) {
  147. if(res.code == 1) {
  148. if(that.page == 1) {
  149. that.pageList = res.data.data
  150. } else {
  151. that.pageList = that.pageList.concat(res.data.data)
  152. }
  153. that.total = res.data.total
  154. }
  155. })
  156. },
  157. changeTabs(e) {
  158. that.status = e.index
  159. that.page = 1
  160. that.pageList = []
  161. that.getList()
  162. },
  163. changeTabs2(e) {
  164. that.tab = e.index + 1
  165. that.page = 1
  166. that.pageList = []
  167. that.getList()
  168. },
  169. cancel(id) {
  170. $api.req({
  171. url: '/data/api.business.Purchase/cancel',
  172. data: {
  173. tab:that.tab,
  174. id: id
  175. }
  176. }, function(res) {
  177. if(res.code == 1) {
  178. $api.info(res.info)
  179. setTimeout(()=>{
  180. that.getList()
  181. },1000)
  182. }
  183. })
  184. },
  185. edit(id) {
  186. var url = ''
  187. switch(that.tab) {
  188. case 1 :
  189. url = '/pages/release/purchase/purchase?id=' + id;
  190. break;
  191. case 2 :
  192. url = '/pages/release/production/production?id=' +id;
  193. break;
  194. case 3 :
  195. url = '/pages/release/waixie/waixie?id=' +id;
  196. break;
  197. case 4 :
  198. url = '/pages/release/ocean/ocean?id=' +id;
  199. break;
  200. }
  201. $api.jump(url + '&back=true')
  202. },
  203. remind(index) {
  204. var user_id = ""
  205. if(that.tab == 1) {
  206. for(var i=0;i<that.pageList[index].items.length;i++) {
  207. if (that.pageList[index].items[i].is_matched) {
  208. for(var j=0;j<that.pageList[index].items[i].offers.length;j++) {
  209. if (that.pageList[index].items[i].offer_id == that.pageList[index].items[i].offers[j].id) {
  210. user_id = that.pageList[index].items[i].offers[j].user_id
  211. $api.req({
  212. url: '/data/api.business.Purchase/reminder',
  213. data: {
  214. user_id: user_id
  215. }
  216. }, function(res) {
  217. if(res.code == 1) {
  218. $api.info('已发送提醒')
  219. }
  220. })
  221. }
  222. }
  223. }
  224. }
  225. } else {
  226. if (that.pageList[index].is_matched) {
  227. for(var j=0;j<that.pageList[index].offers.length;j++) {
  228. if (that.pageList[index].offer_id == that.pageList[index].offers[j].id) {
  229. user_id = that.pageList[index].offers[j].user_id
  230. $api.req({
  231. url: '/data/api.business.Purchase/reminder',
  232. data: {
  233. user_id: user_id
  234. }
  235. }, function(res) {
  236. if(res.code == 1) {
  237. $api.info('已发送提醒')
  238. }
  239. })
  240. }
  241. }
  242. }
  243. }
  244. },
  245. toDetail(id) {
  246. $api.jump('/pages/mine/service/purOrder/detail?id=' + id + '&tab=' + that.tab)
  247. },
  248. onReachBottom() {
  249. if (Number(that.page) * Number(that.limit) >= Number(that.total)) {
  250. $api.info("没有更多了")
  251. } else {
  252. that.page++
  253. that.getList()
  254. }
  255. }
  256. },
  257. }
  258. </script>
  259. <style lang="scss" scoped>
  260. .content::v-deep {
  261. background: #F4F4F4;
  262. .tabs {
  263. width: 100%;
  264. height: 80rpx;
  265. background: #fff;
  266. }
  267. .tabs2 {
  268. padding: 24rpx 0 28rpx;
  269. }
  270. .box {
  271. background: #FFFFFF;
  272. border-radius: 20rpx;
  273. margin-bottom: 20rpx;
  274. box-sizing: border-box;
  275. padding: 0 20rpx;
  276. .top {
  277. padding: 30rpx 0 0;
  278. .icon_type {
  279. width: 32rpx;
  280. height: 32rpx;
  281. margin-right: 12rpx;
  282. }
  283. .top_title {
  284. font-size: 30rpx;
  285. font-weight: 500;
  286. color: #222222;
  287. line-height: 42rpx;
  288. }
  289. .top_right1 {
  290. width: 96rpx;
  291. height: 40rpx;
  292. background: #FFF4E8;
  293. border-radius: 4rpx;
  294. font-size: 22rpx;
  295. font-weight: 400;
  296. color: #FBA94E;
  297. }
  298. .top_right2 {
  299. background: #E7EBF7;
  300. color: #506DFF;
  301. }
  302. .top_right3 {
  303. background: #E6F7E8;
  304. color: #4AB256;
  305. }
  306. }
  307. .center {
  308. width: 100%;
  309. .items {
  310. padding: 24rpx 0;
  311. border-bottom: 1rpx solid #F4F4F4;
  312. .items_name {
  313. font-size: 28rpx;
  314. font-weight: 400;
  315. color: #222222;
  316. line-height: 40rpx;
  317. padding-bottom: 16rpx;
  318. }
  319. .items_spec {
  320. width: max-content;
  321. font-size: 24rpx;
  322. font-weight: 400;
  323. color: #999999;
  324. box-sizing: border-box;
  325. padding: 6rpx 16rpx;
  326. background: #F4F4F4;
  327. border-radius: 8rpx;
  328. }
  329. }
  330. }
  331. .bottom {
  332. width: 100%;
  333. padding: 24rpx 0;
  334. .bottom_left {
  335. font-size: 24rpx;
  336. font-weight: 400;
  337. color: #777777;
  338. line-height: 30rpx;
  339. }
  340. .btn1 {
  341. width: 152rpx;
  342. height: 60rpx;
  343. border-radius: 32rpx;
  344. border: 1px solid #979797;
  345. font-size: 28rpx;
  346. font-weight: 400;
  347. color: #444444;
  348. }
  349. .btn2 {
  350. color: #506DFF;
  351. border: 1px solid #506DFF;
  352. margin-left: 20rpx;
  353. }
  354. }
  355. }
  356. }
  357. </style>