list.vue 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636
  1. <template>
  2. <view class="app-container">
  3. <view class="tab-container">
  4. <view class="item" :class="tabCurrent === 100 ? 'current':''" @tap="changeTab(100)">全部</view>
  5. <view class="item" :class="tabCurrent === 1 ? 'current':''" @tap="changeTab(1)">待审核</view>
  6. <view class="item" :class="tabCurrent === 2 ? 'current':''" @tap="changeTab(2)">已通过</view>
  7. <view class="item" :class="tabCurrent === 3 ? 'current':''" @tap="changeTab(3)">已驳回</view>
  8. </view>
  9. <view class="list-container">
  10. <block v-for="(item, index) in dataList" :key='index'>
  11. <view class="item" @tap="toOrderDetail(item.orderId, item.orderRefundId)">
  12. <view class="user-info">
  13. <view class="left">
  14. <image :src="configInfo.minLogo3" mode="aspectFill" class="head"></image>
  15. <view class="user">
  16. <view>{{item.userName}}</view>
  17. <view>{{item.phone}}</view>
  18. </view>
  19. </view>
  20. <view class="right">{{item.orderStatus | statusFilter}}</view>
  21. </view>
  22. <view class="goods_list">
  23. <block v-for="(goodsItem, goodsIndex) in item.orderDetails" :key='goodsIndex'>
  24. <view class="goods" :class="'goods'+goodsIndex">
  25. <image :src="goodsItem.imgUrl" mode="aspectFill"></image>
  26. <view class="main">
  27. <view class="row1">
  28. <view class="name ellipsis-2">{{goodsItem.goodsName}}</view>
  29. <view class="price">¥{{goodsItem.price}}</view>
  30. </view>
  31. <view class="row2">
  32. <view>{{goodsItem.goodsSpecValue}}</view>
  33. <view>x{{goodsItem.num}}</view>
  34. </view>
  35. </view>
  36. </view>
  37. </block>
  38. </view>
  39. <view class="user-info2" v-if="item.promotionApplyStatus > 0">
  40. <view class="left">
  41. <view class="label">业务员:</view>
  42. <view class="value">{{item.workerName}}/{{item.workerPhone}}</view>
  43. </view>
  44. <view class="right">{{item.promotionApplyStatus | statusFilter2}}</view>
  45. </view>
  46. <view class="data">
  47. <view class="row">
  48. <view class="label">订单号:</view>
  49. <view class="value">{{item.orderId}}</view>
  50. </view>
  51. <view class="row">
  52. <view class="label">订单金额:</view>
  53. <view class="value">¥{{((item.promotionApplyAmount*100 + item.promotionApplyPayAmount*100))/100 | numToFixed}}</view>
  54. </view>
  55. <view class="row">
  56. <view class="label">减免金额:</view>
  57. <view class="value">¥{{item.promotionApplyAmount | numToFixed}}</view>
  58. </view>
  59. <view class="row">
  60. <view class="label">应付金额:</view>
  61. <view class="value">¥{{item.promotionApplyPayAmount | numToFixed}}</view>
  62. </view>
  63. </view>
  64. <template v-if="item.promotionApplyStatus > 0">
  65. <view class="remark" v-if="item.promotionApplyStatus === 4">
  66. <view class="label">备注:</view>
  67. <view class="value">在业务员可优惠折扣设置值内,自动审核通过。</view>
  68. </view>
  69. <view class="remark" v-if="item.promotionApplyRemark">
  70. <view class="label">申请备注:</view>
  71. <view class="value">{{item.promotionApplyRemark}}</view>
  72. </view>
  73. <view class="remark" v-if="item.promotionApplyStatus === 3 && item.promotionApplyRejectRemark">
  74. <view class="label">驳回备注:</view>
  75. <view class="value">{{item.promotionApplyRejectRemark}}</view>
  76. </view>
  77. </template>
  78. <!-- 业务员端:未申请且待支付 -->
  79. <view class="btn-group" v-if="!isExamineUser && item.promotionApplyStatus === 0 && item.orderStatus === 'NOPAY'">
  80. <div class="button red" @tap.stop="toApply(item)">申请减免金额</div>
  81. </view>
  82. <!-- 业务员端:已驳回 -->
  83. <view class="btn-group" v-if="!isExamineUser && item.promotionApplyStatus === 3">
  84. <div class="button red" @tap.stop="toApply(item)">重新申请优惠</div>
  85. </view>
  86. <!-- 审核端:待审核 -->
  87. <view class="btn-group" v-if="isExamineUser && item.promotionApplyStatus === 1">
  88. <div class="button white" @tap.stop="toExamine(item, false)">不同意</div>
  89. <div class="button red" @tap.stop="toExamine(item, true)">同意</div>
  90. </view>
  91. <!-- 审核端:已通过未付款 -->
  92. <view class="btn-group" v-if="isExamineUser && item.promotionApplyStatus === 2 && item.orderStatus === 'NOPAY'">
  93. <div class="button red" @tap.stop="toExamine(item, false)">驳回</div>
  94. </view>
  95. </view>
  96. </block>
  97. </view>
  98. <no-data v-if="!dataList.length" :showText="'空空如也'"></no-data>
  99. <loading-text v-if="dataList.length" :loading="loading" :noMore="noMore" ></loading-text>
  100. <view class="apply-dialog" v-show="isApplyDialog">
  101. <view class="dialog">
  102. <view class="title">减免金额申请</view>
  103. <view class="content">
  104. <view class="row">
  105. <text>订单金额:¥{{applyItem.payAmount | numToFixed}}</text>
  106. </view>
  107. <view class="row">
  108. <text>减免金额:</text><input type="digit" v-model="applyForm.amount" /><text></text>
  109. </view>
  110. <view class="row">
  111. <text>应付金额:¥{{((applyItem.payAmount*100 - applyForm.amount*100)/100) | numToFixed}}</text>
  112. </view>
  113. <view class="row">
  114. <text>备注:</text><input type="text" v-model="applyForm.remark" /><text></text>
  115. </view>
  116. </view>
  117. <view class="btn">
  118. <view class="left" @tap="cancelApplyForm">取消</view>
  119. <view class="right" @tap="confirmApplyForm">提交</view>
  120. </view>
  121. </view>
  122. </view>
  123. <view class="apply-dialog" v-show="isExamineDialog">
  124. <view class="dialog">
  125. <view class="title">减免金额审核</view>
  126. <view class="content">
  127. <view class="row">
  128. <text>订单金额:¥{{examineItem.payAmount | numToFixed}}</text>
  129. </view>
  130. <view class="row">
  131. <text>减免金额:¥{{examineItem.promotionApplyAmount | numToFixed}}</text>
  132. </view>
  133. <view class="row">
  134. <text>应付金额:¥{{examineItem.promotionApplyPayAmount | numToFixed}}</text>
  135. </view>
  136. <view class="row">
  137. <text>申请备注:{{examineItem.promotionApplyRemark}}</text>
  138. </view>
  139. <view class="row">
  140. <text>审核备注:</text><input type="text" v-model="examineForm.remark" />
  141. </view>
  142. </view>
  143. <view class="btn">
  144. <view class="left" @tap="cancelExamineForm">取消</view>
  145. <view class="right" @tap="confirmExamineForm">提交</view>
  146. </view>
  147. </view>
  148. </view>
  149. </view>
  150. </template>
  151. <script>
  152. import {mapState} from 'vuex';
  153. export default {
  154. filters: {
  155. statusFilter(val) {
  156. const statusMap = {
  157. NOPAY: '待付款',
  158. DFH: '待发货',
  159. YFH: '待收货',
  160. OVER: '已完成',
  161. CLOSE: '已关闭',
  162. REFUND: '售后中',
  163. TIMEOUT: '超时未支付'
  164. }
  165. return statusMap[val]
  166. },
  167. statusFilter2(val) {
  168. const statusMap = {
  169. 0: '未申请',
  170. 1: '待审核',
  171. 2: '已通过',
  172. 3: '已驳回',
  173. 4: '自动审核通过',
  174. }
  175. return statusMap[val]
  176. },
  177. },
  178. data() {
  179. return {
  180. configInfo: uni.getStorageSync('configInfo'),
  181. tabCurrent: 100, // 当前选择值
  182. dataList: [], // 优惠券列表
  183. pageNum: 1,
  184. pageSize: 8,
  185. noMore: false,
  186. loading: false,
  187. isApplyDialog: false,
  188. applyItem: {},
  189. applyForm: {
  190. amount: '',
  191. remark: '',
  192. },
  193. isExamineDialog: false,
  194. examineItem: {},
  195. examineForm: {
  196. status: true,
  197. remark: '',
  198. },
  199. }
  200. },
  201. computed:{
  202. ...mapState(['userInfo', 'isLogin', 'userId']),
  203. isExamineUser() { // 是否审核人员
  204. return this.userInfo.promotionApplyExamineby;
  205. },
  206. },
  207. onLoad() {
  208. this.getList();
  209. uni.setNavigationBarTitle({
  210.   title: '用户减免金额' + (this.isExamineUser ? '审核':'申请')
  211. })
  212. },
  213. // 下拉刷新
  214. onPullDownRefresh() {
  215. this.pageNum = 1;
  216. this.getList();
  217. },
  218. // 上拉加载
  219. onReachBottom() {
  220. this.getList(1);
  221. },
  222. methods: {
  223. getList(loadMore) {
  224. if(this.noMore && loadMore)return;
  225. this.noMore = false
  226. if(!loadMore){
  227. this.pageNum = 1;
  228. }else{
  229. this.loading = true;
  230. }
  231. this.$axios({
  232. url: '/order/my/order',
  233. method: 'get',
  234. params: {
  235. pageNo: this.pageNum,
  236. pageSize: this.pageSize,
  237. promotionApplyStatus: this.tabCurrent,
  238. userId: this.userId
  239. },
  240. isLoading: !loadMore
  241. }).then(res => {
  242. let _list = res.data.records;
  243. let pageTotal = res.data.pages;
  244. if(this.pageNum >= pageTotal){
  245. this.noMore = true;
  246. }
  247. if (_list.length) {
  248. this.pageNum += 1
  249. }
  250. if (loadMore) {
  251. this.dataList = this.dataList.concat(_list);
  252. this.loading = false;
  253. } else {
  254. this.dataList = _list;
  255. }
  256. uni.stopPullDownRefresh();
  257. })
  258. },
  259. changeTab(tab) {
  260. this.tabCurrent = tab;
  261. this.getList();
  262. },
  263. // 去订单详情
  264. toOrderDetail(orderId, orderRefundId) {
  265. uni.navigateTo({
  266. url:'/pages/mine/discount/detail?orderId=' + orderId + '&orderRefundId=' + orderRefundId
  267. })
  268. },
  269. toApply(item) {
  270. this.applyItem = item;
  271. this.isApplyDialog = true;
  272. },
  273. // 取消表单
  274. cancelApplyForm() {
  275. this.applyForm.amount = '';
  276. this.isApplyDialog = false;
  277. },
  278. // 提交表单
  279. confirmApplyForm() {
  280. if(!this.applyForm.amount) {
  281. return this.$toast('请填写优惠金额');
  282. }
  283. this.$axios({
  284. url: '/promotion/apply/apply',
  285. method: 'post',
  286. type: 'application/json',
  287. params: {
  288. orderId: this.applyItem.orderId,
  289. applyAmount: this.applyForm.amount,
  290. applyRemark: this.applyForm.remark,
  291. },
  292. isLoading: 1
  293. }).then(res => {
  294. this.$successToast('提交成功');
  295. this.cancelApplyForm();
  296. this.getList();
  297. })
  298. },
  299. toExamine(item, status) {
  300. this.examineForm.status = status;
  301. this.examineItem = item;
  302. this.isExamineDialog = true;
  303. },
  304. // 取消表单
  305. cancelExamineForm() {
  306. this.examineForm.remark = '';
  307. this.isExamineDialog = false;
  308. },
  309. // 提交表单
  310. confirmExamineForm() {
  311. this.$axios({
  312. url: '/promotion/apply/examine',
  313. method: 'post',
  314. params: {
  315. orderId: this.examineItem.orderId,
  316. examineReuslt: this.examineForm.status,
  317. promotionApplyRejectRemmark: this.examineForm.remark,
  318. },
  319. isLoading: 1
  320. }).then(res => {
  321. this.$successToast('提交成功');
  322. this.cancelExamineForm();
  323. this.getList();
  324. })
  325. },
  326. }
  327. }
  328. </script>
  329. <style lang="scss">
  330. .app-container {
  331. background: #F4F2F2;
  332. padding: 108rpx 20rpx 0;
  333. box-sizing: border-box;
  334. }
  335. .tab-container {
  336. position: fixed;
  337. top: 0;
  338. left: 0;
  339. width: 100%;
  340. display: flex;
  341. background: #FFFFFF;
  342. .item {
  343. flex: 1;
  344. height: 88rpx;
  345. display: flex;
  346. align-items: center;
  347. justify-content: center;
  348. position: relative;
  349. &.current {
  350. color: #FF3F42;
  351. &::after {
  352. content: '';
  353. display: block;
  354. width: 80rpx;
  355. height: 6rpx;
  356. background: #FF3F42;
  357. position: absolute;
  358. bottom: 0;
  359. left: 50%;
  360. margin-left: -40rpx;
  361. }
  362. }
  363. }
  364. }
  365. .list-container {
  366. .item {
  367. margin-bottom: 20rpx;
  368. background: #FFFFFF;
  369. border-radius: 20rpx;
  370. padding: 0 20rpx 10rpx;
  371. .user-info {
  372. height: 70rpx;
  373. display: flex;
  374. justify-content: space-between;
  375. align-items: center;
  376. padding: 10rpx 0;
  377. .left {
  378. display: flex;
  379. align-items: center;
  380. .head {
  381. display: block;
  382. width: 60rpx;
  383. height: 60rpx;
  384. border-radius: 50%;
  385. }
  386. .user {
  387. font-size: 24rpx;
  388. color: #333333;
  389. line-height: 30rpx;
  390. margin-left: 10rpx;
  391. }
  392. }
  393. .right {
  394. font-size: 28rpx;
  395. color: #FE781F;
  396. }
  397. }
  398. .user-info2 {
  399. height: 48rpx;
  400. display: flex;
  401. justify-content: space-between;
  402. align-items: center;
  403. .left {
  404. display: flex;
  405. align-items: center;
  406. line-height: 48rpx;
  407. .label {
  408. width: 128rpx;
  409. font-size: 26rpx;
  410. color: #999999;
  411. }
  412. .value {
  413. flex: 1;
  414. font-size: 28rpx;
  415. color: #666666;
  416. }
  417. }
  418. .right {
  419. font-size: 28rpx;
  420. color: #FE781F;
  421. }
  422. }
  423. .goods_list {
  424. border-top: 1px solid #eaeaea;
  425. border-bottom: 1px solid #eaeaea;
  426. padding: 10rpx 0;
  427. margin-bottom: 10rpx;
  428. }
  429. .goods {
  430. display: flex;
  431. justify-content: space-between;
  432. padding: 10rpx 0;
  433. image {
  434. width: 140rpx;
  435. height: 140rpx;
  436. display: block;
  437. flex-shrink: 0;
  438. margin-right: 20rpx;
  439. }
  440. .main {
  441. width: 510rpx;
  442. .row1 {
  443. display: flex;
  444. justify-content: space-between;
  445. .name {
  446. font-size: 28rpx;
  447. line-height: 36rpx;
  448. }
  449. .price {
  450. font-size: 28rpx;
  451. margin-left: 20rpx;
  452. color: #666666;
  453. }
  454. }
  455. .row2 {
  456. display: flex;
  457. justify-content: space-between;
  458. font-size: 28rpx;
  459. color: #999999;
  460. margin-top: 10rpx;
  461. }
  462. }
  463. }
  464. .data {
  465. .row {
  466. display: flex;
  467. align-items: center;
  468. line-height: 48rpx;
  469. .label {
  470. width: 128rpx;
  471. font-size: 26rpx;
  472. color: #999999;
  473. }
  474. .value {
  475. flex: 1;
  476. font-size: 28rpx;
  477. color: #666666;
  478. }
  479. }
  480. }
  481. .remark {
  482. font-size: 26rpx;
  483. color: #999999;
  484. display: flex;
  485. padding: 6rpx 0;
  486. .label {
  487. flex-shrink: 0;
  488. line-height: 36rpx;
  489. }
  490. .value {
  491. flex: 1;
  492. line-height: 36rpx;
  493. }
  494. }
  495. .btn-group {
  496. height: 68rpx;
  497. display: flex;
  498. justify-content: flex-end;
  499. align-items: center;
  500. &.btn-group2 {
  501. justify-content: space-between;
  502. .tips {
  503. font-size: 28rpx;
  504. color: #FF3F42;
  505. }
  506. .btns {
  507. display: flex;
  508. }
  509. }
  510. .button {
  511. height: 48rpx;
  512. border-radius: 48rpx;
  513. text-align: center;
  514. line-height: 48rpx;
  515. font-size: 24rpx;
  516. margin-left: 20rpx;
  517. flex-shrink: 0;
  518. padding: 0 20rpx;
  519. min-width: 76rpx;
  520. &:first-child {
  521. margin-left: 0;
  522. }
  523. &.gray {
  524. color: #999999;
  525. border: 1px solid #999999;
  526. }
  527. &.white {
  528. color: #FF3F42;
  529. border: 1px solid #FF3F42;
  530. }
  531. &.red {
  532. color: #FFFFFF;
  533. border: 1px solid #FF3F42;
  534. background: #FF3F42;
  535. }
  536. }
  537. }
  538. }
  539. }
  540. .apply-dialog {
  541. position: fixed;
  542. top: 0;
  543. left: 0;
  544. z-index: 9999;
  545. width: 100%;
  546. height: 100%;
  547. background: rgba(0, 0, 0, 0.3);
  548. display: flex;
  549. align-items: center;
  550. justify-content: center;
  551. .dialog {
  552. width: 600rpx;
  553. background: #FFFFFF;
  554. border-radius: 20rpx;
  555. overflow: hidden;
  556. .title {
  557. font-size: 36rpx;
  558. font-weight: 500;
  559. text-align: center;
  560. line-height: 100rpx;
  561. padding-bottom: 10rpx;
  562. }
  563. .content {
  564. padding: 0 40rpx 30rpx;
  565. .row {
  566. height: 50rpx;
  567. display: flex;
  568. align-items: center;
  569. margin-bottom: 10rpx;
  570. font-size: 28rpx;
  571. color: #333333;
  572. input {
  573. flex: 1;
  574. height: 50rpx;
  575. border: 1px solid #E5E5E5;
  576. margin-right: 16rpx;
  577. padding: 0 12rpx;
  578. font-size: 28rpx;
  579. }
  580. }
  581. }
  582. .btn {
  583. border-top: 1px solid #eaeaea;
  584. display: flex;
  585. &> view {
  586. flex: 1;
  587. text-align: center;
  588. line-height: 100rpx;
  589. font-size: 32rpx;
  590. &.left {
  591. color: #666666;
  592. }
  593. &.right {
  594. color: #FFFFFF;
  595. background: #FF3F42;
  596. }
  597. }
  598. }
  599. }
  600. }
  601. </style>