order.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. <template>
  2. <view>
  3. <view class="tab">
  4. <u-tabs :list="tab" @click="click" :lineHeight="5"></u-tabs>
  5. </view>
  6. <view class="goodsList">
  7. <view class="item" v-for="(item, index) in list" :key="index" @click="detail(item)">
  8. <view class="title">{{ item.enterpriseName }}
  9. <view class="state"
  10. v-if="item.finishStatus == 0">
  11. <text class="icon">&#xe830;</text>
  12. <text>未过卡3</text>
  13. </view>
  14. <view class="state" v-if="item.finishStatus == 1 && item.upStatus == 1">
  15. <text class="icon" style="color:#13ce66">&#xe830;</text>
  16. <text>待上架</text>
  17. </view>
  18. <view class="state" v-if="item.finishStatus == 1 && item.upStatus == 2&&item.resaleStatus == 0">
  19. <text class="icon" style="color:#13ce66">&#xe830;</text>
  20. <text>已上架</text>
  21. </view>
  22. <view class="state" v-if="item.resaleStatus == 1&& item.upStatus == 2">
  23. <text class="icon" style="color: #13ce66">&#xe830;</text>
  24. <text>已转售</text>
  25. </view>
  26. </view>
  27. <image src="../../../../static/news.jpg" mode="aspectFill" class="pic"></image>
  28. <view class="con">
  29. <view class="productName omit">{{ item.goodsNames }}</view>
  30. <view class="desc omit">
  31. <text>重量 {{ item.totalWeight }}{{ item.goodsUnit }}</text>
  32. <text>{{ item.tradeAreaName }}</text>
  33. </view>
  34. <view class="price">¥ {{ item.totalPrice }}</view>
  35. </view>
  36. <view class="clear"></view>
  37. <view class="op">
  38. <view class="date">{{ item.createTime }}</view>
  39. <template
  40. v-if="item.peopleConfirmStatus == 1 && item.Sxb010Status == 1 && item.finishStatus == 0 && item.refundStatus == 0">
  41. <view class="an" style="color: #f44336" @click.stop="orderRefund(item.id)">退款</view>
  42. </template>
  43. </view>
  44. </view>
  45. <view class="loading" v-if="loadMore"><u-loadmore :status="loadMore ? 'loading' : 'nomore'" /></view>
  46. <u-empty v-if="!loadMore && list.length == 0"></u-empty>
  47. </view>
  48. </view>
  49. </template>
  50. <script>
  51. export default {
  52. data() {
  53. return {
  54. user: {},
  55. tab: [{
  56. name: '全部',
  57. peopleConfirmStatus: '', //边民确认状态
  58. cooperEntrustStatus: '', //互助委托申报确认状态
  59. applyConfirmStatus: '', //进口申报确认状态
  60. finishStatus: '', //订单完成状态
  61. resaleStatus: '' //订单转售状态
  62. },
  63. {
  64. name: '未过卡3',
  65. finishStatus: 0,
  66. resaleStatus: 0,
  67. upStatus: 1
  68. },
  69. {
  70. name: '待上架',
  71. finishStatus: 1,
  72. resaleStatus: 0,
  73. upStatus: 1
  74. },
  75. {
  76. name: '已上架',
  77. finishStatus: 1,
  78. resaleStatus: 0,
  79. upStatus: 2
  80. },
  81. {
  82. name: '已转售',
  83. finishStatus: 1,
  84. resaleStatus: 1,
  85. upStatus: 2
  86. }
  87. ],
  88. param: {
  89. pageNo: 1,
  90. pageSize: 10
  91. },
  92. list: [],
  93. loadMore: true,
  94. id: '',
  95. flag: '',
  96. };
  97. },
  98. onLoad() {
  99. this.user = this.getUser()
  100. uni.$on('face', res => {
  101. if (this.flag == 1) {
  102. this.http.request({
  103. url: '/level-one-server/app/TbOrder/confirmOrder',
  104. data: {
  105. orderId: this.id
  106. },
  107. success: resp => {
  108. uni.showToast({
  109. title: '订单确认成功'
  110. });
  111. this.refresh();
  112. }
  113. });
  114. } else if (this.flag == 2) {
  115. this.http.request({
  116. url: '/level-one-server/app/TbOrder/applyOrder',
  117. data: {
  118. orderId: this.id
  119. },
  120. success: resp => {
  121. uni.showToast({
  122. title: '进口申报确认成功'
  123. });
  124. this.refresh();
  125. }
  126. });
  127. }
  128. })
  129. },
  130. onShow() {
  131. this.getData();
  132. },
  133. methods: {
  134. downOrder(item) {
  135. uni.showModal({
  136. title: '提示',
  137. content: '确定下架?',
  138. success: res => {
  139. if (res.confirm) {
  140. this.http.request({
  141. url: '/level-one-server/app/TbOrder/down',
  142. data: {
  143. id: item.id
  144. },
  145. success: res => {
  146. uni.showToast({
  147. title: '提交成功'
  148. });
  149. item.upStatus = 1;
  150. }
  151. });
  152. }
  153. }
  154. });
  155. },
  156. getData() {
  157. this.http.request({
  158. url: '/level-one-server/app/TbOrder/getList',
  159. loading: 'false',
  160. data: this.param,
  161. success: res => {
  162. this.loadMore = parseInt(res.data.pageCount) > this.param.pageNo;
  163. if (res.data.data) {
  164. this.list = res.data.data;
  165. console.log("---1---=" + this.list[0].finishStatus)
  166. console.log("---2---=" + this.list[0].resaleStatus)
  167. }
  168. }
  169. });
  170. },
  171. // 点击tab切换
  172. click(e) {
  173. console.log(e);
  174. this.param.peopleConfirmStatus = e.peopleConfirmStatus;
  175. this.param.cooperEntrustStatus = e.cooperEntrustStatus;
  176. this.param.applyConfirmStatus = e.applyConfirmStatus;
  177. this.param.finishStatus = e.finishStatus;
  178. this.param.resaleStatus = e.resaleStatus;
  179. this.param.upStatus = e.upStatus;
  180. this.refresh();
  181. },
  182. detail(item) {
  183. uni.navigateTo({
  184. url: '/pages/market/one/leader/detail?id=' + item.id
  185. });
  186. },
  187. resale(item) {
  188. uni.navigateTo({
  189. url: '/pages/market/two/leader/resale?item=' + JSON.stringify(item)
  190. });
  191. },
  192. orderRefund(id) {
  193. this.http.request({
  194. url: '/level-one-server/app/TbOrder/orderRefund',
  195. data: {
  196. id: id
  197. },
  198. method: 'POST',
  199. success: resp => {
  200. uni.showToast({
  201. title: '操作成功'
  202. });
  203. this.refresh();
  204. }
  205. });
  206. },
  207. updateResalePrice(id) {
  208. uni.navigateTo({
  209. url: '/pages/market/two/leader/updatePrice?id=' + id
  210. });
  211. },
  212. // 刷新数据
  213. refresh() {
  214. this.loadMore = true;
  215. this.param.pageNo = 1;
  216. this.list = [];
  217. this.getData();
  218. }
  219. },
  220. //下拉刷新
  221. onPullDownRefresh() {
  222. setTimeout(() => {
  223. this.refresh();
  224. uni.stopPullDownRefresh();
  225. }, 1000);
  226. },
  227. //上拉加载
  228. onReachBottom() {
  229. if (this.loadMore) {
  230. this.param.pageNo++;
  231. this.getData();
  232. }
  233. }
  234. };
  235. </script>
  236. <style lang="scss">
  237. page {
  238. background-color: $pg;
  239. }
  240. .state {
  241. margin-right: -70px;
  242. }
  243. </style>