vipCard.vue 14 KB

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