list.vue 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  1. <template>
  2. <view class="app-container">
  3. <view class="tab-container">
  4. <view class="item" :class="tabCurrent === '' ? 'current':''" @tap="changeTab('')">全部({{count.all || 0}})</view>
  5. <view class="item" :class="tabCurrent === 0 ? 'current':''" @tap="changeTab(0)">未使用({{count.wsy || 0}})</view>
  6. <view class="item" :class="tabCurrent === 1 ? 'current':''" @tap="changeTab(1)">已使用({{count.ysy || 0}})</view>
  7. </view>
  8. <view class="list-container">
  9. <block v-for="(item, index) in dataList" :key='index'>
  10. <view class="item">
  11. <view class="left">
  12. <view class="row">
  13. <view class="label">优惠码:</view>
  14. <view class="value">{{item.id}}</view>
  15. <view class="copy" v-if="item.status == 0" @tap="copy(item.id)">复制</view>
  16. </view>
  17. <view class="row">
  18. <view class="label">生成时间:</view>
  19. <view class="value">{{item.bindTime}}</view>
  20. </view>
  21. <view class="row">
  22. <view class="label">有效时间:</view>
  23. <view class="value">{{item.startTime | dateToYYmmdd}} 至 {{item.endTime | dateToYYmmdd}}</view>
  24. </view>
  25. <view class="row" v-if="item.status == 1">
  26. <view class="label">使用时间:</view>
  27. <view class="value">{{item.useTime}}</view>
  28. </view>
  29. </view>
  30. <view class="right">
  31. <view class="status" :class="item.status ? 'on':''">{{item.status ? '已使用':'未使用'}}</view>
  32. <view class="price">{{item.amount | numToFixed}}</view>
  33. </view>
  34. </view>
  35. </block>
  36. </view>
  37. <no-data v-if="!dataList.length" :showText="'空空如也'"></no-data>
  38. <loading-text v-if="dataList.length" :loading="loading" :noMore="noMore" ></loading-text>
  39. <view class="bottom-container">
  40. <view class="button" @tap="isCreateDialog = true">生成优惠码</view>
  41. </view>
  42. <view class="create-dialog" v-show="isCreateDialog">
  43. <view class="dialog">
  44. <view class="title">生成优惠码</view>
  45. <view class="content">
  46. <view class="row">
  47. <text>优惠金额:</text><input type="digit" v-model="createForm.price" /><text>元</text>
  48. </view>
  49. <view class="row">
  50. <text>有效时间:</text>
  51. <radio-group @change="changeDay">
  52. <label v-for="(item, index) in days" :key="item.value">
  53. <radio style="transform:scale(0.7)" color="#FF3F42" :value="item.value" :checked="item.value == createForm.day" />
  54. <view>{{item.name}}</view>
  55. </label>
  56. </radio-group>
  57. </view>
  58. </view>
  59. <view class="btn">
  60. <view class="left" @tap="cancelCreateForm">取消</view>
  61. <view class="right" @tap="confirmCreateForm">生成优惠码</view>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. </template>
  67. <script>
  68. import {mapState} from 'vuex';
  69. export default {
  70. data() {
  71. return {
  72. configInfo: uni.getStorageSync('configInfo'),
  73. count: {}, // 优惠券数量统计
  74. tabCurrent: '', // 当前选择值
  75. dataList: [], // 优惠券列表
  76. pageNum: 1,
  77. pageSize: 8,
  78. noMore: false,
  79. loading: false,
  80. isCreateDialog: false,
  81. createForm: {
  82. price: '',
  83. day: 1,
  84. },
  85. days: [
  86. {value: 1, name: '1天'},
  87. {value: 3, name: '3天'},
  88. {value: 5, name: '5天'},
  89. ]
  90. }
  91. },
  92. computed:{
  93. ...mapState(['userInfo', 'isLogin', 'userId'])
  94. },
  95. onLoad() {
  96. this.getCount();
  97. this.getList();
  98. },
  99. // 下拉刷新
  100. onPullDownRefresh() {
  101. this.pageNum = 1;
  102. this.getList();
  103. },
  104. // 上拉加载
  105. onReachBottom() {
  106. this.getList(1);
  107. },
  108. methods: {
  109. getCount() {
  110. this.$axios({
  111. url: '/exchange/code/count',
  112. method: 'get',
  113. params: {
  114. userId: this.userId
  115. },
  116. }).then(res => {
  117. this.count = res.data;
  118. })
  119. },
  120. getList(loadMore) {
  121. if(this.noMore && loadMore)return;
  122. this.noMore = false
  123. if(!loadMore){
  124. this.pageNum = 1;
  125. }else{
  126. this.loading = true;
  127. }
  128. this.$axios({
  129. url: '/exchange/code/list',
  130. method: 'get',
  131. params: {
  132. pageNo: this.pageNum,
  133. pageSize: this.pageSize,
  134. status: this.tabCurrent
  135. },
  136. isLoading: !loadMore
  137. }).then(res => {
  138. let _list = res.data.records;
  139. let pageTotal = res.data.pages;
  140. if(this.pageNum >= pageTotal){
  141. this.noMore = true;
  142. }
  143. if (_list.length) {
  144. this.pageNum += 1
  145. }
  146. if (loadMore) {
  147. this.dataList = this.dataList.concat(_list);
  148. this.loading = false;
  149. } else {
  150. this.dataList = _list;
  151. }
  152. uni.stopPullDownRefresh();
  153. })
  154. },
  155. changeTab(tab) {
  156. this.tabCurrent = tab;
  157. this.getList();
  158. },
  159. // 复制
  160. copy(val) {
  161. uni.setClipboardData({
  162. data: val,
  163. success: () => {
  164. this.$successToast('复制成功');
  165. }
  166. });
  167. },
  168. changeDay(e) {
  169. this.createForm.day = e.detail.value;
  170. },
  171. // 取消表单
  172. cancelCreateForm() {
  173. this.createForm.price = '';
  174. this.createForm.day = 1;
  175. this.isCreateDialog = false;
  176. },
  177. // 提交表单
  178. confirmCreateForm() {
  179. if(!this.createForm.price) {
  180. return this.$toast('请填写优惠金额');
  181. }
  182. this.$axios({
  183. url: '/exchange/code/bind',
  184. method: 'post',
  185. params: {
  186. amount: this.createForm.price,
  187. day: this.createForm.day,
  188. },
  189. isLoading: 1
  190. }).then(res => {
  191. this.$successToast('生成成功');
  192. this.cancelCreateForm();
  193. this.getCount();
  194. this.getList();
  195. })
  196. },
  197. }
  198. }
  199. </script>
  200. <style lang="scss">
  201. .app-container {
  202. background: #F4F2F2;
  203. padding: 108rpx 20rpx 120rpx;
  204. box-sizing: border-box;
  205. }
  206. .tab-container {
  207. position: fixed;
  208. top: 0;
  209. left: 0;
  210. width: 100%;
  211. display: flex;
  212. background: #FFFFFF;
  213. .item {
  214. flex: 1;
  215. height: 88rpx;
  216. display: flex;
  217. align-items: center;
  218. justify-content: center;
  219. position: relative;
  220. &.current {
  221. color: #FF3F42;
  222. &::after {
  223. content: '';
  224. display: block;
  225. width: 80rpx;
  226. height: 6rpx;
  227. background: #FF3F42;
  228. position: absolute;
  229. bottom: 0;
  230. left: 50%;
  231. margin-left: -40rpx;
  232. }
  233. }
  234. }
  235. }
  236. .list-container {
  237. .item {
  238. background: #FFFFFF;
  239. border-radius: 20rpx;
  240. padding: 12rpx 20rpx;
  241. display: flex;
  242. justify-content: space-between;
  243. margin-bottom: 20rpx;
  244. .left {
  245. .row {
  246. display: flex;
  247. align-items: center;
  248. padding: 10rpx 0;
  249. .label {
  250. font-size: 28rpx;
  251. color: #666666;
  252. width: 140rpx;
  253. }
  254. .value {
  255. font-size: 28rpx;
  256. color: #666666;
  257. }
  258. .copy {
  259. width: 80rpx;
  260. height: 40rpx;
  261. text-align: center;
  262. line-height: 40rpx;
  263. border-radius: 8rpx;
  264. background: #577BFF;
  265. color: #FFFFFF;
  266. font-size: 24rpx;
  267. margin-left: 16rpx;
  268. }
  269. }
  270. }
  271. .right {
  272. display: flex;
  273. flex-direction: column;
  274. justify-content: space-between;
  275. align-items: flex-end;
  276. padding: 10rpx 0;
  277. .status {
  278. font-size: 28rpx;
  279. color: #666666;
  280. &.on {
  281. color: #3F9EFF;
  282. }
  283. }
  284. .price {
  285. font-size: 36rpx;
  286. color: #FE781F;
  287. }
  288. }
  289. }
  290. }
  291. .bottom-container {
  292. position: fixed;
  293. bottom: 0;
  294. left: 0;
  295. width: 100%;
  296. padding: 0 20rpx;
  297. box-sizing: border-box;
  298. display: flex;
  299. height: 120rpx;
  300. .button {
  301. width: 100%;
  302. height: 88rpx;
  303. line-height: 88rpx;
  304. border-radius: 88rpx;
  305. text-align: center;
  306. font-size: 28rpx;
  307. color: #ffffff;
  308. background: linear-gradient(-90deg,#ff3f42 0%, #fe781f 100%);
  309. }
  310. }
  311. .create-dialog {
  312. position: fixed;
  313. top: 0;
  314. left: 0;
  315. z-index: 999;
  316. width: 100%;
  317. height: 100%;
  318. background: rgba(0, 0, 0, 0.3);
  319. display: flex;
  320. align-items: center;
  321. justify-content: center;
  322. .dialog {
  323. width: 600rpx;
  324. background: #FFFFFF;
  325. border-radius: 20rpx;
  326. overflow: hidden;
  327. .title {
  328. font-size: 36rpx;
  329. font-weight: 500;
  330. text-align: center;
  331. line-height: 100rpx;
  332. padding-bottom: 10rpx;
  333. }
  334. .content {
  335. padding: 20rpx 40rpx;
  336. .row {
  337. height: 60rpx;
  338. display: flex;
  339. align-items: center;
  340. margin-bottom: 20rpx;
  341. font-size: 32rpx;
  342. color: #333333;
  343. input {
  344. width: 260rpx;
  345. height: 60rpx;
  346. border: 1px solid #E5E5E5;
  347. margin-right: 16rpx;
  348. padding: 0 12rpx;
  349. }
  350. ::v-deep radio-group {
  351. display: flex;
  352. align-items: center;
  353. label {
  354. display: flex;
  355. align-items: center;
  356. margin-right: 10rpx;
  357. font-size: 28rpx;
  358. }
  359. }
  360. }
  361. }
  362. .btn {
  363. border-top: 1px solid #eaeaea;
  364. display: flex;
  365. &> view {
  366. flex: 1;
  367. text-align: center;
  368. line-height: 100rpx;
  369. font-size: 32rpx;
  370. &.left {
  371. color: #666666;
  372. }
  373. &.right {
  374. color: #FFFFFF;
  375. background: #FF3F42;
  376. }
  377. }
  378. }
  379. }
  380. }
  381. </style>