totalAward.vue 9.5 KB

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