order.vue 6.2 KB

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