orderFormManage.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <template>
  2. <view class="page">
  3. <view class="tab-1" slot="center">
  4. <u--input
  5. style="background-color: #f4f4f4"
  6. :placeholder="i18n.searchOrderNumber"
  7. shape="circle"
  8. v-model="keywords"
  9. prefixIcon="search"
  10. @change="getGoodsList"
  11. prefixIconStyle="font-size: 22px;color: #909399"
  12. ></u--input>
  13. <view class="top-tab">
  14. <view
  15. :class="{ commodity: follow == '' }"
  16. class="tab"
  17. @click="tabSwitch('')"
  18. >
  19. {{ i18n.whole }}
  20. </view>
  21. <view
  22. :class="{ commodity: follow == 'unreview' }"
  23. class="tab"
  24. @click="tabSwitch('unreview')"
  25. >
  26. {{ i18n.audit }}
  27. </view>
  28. <view
  29. :class="{ commodity: follow == 'unfill' }"
  30. class="tab"
  31. @click="tabSwitch('unfill')"
  32. >
  33. {{ i18n.depositPaid }}
  34. </view>
  35. <view
  36. :class="{ commodity: follow == 'merdelivered' }"
  37. class="tab"
  38. @click="tabSwitch('merdelivered')"
  39. >
  40. {{ i18n.waitTeam }}
  41. </view>
  42. <view
  43. :class="{ commodity: follow == 'undelivered' }"
  44. class="tab"
  45. @click="tabSwitch('undelivered')"
  46. >
  47. {{ i18n.headquarters }}
  48. </view>
  49. <view
  50. :class="{ commodity: follow == 'delivered' }"
  51. class="tab"
  52. @click="tabSwitch('delivered')"
  53. >
  54. {{ i18n.shipped }}
  55. </view>
  56. </view>
  57. </view>
  58. <view class="center">
  59. <view v-for="item in orderList" :key="item.status">
  60. <DetailCard
  61. :itemInfo="item"
  62. @toInformation="toInformation"
  63. :language="language"
  64. />
  65. </view>
  66. </view>
  67. <Remark :show="remarkShow" @remarkClose="remarkClose" />
  68. </view>
  69. </template>
  70. <script>
  71. import DetailCard from "./component/detailCard.vue";
  72. import Remark from "../components/remark.vue";
  73. export default {
  74. components: {
  75. DetailCard,
  76. Remark,
  77. },
  78. data() {
  79. return {
  80. follow: "",
  81. orderList: [],
  82. page: 1,
  83. remarkShow: false,
  84. keywords: "",
  85. language: this._language,
  86. };
  87. },
  88. onShow() {
  89. this.getGoodsList();
  90. },
  91. computed: {
  92. i18n() {
  93. return this.$t("index");
  94. },
  95. },
  96. methods: {
  97. tabSwitch(num) {
  98. this.follow = num;
  99. this.getGoodsList();
  100. },
  101. //关闭备注弹框
  102. remarkClose(value) {
  103. this.remarkShow = false;
  104. //没有接口,有接口再补充
  105. if (value) {
  106. }
  107. },
  108. toInformation(item) {
  109. if (item.status == "unreview") return;
  110. uni.navigateTo({
  111. url: `/pageD/orderDetail/orderDetail?orderStatus=${item.id}&status=${item.status}`,
  112. });
  113. },
  114. //获取订单列表
  115. getGoodsList() {
  116. uni.$u.http
  117. .post(`/api/order/merchant_order`, {
  118. page: this.page,
  119. limit: 10,
  120. status: this.follow,
  121. keywords: this.keywords,
  122. })
  123. .then((res) => {
  124. this.orderList = res.data;
  125. });
  126. },
  127. },
  128. computed: {
  129. i18n() {
  130. return this.$t("index");
  131. },
  132. },
  133. mounted() {
  134. uni.setNavigationBarTitle({
  135. title: this.i18n.orderManagement,
  136. });
  137. },
  138. };
  139. </script>
  140. <style scoped lang="scss">
  141. .page {
  142. .tab-1 {
  143. padding: 0 24rpx;
  144. background-color: #fff;
  145. ::v-deep .u-input {
  146. background-color: #f4f4f4;
  147. }
  148. .top-tab {
  149. margin-top: 20rpx;
  150. display: flex;
  151. justify-content: space-between;
  152. overflow-y: auto;
  153. padding-bottom: 10rpx;
  154. // flex-shrink: 1;
  155. // width: 100vw;
  156. .tab {
  157. margin-right: 40rpx;
  158. font-size: 26rpx;
  159. color: rgba(34, 34, 34, 0.8);
  160. flex-shrink: 0;
  161. height: 44rpx;
  162. display: flex;
  163. align-items: flex-end;
  164. }
  165. .commodity {
  166. position: relative;
  167. font-weight: 600;
  168. font-size: 32rpx;
  169. }
  170. .commodity::before {
  171. content: "";
  172. display: block;
  173. height: 8rpx;
  174. width: 100%;
  175. background: linear-gradient(to right, #f83224, #fff);
  176. position: absolute;
  177. bottom: 5rpx;
  178. opacity: 0.8;
  179. }
  180. }
  181. }
  182. .center {
  183. padding: 20rpx 24rpx;
  184. }
  185. }
  186. </style>