vipCard.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614
  1. <template>
  2. <view class="box">
  3. <view class="headerBox">
  4. <view class="vip">
  5. <view class="headerTop">
  6. <image src="../../static/img/vipheader.png" mode="" style="width: 80rpx;height: 80rpx;"></image>
  7. <view class="headerRight">
  8. <view class="nameBox">
  9. <view class="name">{{vipData.name}}</view>
  10. <image src="../../static/img/icon_vip.png" mode=""
  11. style="width: 112rpx;height: 34rpx;margin-left: 10rpx;"></image>
  12. </view>
  13. <view class="phone">{{userInfo.mobilePhone}}</view>
  14. </view>
  15. </view>
  16. <view class="kahaoBox">
  17. <image src="../../static/img/icon_kahao.png" mode=""
  18. style="width: 28rpx;height: 28rpx;margin-right: 10rpx;"></image>
  19. <view class="kahao">卡号 {{vipData.cardCode}}</view>
  20. </view>
  21. </view>
  22. <view class="tab">
  23. <view>
  24. <view class="tabLine" :class="{tabActive:tabIndex==1}" @click="tabClick(1)">计次</view>
  25. <view :class="{line:tabIndex==1}"></view>
  26. </view>
  27. <viw>
  28. <view class="tabLine" :class="{tabActive:tabIndex==2}" @click="tabClick(2)">储值</view>
  29. <view :class="{line:tabIndex==2}"></view>
  30. </viw>
  31. </view>
  32. </view>
  33. <!-- 计次 -->
  34. <view class="mainBox" v-if="tabIndex==1">
  35. <view class="btnBox" @click="dis=!dis">
  36. <image v-if="dis" src="../../static/img/icon_selectY.png" mode="" style="width: 36rpx;height: 36rpx;">
  37. </image>
  38. <image v-else src="../../static/img/icon_selectN.png" mode="" style="width: 36rpx;height: 36rpx;">
  39. </image>
  40. <view style="margin-left: 10rpx;color: #3C3C3C;font-size: 24rpx;">不展示剩余为0项</view>
  41. </view>
  42. <view v-for="(item,index) in vipData.cardTimeList">
  43. <view v-if="AmountQtyJs(item.list)" class="itemBox">
  44. <view class="itemTop">
  45. <view class="itemName">{{item.PackName}}</view>
  46. <view class="tiaokuan" @click="useCl(item.useComment)">使用条款</view>
  47. </view>
  48. <view class="itemBottom" :class="{active:item.open}">
  49. <view class="shopName">{{item.shopName}}</view>
  50. <image @click="changeState(item)" v-if="item.open==false" src="../../static/img/icon_arrow_down.png"
  51. mode="" style="width: 34rpx;height: 22rpx;"></image>
  52. <image @click="changeState(item)" v-if="item.open==true" src="../../static/img/icon_arrow_up.png"
  53. mode="" style="width: 34rpx;height: 22rpx;"></image>
  54. </view>
  55. <view v-if="item.open">
  56. <!-- 不展示剩余为0项 -->
  57. <view class="itemBg" v-if="dis&&v.AmountQty!=0" v-for="(v,index2) in item.list" :key="index2">
  58. <view class="nameTop" v-if="v.FlowType==2"><span class="type">项目</span> {{v.FlowName}}</view>
  59. <view class="nameTop" v-if="v.FlowType==1"><span class="type">商品</span> {{v.FlowName}}</view>
  60. <view class="timeBottom">
  61. <view class="time" v-if="v.ExpireTime">有效期:{{v.ExpireTime.slice(0,10)}}</view>
  62. <view class="time" v-else>有效期:永久</view>
  63. <view>剩余/总:<span
  64. style="color: #FF3B30;">{{v.AmountQty}}</span>/{{v.TotalQty}}
  65. </view>
  66. </view>
  67. </view>
  68. <!-- 展示所有 -->
  69. <view class="itemBg" v-if="!dis" v-for="(v,index2) in item.list" :key="index2">
  70. <view class="nameTop" v-if="v.FlowType==2"><span class="type">项目</span> {{v.FlowName}}</view>
  71. <view class="nameTop" v-if="v.FlowType==1"><span class="type">商品</span> {{v.FlowName}}</view>
  72. <view class="timeBottom">
  73. <view class="time" v-if="v.ExpireTime">有效期:{{v.ExpireTime.slice(0,10)}}</view>
  74. <view class="time" v-else>有效期:永久</view>
  75. <view>剩余/总:<span
  76. style="color: #FF3B30;">{{v.AmountQty}}</span>/{{v.TotalQty}}
  77. </view>
  78. </view>
  79. </view>
  80. </view>
  81. </view>
  82. </view>
  83. <!-- 无数据空白页 -->
  84. <nodata v-if="vipData.cardTimeList.length==0"></nodata>
  85. <!-- 使用条款-->
  86. <view class="shiyongBox" v-if="shiyongShow" @click="shiyongShow=false">
  87. <view class="shiyongCont" @click.stop="">
  88. <view class="shiyongContTop">
  89. <view class="shiyongContTopTitle">使用条款</view>
  90. <image src="../../static/img/icon_close.png" alt="" class="shiyongContTopX"
  91. @click="shiyongShow=false"></image>
  92. </view>
  93. <view class="shiyonghtml">
  94. <view v-html="useComment" v-if="useComment"></view>
  95. <view v-else class="shiyongno">使用条款暂无内容</view>
  96. </view>
  97. </view>
  98. </view>
  99. </view>
  100. <!-- 储值 -->
  101. <view class="mainBox" v-if="tabIndex==2">
  102. <view class="btnBox" @click="disCz=!disCz">
  103. <image v-if="disCz" src="../../static/img/icon_selectY.png" mode="" style="width: 36rpx;height: 36rpx;">
  104. </image>
  105. <image v-else src="../../static/img/icon_selectN.png" mode="" style="width: 36rpx;height: 36rpx;">
  106. </image>
  107. <view style="margin-left: 10rpx;color: #3C3C3C;font-size: 24rpx;">不展示剩余为0项</view>
  108. </view>
  109. <view v-for="(item,index) in vipData.carMoneyList">
  110. <!-- 不展示剩余为0项 -->
  111. <view v-if="disCz&&item.Money!=0" class="itemBox">
  112. <view class="itemTop">
  113. <view class="itemName">{{item.PacKName}}</view>
  114. <view class="tiaokuan" @click="useCl(item.useComment)">使用条款</view>
  115. </view>
  116. <view class="itemBottom" :class="{active:item.open}">
  117. <view class="shopName">{{item.ShopName}}</view>
  118. <view class="moneyBox"><span style="font-size: 24rpx; color: #FF3B30; padding-top: 2rpx;">¥</span><span class="money">{{item.Money}}</span> <span
  119. style="color: #999999;font-size: 24rpx;">( 充{{item.ChargeMoney}}送{{item.GiftMoney}} )</span>
  120. </view>
  121. <image @click="changeState(item)" v-if="item.open==false" src="../../static/img/icon_arrow_down.png"
  122. mode="" style="width: 34rpx;height: 22rpx;"></image>
  123. <image @click="changeState(item)" v-if="item.open==true" src="../../static/img/icon_arrow_up.png"
  124. mode="" style="width: 34rpx;height: 22rpx;"></image>
  125. </view>
  126. <view class="itemBg" v-if="item.open" v-for="(v,index2) in item.payList" :key="index2">
  127. <view class="timeBottom">
  128. <view class="time" v-if="v.CreateTime">{{v.CreateTime}}</view>
  129. <view v-if="v.Type==2">-{{v.Money}}</view>
  130. <view class="count" v-else>+{{v.Money}}</view>
  131. </view>
  132. </view>
  133. </view>
  134. <!-- 展示所有 -->
  135. <view v-if="!disCz" class="itemBox">
  136. <view class="itemTop">
  137. <view class="itemName">{{item.PacKName}}</view>
  138. <view class="tiaokuan" @click="useCl(item.useComment)">使用条款</view>
  139. </view>
  140. <view class="itemBottom" :class="{active:item.open}">
  141. <view class="shopName">{{item.ShopName}}</view>
  142. <view class="moneyBox"><span style="font-size: 24rpx; color: #FF3B30; padding-top: 2rpx;">¥</span><span class="money">{{item.Money}}</span> <span
  143. style="color: #999999;font-size: 24rpx;">( 充{{item.ChargeMoney}}送{{item.GiftMoney}} )</span>
  144. </view>
  145. <image @click="changeState(item)" v-if="item.open==false" src="../../static/img/icon_arrow_down.png"
  146. mode="" style="width: 34rpx;height: 22rpx;"></image>
  147. <image @click="changeState(item)" v-if="item.open==true" src="../../static/img/icon_arrow_up.png"
  148. mode="" style="width: 34rpx;height: 22rpx;"></image>
  149. </view>
  150. <view class="itemBg" v-if="item.open" v-for="(v,index2) in item.payList" :key="index2">
  151. <view class="timeBottom">
  152. <view class="time" v-if="v.CreateTime">{{v.CreateTime}}</view>
  153. <view v-if="v.Type==2">-{{v.Money}}</view>
  154. <view class="count" v-else>+{{v.Money}}</view>
  155. </view>
  156. </view>
  157. </view>
  158. </view>
  159. <!-- 无数据空白页 -->
  160. <nodata v-if="vipData.carMoneyList.length==0"></nodata>
  161. <!-- 使用条款-->
  162. <view class="shiyongBox" v-if="shiyongShow" @click="shiyongShow=false">
  163. <view class="shiyongCont" @click.stop="">
  164. <view class="shiyongContTop">
  165. <view class="shiyongContTopTitle">使用条款</view>
  166. <image src="../../static/img/icon_close.png" alt="" class="shiyongContTopX"
  167. @click="shiyongShow=false"></image>
  168. </view>
  169. <view class="shiyonghtml">
  170. <view v-html="useComment" v-if="useComment"></view>
  171. <view v-else class="shiyongno">使用条款暂无内容</view>
  172. </view>
  173. </view>
  174. </view>
  175. </view>
  176. </view>
  177. </template>
  178. <script>
  179. import nodata from '../../components/nodata/nodata.vue'
  180. export default {
  181. components: {
  182. nodata,
  183. },
  184. data() {
  185. return {
  186. tabIndex: '1',
  187. vipData: {},
  188. userInfo: '',
  189. shiyongShow: false,
  190. useComment: '',
  191. dis: true,
  192. disCz: true,
  193. }
  194. },
  195. onLoad() {
  196. this.userInfo = uni.getStorageSync("userInfo")
  197. this.myOrderCoupon();
  198. },
  199. methods: {
  200. AmountQtyJs (item) {
  201. var state = false
  202. if (this.dis) {
  203. item.forEach(v => {
  204. if (v.AmountQty != 0) {
  205. state = true
  206. }
  207. })
  208. } else {
  209. state = true
  210. }
  211. return state
  212. },
  213. useCl(useComment) {
  214. this.useComment = useComment;
  215. this.shiyongShow = true;
  216. },
  217. myOrderCoupon() {
  218. uni.showLoading({
  219. title: '加载中'
  220. })
  221. this.$http('openweiXinCardInfoController/queryCardTimeAndMondyList', {
  222. // page: this.page,
  223. // limit: 10,
  224. }, 'POST').then(res => {
  225. uni.hideLoading();
  226. // var list = res.data.Items
  227. var list = res.data
  228. list.cardTimeList.forEach((item, index) => {
  229. for (const key in item) {
  230. item['open'] = false
  231. }
  232. })
  233. list.carMoneyList.forEach((item, index) => {
  234. for (const key in item) {
  235. item['open'] = false
  236. }
  237. })
  238. this.vipData = list
  239. })
  240. },
  241. tabClick(tag) {
  242. this.tabIndex = tag
  243. },
  244. changeState(item) {
  245. item.open = !item.open
  246. },
  247. gonavigateTo(url) {
  248. uni.navigateTo({
  249. url: url
  250. })
  251. }
  252. },
  253. // 下拉刷新
  254. onPullDownRefresh() {
  255. // this.page = 1
  256. this.myOrderCoupon()
  257. setTimeout(function() {
  258. uni.stopPullDownRefresh();
  259. }, 1000);
  260. },
  261. }
  262. </script>
  263. <style scoped>
  264. .box {
  265. min-height: 100vh;
  266. padding-bottom: 60rpx;
  267. }
  268. .headerBox {
  269. background-color: #171723;
  270. height: 525rpx;
  271. width: 100vw;
  272. padding: 30rpx 0rpx;
  273. /* position: fixed;
  274. left: 0;
  275. top: 0;
  276. z-index: 999; */
  277. }
  278. .vip {
  279. background: url(http://dmsphoto.66km.com.cn/thFiles/0EEEE7DB-02ED-41B4-A633-2F2669E0DF7E.png);
  280. background-size: 100% 100%;
  281. height: 320rpx;
  282. /* width: 100vw; */
  283. margin: 0rpx 24rpx;
  284. padding: 48rpx 30rpx;
  285. display: flex;
  286. flex-direction: column;
  287. justify-content: space-between;
  288. }
  289. .headerTop {
  290. display: flex;
  291. justify-content: flex-start;
  292. }
  293. .headerRight {
  294. padding-left: 18rpx;
  295. }
  296. .nameBox {
  297. display: flex;
  298. justify-content: flex-start;
  299. align-items: center;
  300. }
  301. .name {
  302. font-size: 30rpx;
  303. font-weight: bold;
  304. color: #523509;
  305. line-height: 42rpx;
  306. }
  307. .phone {
  308. margin-top: 12rpx;
  309. font-size: 24rpx;
  310. font-weight: bold;
  311. color: #523509;
  312. line-height: 33rpx;
  313. }
  314. .kahaoBox {
  315. display: flex;
  316. justify-content: flex-start;
  317. align-items: center;
  318. }
  319. .kahao {
  320. font-size: 24rpx;
  321. font-weight: bold;
  322. color: #523509;
  323. line-height: 33rpx;
  324. }
  325. .tab {
  326. background: #FFFFFF;
  327. margin-top: 30rpx;
  328. display: flex;
  329. justify-content: space-around;
  330. line-height: 60rpx;
  331. height: 60rpx;
  332. border-radius: 26rpx 26rpx 0rpx 0rpx;
  333. padding: 28rpx;
  334. }
  335. .tabLine {
  336. font-size: 30rpx;
  337. line-height: 42rpx;
  338. color: #3C3C3C;
  339. text-align: center;
  340. }
  341. .line{
  342. width: 40rpx;
  343. margin: 0rpx 10rpx;
  344. height: 4rpx;
  345. background: #FF0000;
  346. margin-top: 8rpx;
  347. }
  348. .tabActive {
  349. color: #3C3C3C;
  350. font-weight: bold;
  351. }
  352. .mainBox {
  353. /* margin-top: 590rpx; */
  354. background-color: #F4F5F7;
  355. padding: 24rpx;
  356. min-height: 100vh;
  357. }
  358. .btnBox {
  359. display: flex;
  360. }
  361. .itemBox {
  362. background-color: #FFFFFF;
  363. border-radius: 10rpx;
  364. padding: 30rpx 20rpx;
  365. margin-top: 20rpx;
  366. }
  367. .itemTop {
  368. display: flex;
  369. justify-content: space-between;
  370. align-items: baseline;
  371. }
  372. .itemBottom {
  373. display: flex;
  374. justify-content: space-between;
  375. align-items: center;
  376. margin-top: 15rpx;
  377. }
  378. .active {
  379. margin-bottom: 30rpx;
  380. }
  381. .itemName {
  382. font-size: 30rpx;
  383. font-weight: bold;
  384. color: #333333;
  385. line-height: 42rpx;
  386. }
  387. .tiaokuan {
  388. width: 136rpx;
  389. height: 52rpx;
  390. background: #FFFFFF;
  391. border-radius: 28rpx;
  392. border: 1rpx solid #DDDDDD;
  393. color: #666666;
  394. font-size: 24rpx;
  395. text-align: center;
  396. line-height: 52rpx;
  397. }
  398. .shopName {
  399. border-radius: 5rpx;
  400. border: 1rpx solid #DDDDDD;
  401. color: #999999;
  402. font-size: 24rpx;
  403. padding: 2rpx 12rpx;
  404. }
  405. .itemBg {
  406. padding: 30rpx 0rpx;
  407. border-top: 1rpx solid #EEEEEE;
  408. }
  409. .nameTop {
  410. font-size: 28rpx;
  411. font-weight: 400;
  412. color: #333333;
  413. line-height: 40rpx;
  414. margin-bottom: 20rpx;
  415. }
  416. .type {
  417. width: 72rpx;
  418. height: 36rpx;
  419. border-radius: 5rpx;
  420. border: 1rpx solid #F19D01;
  421. margin-right: 10rpx;
  422. font-size: 24rpx;
  423. color: #F19D01;
  424. line-height: 36rpx;
  425. padding: 2rpx 12rpx;
  426. text-align: center;
  427. }
  428. .timeBottom {
  429. display: flex;
  430. justify-content: space-between;
  431. color: #999999;
  432. font-size: 24rpx;
  433. }
  434. .money {
  435. font-size: 36rpx;
  436. font-weight: bold;
  437. color: #FF0000;
  438. line-height: 50rpx;
  439. }
  440. .moneyBox{
  441. flex-grow: 1;
  442. display: flex;
  443. justify-content: flex-end;
  444. margin-right: 10rpx;
  445. align-items: center;
  446. }
  447. .count {
  448. color: #FF0000;
  449. }
  450. .shiyongBox {
  451. width: 100%;
  452. height: 100vh;
  453. background: rgba(0, 0, 0, 0.4);
  454. position: fixed;
  455. left: 0;
  456. top: 0;
  457. z-index: 9999;
  458. }
  459. .shiyongCont {
  460. width: 100%;
  461. height: 70vh;
  462. background: #ffffff;
  463. left: 0;
  464. bottom: 0;
  465. position: absolute;
  466. border-radius: 24rpx 24rpx 0rpx 0rpx;
  467. }
  468. .shiyongContTopX {
  469. width: 36rpx;
  470. height: 36rpx;
  471. }
  472. .shiyongContTop {
  473. display: flex;
  474. justify-content: space-between;
  475. padding: 24rpx;
  476. color: #3C3C3C;
  477. font-size: 30rpx;
  478. border-bottom: 1rpx solid #EEEEEE;
  479. align-items: center;
  480. }
  481. .shiyongContTopTitle {
  482. font-size: 30rpx;
  483. color: #3C3C3C;
  484. font-weight: bold;
  485. }
  486. .shiyonghtml {
  487. padding: 24rpx;
  488. height: calc(70vh - 100px);
  489. overflow-y: scroll;
  490. }
  491. .shiyongno {
  492. color: #666666;
  493. font-size: 26rpx;
  494. }
  495. </style>