order.vue 5.8 KB

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