unliquidated.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339
  1. <template>
  2. <view>
  3. <global-loading />
  4. <view v-if="ifShow">
  5. <view class="unliquidated-topBackImg flex-items flex-column">
  6. <view class="totalAward-content flex-column font-color-FFF">
  7. <view class="flex-items-plus mar-top-60">
  8. <label class="fs60 amount">¥{{ ZSalesOrderData.total }}</label>
  9. </view>
  10. <view class="flex-row-plus flex-sp-around fs24 mar-top-30">
  11. <view class="awardBox">
  12. <view class="fs36 font-color-FFF">{{ ZSalesOrderData.directPrice }}</view>
  13. <view class="awardTit font-color-FFF">直接奖励(元)</view>
  14. </view>
  15. <view class="awardBox">
  16. <view class="fs36 font-color-FFF">{{ ZSalesOrderData.indirectPrice }}</view>
  17. <view class="awardTit font-color-FFF">间接奖励(元)</view>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. <view class="awardType">
  23. <view class="awardType-box flex-center">
  24. <view class="awardType-content">
  25. <u-tabs
  26. :list="awardTypeList" bar-width="60" :bold="false" active-color="#C5AA7B"
  27. inactive-color="#999999"
  28. :is-scroll="false" :current="awardTypeFlag" @change="awardTypeActive"
  29. ></u-tabs>
  30. </view>
  31. </view>
  32. <view v-if="awardTypeFlag == 0">
  33. <view v-if="ZStotallength > 0">
  34. <view v-for="(item, index) in ZSalesOrderDatalist" :key="index" class="flex-center">
  35. <view class="directAward-box font-color-656 fs26" @click="arrowTypeChange1(index)">
  36. <view style="display: flex;" class="directAwardInfo">
  37. <view style="flex: 1;" class="flex-items flex-sp-between">
  38. <label class="orderId-box font-color-999">订单号:{{ item.orderFormid }}</label>
  39. <view class="mar-right-50 font-color-999">
  40. 佣金:<label class="font-color-C5AA7B">¥{{ item.commission }}</label>
  41. </view>
  42. </view>
  43. <view>
  44. <image
  45. v-if="item.ifOpen == false" class="arrow-down"
  46. src="../../static/images/origin/arrowDownIcon.png"
  47. ></image>
  48. <image
  49. v-if="item.ifOpen == true" class="arrow-down"
  50. src="../../static/images/origin/arrowUpIcon.png"
  51. ></image>
  52. </view>
  53. </view>
  54. <view v-if="item.ifOpen == true">
  55. <view class="flex-row-plus flex-items flex-sp-between mar-top-30">
  56. <label class="orderId-box font-color-999">商品数:{{ item.products }}</label>
  57. <label class="commission-box mar-left-70 font-color-999">实付金额:¥{{ item.price }}</label>
  58. </view>
  59. <view class="flex-row-plus flex-items mar-top-30">
  60. <label class="orderId-box font-color-999">下单人:{{ item.customerName }}</label>
  61. </view>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. <view v-else class="emptyCart-box flex-items-plus flex-column">
  67. <image class="emptyCart-img" src="../../static/images/origin/bgnull.png"></image>
  68. <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label>
  69. </view>
  70. </view>
  71. <view v-if="awardTypeFlag == 1">
  72. storeName
  73. <view v-if="JStotallength > 0">
  74. <view v-for="(item, index) in JSalesOrderDatalist" :key="index" class="flex-center">
  75. <view class="directAward-box font-color-656 fs26" @click="arrowTypeChange(index)">
  76. <view style="display: flex;" class="directAwardInfo">
  77. <view style="flex: 1;" class="flex-items flex-sp-between">
  78. <label class="orderId-box font-color-999">订单号:{{ item.orderFormid }}</label>
  79. <view class="mar-right-50 font-color-999">
  80. 佣金:<label class="font-color-C5AA7B">¥{{ item.commission }}</label>
  81. </view>
  82. </view>
  83. <view>
  84. <image
  85. v-if="item.ifOpen == false" class="arrow-down"
  86. src="../../static/images/origin/arrowDownIcon.png"
  87. ></image>
  88. <image
  89. v-if="item.ifOpen == true" class="arrow-down"
  90. src="../../static/images/origin/arrowUpIcon.png"
  91. ></image>
  92. </view>
  93. </view>
  94. <view v-if="item.ifOpen == true">
  95. <view class="flex-row-plus flex-items flex-sp-between mar-top-30">
  96. <label class="orderId-box font-color-999">商品数:{{ item.products }}</label>
  97. <label class="commission-box mar-left-70 font-color-999">实付金额:¥{{ item.price }}</label>
  98. </view>
  99. <view class="flex-row-plus flex-items mar-top-30">
  100. <label class="orderId-box font-color-999">下单人:{{ item.customerName }}</label>
  101. </view>
  102. <view class="flex-row-plus flex-items mar-top-30">
  103. <label class="orderId-box font-color-999">分销员:{{ item.distributorName }}</label>
  104. </view>
  105. </view>
  106. </view>
  107. </view>
  108. </view>
  109. <view v-else class="emptyCart-box flex-items-plus flex-column">
  110. <image class="emptyCart-img" src="../../static/images/origin/bgnull.png"></image>
  111. <label class="font-color-999 fs26 mar-top-30">这里空空如也~</label>
  112. </view>
  113. </view>
  114. </view>
  115. </view>
  116. </view>
  117. </template>
  118. <script>
  119. const NET = require('../../utils/request')
  120. const API = require('../../config/api')
  121. export default {
  122. data() {
  123. return {
  124. awardTypeList: [{
  125. name: '直接奖励'
  126. }, {
  127. name: '间接奖励'
  128. }],
  129. awardTypeFlag: 0,
  130. SalesOrderQuery: {
  131. model: {
  132. tenantCode: '',
  133. settleStatus: '',
  134. type: ''
  135. },
  136. current: 0,
  137. size: 10
  138. },
  139. SalesOrderData: [],
  140. ZSalesOrderData: [],
  141. JSalesOrderData: [],
  142. shopId: 0,
  143. distributorId: 0,
  144. ZStotallength: 0,
  145. JStotallength: 0,
  146. page: 1,
  147. pageSize: 20,
  148. loadingType: 0,
  149. loadingType1: 0,
  150. ZSalesOrderDatalist: [],
  151. JSalesOrderDatalist: [],
  152. ifShow: false
  153. }
  154. },
  155. onLoad(options) {
  156. this.shopId = options.shopId
  157. this.distributorId = options.distributorId
  158. this.getZSalesOrderData()
  159. this.getJSalesOrderData()
  160. },
  161. onReachBottom() {
  162. if (this.awardTypeFlag == 0) {
  163. if (this.loadingType == 1) {
  164. uni.stopPullDownRefresh()
  165. } else {
  166. this.page = this.page + 1
  167. this.getZSalesOrderData()
  168. }
  169. } else if (this.loadingType1 == 1) {
  170. uni.stopPullDownRefresh()
  171. } else {
  172. this.page = this.page + 1
  173. this.getJSalesOrderData()
  174. }
  175. },
  176. methods: {
  177. getZSalesOrderData() {
  178. // uni.showLoading({
  179. // mask: true,
  180. // title:'加载中...'
  181. // })
  182. NET.request(API.GetNotReward, {
  183. shopId: this.shopId,
  184. distributorId: this.distributorId,
  185. type: 1,
  186. page: this.page,
  187. pageSize: this.pageSize
  188. }, 'GET').then((res) => {
  189. uni.hideLoading()
  190. if (res.data.page.list.length == 0) {
  191. this.loadingType = 1
  192. this.page = this.page
  193. }
  194. this.ZSalesOrderDatalist = this.ZSalesOrderDatalist.concat(res.data.page.list)
  195. this.ZSalesOrderData = res.data
  196. this.ZStotallength = this.ZSalesOrderData.page.total
  197. this.ifShow = true
  198. })
  199. .catch((res) => {
  200. uni.hideLoading()
  201. })
  202. },
  203. getJSalesOrderData() {
  204. // uni.showLoading({
  205. // mask: true,
  206. // title:'加载中...'
  207. // })
  208. NET.request(API.GetNotReward, {
  209. shopId: this.shopId,
  210. distributorId: this.distributorId,
  211. type: 2,
  212. page: this.page,
  213. pageSize: this.pageSize
  214. }, 'GET').then((res) => {
  215. uni.hideLoading()
  216. if (res.data.page.list.length == 0) {
  217. this.loadingType1 = 1
  218. uni.showToast({
  219. title: '已加载全部···',
  220. duration: 2000,
  221. icon: 'none'
  222. })
  223. this.page = this.page
  224. }
  225. this.JSalesOrderDatalist = this.JSalesOrderDatalist.concat(res.data.page.list)
  226. this.JSalesOrderData = res.data
  227. this.JStotallength = this.JSalesOrderData.page.total
  228. })
  229. .catch((res) => {
  230. uni.hideLoading()
  231. })
  232. },
  233. awardTypeActive(type) {
  234. this.awardTypeFlag = type
  235. this.page = 1
  236. },
  237. arrowTypeChange1(arrowTypeId) {
  238. this.ZSalesOrderData.page.list[arrowTypeId].ifOpen = this.ZSalesOrderData.page.list[arrowTypeId].ifOpen == false
  239. },
  240. arrowTypeChange(arrowTypeId) {
  241. this.JSalesOrderData.page.list[arrowTypeId].ifOpen = this.JSalesOrderData.page.list[arrowTypeId].ifOpen == false
  242. }
  243. }
  244. }
  245. </script>
  246. <style lang="scss">
  247. page {
  248. background: #333333;
  249. }
  250. .emptyCart-box {
  251. margin-top: 70 upx;
  252. .emptyCart-img {
  253. width: 225 upx;
  254. height: 196 upx;
  255. }
  256. }
  257. .unliquidated-topBackImg {
  258. width: 100%;
  259. height: 360 rpx;
  260. background: url(../../static/images/origin/unliquidatedBg.png) no-repeat;
  261. background-size: 100%;
  262. margin-top: 30 rpx;
  263. .totalAward-content {
  264. width: 90%;
  265. .awardBox {
  266. text-align: center;
  267. .awardTit {
  268. opacity: 0.7;
  269. }
  270. }
  271. .amount {
  272. color: #FFEBC4;
  273. }
  274. }
  275. }
  276. .awardType-box {
  277. border-bottom: 1 upx solid #666666;
  278. .awardType-content {
  279. height: 80 upx;
  280. width: 500 upx;
  281. }
  282. }
  283. .directAward-box {
  284. width: 94%;
  285. border-bottom: 1 upx solid #666666;
  286. padding: 30 upx;
  287. display: flex;
  288. justify-content: flex-start;
  289. flex-direction: column;
  290. background: #FFFFFF;
  291. margin-top: 30 rpx;
  292. .orderId-box {
  293. display: flex;
  294. justify-content: flex-start;
  295. flex-direction: row;
  296. }
  297. .commission-box {
  298. width: 260 upx;
  299. }
  300. .arrow-down {
  301. width: 24 upx;
  302. height: 24 upx;
  303. }
  304. .directAwardInfo {}
  305. }
  306. .totalAwardEmpty-box {
  307. margin-top: 65 upx;
  308. .totalAwardEmpty {
  309. width: 270 upx;
  310. height: 270 upx;
  311. }
  312. }
  313. </style>
  314. <style scoped>
  315. .awardType /deep/ .u-tabs {
  316. background: none !important;
  317. }
  318. </style>