handleMonthly20230220.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522
  1. <template>
  2. <view class="handle-monthly">
  3. <view class="handle-monthly-item">
  4. <view>车牌选择</view>
  5. <view class="choose-license" @click="isShowCarLicense = true">
  6. <view>{{ form.carLicense.label || '未选车牌' }}</view>
  7. <u-icon name="arrow-down" color="#7B7B7B" size="30"></u-icon>
  8. </view>
  9. </view>
  10. <u-select v-model="isShowCarLicense" :list="carLicenseList" :default-value="carLicenseDefaultValue"
  11. @confirm="carLicenseListConfirm"></u-select>
  12. <view class="handle-monthly-item">
  13. <view>车辆信息</view>
  14. <view>{{ form.carLicense.value | verifyStatusFilter }}</view>
  15. </view>
  16. <view class="handle-monthly-item">
  17. <view>包月金额</view>
  18. <view class="handle-monthly-money">{{ form.monthAmount || 0 }}元</view>
  19. </view>
  20. <view class="handle-monthly-item"
  21. v-if="monthlyRuleObj.giveFlag && Number(monthlyRuleObj.giveFlag) === 1"
  22. :class="{ 'pb20': monthlyRuleObj.minMonth && form.month >= monthlyRuleObj.minMonth && Number(monthlyRuleObj.giveFlag) === 1 }">
  23. <view>包月时长</view>
  24. <view class="handle-monthly-time-long">
  25. <button @click="reduceMonthNum()">-</button>
  26. <view>{{ form.month || 0 }}个月</view>
  27. <button @click="addMonthNum()">+</button>
  28. </view>
  29. <view class="handle-monthly-time-tips"
  30. v-if="monthlyRuleObj.minMonth && form.month >= monthlyRuleObj.minMonth && Number(monthlyRuleObj.giveFlag) === 1">
  31. 赠送提示:可获得{{ freeMonthNum }}个月的免费停车时长
  32. </view>
  33. </view>
  34. <view class="handle-monthly-item" v-else>
  35. <view>包月时长</view>
  36. <view class="handle-monthly-time-long">
  37. <button @click="reduceMonthNum()">-</button>
  38. <view>{{ form.month || 0 }}个月</view>
  39. <button @click="addMonthNum()">+</button>
  40. </view>
  41. </view>
  42. <view class="handle-monthly-item">
  43. <view>有效期限</view>
  44. <view>{{ dateRange || '-' }}</view>
  45. </view>
  46. <view class="handle-monthly-explain">
  47. <u-parse :html="monthlyContent"></u-parse>
  48. </view>
  49. <view class="handle-monthly-confirm-button">
  50. <template v-if="carLicenseList.length && form.carLicense && form.carLicense.label">
  51. <u-button type="primary" :loading="loading" @click="submit(roadNo)">确认包月</u-button>
  52. </template>
  53. <template v-else>
  54. <u-button>未选车牌</u-button>
  55. </template>
  56. </view>
  57. <u-modal v-model="payWayPop" :title-style="{ color: '#404040' }" title="缴费方式" :show-confirm-button="false"
  58. :show-cancel-button="false">
  59. <view class="slot-content">
  60. <view class="pay-way-new">
  61. <view class="pay-way-item pay-way-item-hy"
  62. @click="$u.debounce(gyBankPay, 1000, (immediate = true))">
  63. <image src="/static/img/gyyh-icon.svg" mode=""></image>
  64. <view class="title">贵州银行</view>
  65. </view>
  66. <!-- #ifdef H5 || MP-WEIXIN -->
  67. <view class="pay-way-item pay-way-item-wx" @click="$u.debounce(wechatPay, 1000, (immediate = true))"
  68. v-if="wxEnv">
  69. <image src="/static/img/weixin-icon.svg" mode=""></image>
  70. <view class="title">微信支付</view>
  71. </view>
  72. <!-- #endif -->
  73. <view class="pay-way-item pay-way-item-jh" @click="$u.debounce(juhePay, 1000, (immediate = true))">
  74. <image src="/static/img/juhe-icon.svg" mode=""></image>
  75. <view class="title">聚合支付</view>
  76. </view>
  77. </view>
  78. <view class="pay-way-subtitle">
  79. <view class="pay-way-subtitle-item">前三个月每天首次一分钱,长期八折优惠</view>
  80. <!-- #ifdef H5 || MP-WEIXIN -->
  81. <!-- <view class="pay-way-subtitle-item" v-if="wxEnv">&nbsp;</view> -->
  82. <!-- #endif -->
  83. <view class="pay-way-subtitle-item">&nbsp;</view>
  84. </view>
  85. <button class="pay-way-close-btn" @click="cancel">关闭</button>
  86. </view>
  87. </u-modal>
  88. <u-toast ref="uToast" />
  89. </view>
  90. </template>
  91. <script>
  92. import {
  93. getEnvIsWx
  94. } from '@/utils/judgEnvironment.js';
  95. import $wxPay from '@/utils/wxPay.js';
  96. export default {
  97. data() {
  98. return {
  99. startTime: '',
  100. endTime: '',
  101. payUrl: '',
  102. monthId: '',
  103. vehicleNo: '',
  104. monthEndTime: '',
  105. monthStartTime: '',
  106. lastActiveDate: null,
  107. roadNo: null,
  108. parkNo: null,
  109. carLicenseList: [],
  110. isShowCarLicense: false,
  111. form: {
  112. energyType: [],
  113. monthAmount: 0,
  114. carLicense: {},
  115. month: 1,
  116. dateRange: ''
  117. },
  118. label: '',
  119. payWayPop: false,
  120. jumpUrl: undefined,
  121. monthlyContent: '',
  122. carLicenseDefaultValue: [0],
  123. wxEnv: false,
  124. loading: false,
  125. type: 'road',
  126. monthlyRuleObj: {},
  127. freeMonthNum: 0
  128. };
  129. },
  130. watch: {
  131. 'form.month':{
  132. handler(val){
  133. this.calcFreeMonthNum(val)
  134. },
  135. deep:true,
  136. immediate:false
  137. }
  138. },
  139. onLoad(page) {
  140. this.wxEnv = getEnvIsWx();
  141. this.getSysterms(0);
  142. if (page.vehicleNo && page.roadNo) {
  143. this.roadNo = page.roadNo;
  144. this.vehicleNo = page.vehicleNo;
  145. this.type = 'road'
  146. this.getMonthInfo(this.roadNo, this.vehicleNo);
  147. } else if (page.roadNo) {
  148. this.roadNo = page.roadNo;
  149. this.type = 'road'
  150. this.getMonthInfo(this.roadNo);
  151. } else if (page.vehicleNo && page.parkNo) {
  152. this.parkNo = page.parkNo;
  153. this.vehicleNo = page.vehicleNo;
  154. this.type = 'park'
  155. this.getMonthInfo(this.parkNo, this.vehicleNo);
  156. } else if (page.parkNo) {
  157. this.parkNo = page.parkNo;
  158. this.type = 'park'
  159. this.getMonthInfo(this.parkNo);
  160. }
  161. if (page.monthId) {
  162. this.monthId = page.monthId
  163. this.payWayPop = true
  164. }
  165. if (page.roadNo) {
  166. this.monthlyRuleDetails(page.roadNo);
  167. }
  168. const baseUrl = window.location.href.split('#')[0];
  169. let jumpUrl = baseUrl + '#/pages/center/monthly/monthly?type=' + this.type;
  170. this.jumpUrl = jumpUrl;
  171. },
  172. methods: {
  173. /**
  174. * 获取几个月的日期范围
  175. * {date} Date 起始日期,往后推一天
  176. * {monthNum} Number 往后月数
  177. * */
  178. getMonthRange(date, monthNum) {
  179. let Date1 = this.lastActiveDate;
  180. Date1 = new Date(Date1);
  181. const year = Date1.getFullYear();
  182. const month = Date1.getMonth() + 1;
  183. const day = Date1.getDate();
  184. const hours = Date1.getHours();
  185. const minutes = Date1.getMinutes();
  186. const seconds = Date1.getSeconds();
  187. let days = new Date(year, month, 0);
  188. days = days.getDate(); //获取当前日期中的月的天数
  189. let year2 = year;
  190. let month2 = parseInt(month) + parseInt(monthNum);
  191. if (month2 > 12) {
  192. year2 = parseInt(year2) + parseInt(parseInt(month2) / 12 == 0 ? 1 : parseInt(month2) / 12);
  193. month2 = parseInt(month2) % 12;
  194. }
  195. let day2 = day;
  196. let days2 = new Date(year2, month2, 0);
  197. days2 = days2.getDate();
  198. if (day2 > days2) {
  199. day2 = days2;
  200. }
  201. if (month2 < 10) {
  202. month2 = '0' + month2;
  203. }
  204. const t1 = year + '.' + (month > 9 ? month : '0' + month) + '.' + (day > 9 ? day : '0' + day);
  205. const t2 = year2 + '.' + month2 + '.' + (day2 > 9 ? day2 : '0' + day2);
  206. this.startTime = t1;
  207. this.endTime = t2;
  208. this.monthStartTime =
  209. year + '-' + (month > 9 ? month : '0' + month) + '-' + (day > 9 ? day : '0' + day) + ' ' + hours +
  210. ':' + minutes + ':' + seconds;
  211. this.monthEndTime = year2 + '-' + month2 + '-' + day2 + ' ' + hours + ':' + minutes + ':' + seconds;
  212. return t1 + '-' + t2;
  213. },
  214. /**
  215. * 月操作 减1
  216. * */
  217. reduceMonthNum() {
  218. if (this.form.month > 1) {
  219. this.form.month -= 1;
  220. this.form.dateRange = this.getMonthRange(new Date(), this.form.month + this.freeMonthNum);
  221. }
  222. },
  223. /**
  224. * 月操作 加1
  225. * */
  226. addMonthNum() {
  227. if (this.form.month >= 24) {
  228. this.$refs.uToast.show({
  229. title: '最多24月',
  230. type: 'warning'
  231. });
  232. return;
  233. }
  234. this.form.month += 1;
  235. this.form.dateRange = this.getMonthRange(new Date(), (this.form.month + this.freeMonthNum));
  236. },
  237. carLicenseListConfirm(item) {
  238. this.form.carLicense = item[0];
  239. this.vehicleNo = item[0].label;
  240. this.getMonthInfo(this.roadNo, this.vehicleNo);
  241. },
  242. /**
  243. * 获取包月信息
  244. * @date 2022-10-09
  245. * @param {any} roadNo
  246. * @param {any} vehicleNo
  247. * @returns {any}
  248. */
  249. getMonthInfo(roadNo, vehicleNo) {
  250. const params = {
  251. vehicleNo
  252. }
  253. if (this.type === 'park') {
  254. params.parkNo = roadNo
  255. } else {
  256. params.roadNo = roadNo
  257. }
  258. this.$u.api
  259. .monthInfo(params)
  260. .then((res) => {
  261. if (res.code === 200 && res.data.vehicleList && res.data.vehicleList.length) {
  262. this.lastActiveDate = res.data.lastActiveDate;
  263. this.form.monthAmount = res.data.monthAmount;
  264. this.carLicenseList = [];
  265. let vehicleNoItem = null;
  266. res.data.vehicleList.forEach((item, index) => {
  267. const obj = {
  268. value: item.energyType,
  269. label: item.vehicleNo,
  270. energyType: item.energyType
  271. };
  272. if (this.vehicleNo == item.vehicleNo) {
  273. vehicleNoItem = obj;
  274. this.carLicenseDefaultValue = [index];
  275. }
  276. this.carLicenseList.push(obj);
  277. });
  278. // 判断是否url存在车牌号,存在则选中项默认选中
  279. if (vehicleNoItem) {
  280. this.form.carLicense = vehicleNoItem;
  281. } else {
  282. this.form.carLicense = this.carLicenseList[0];
  283. }
  284. }
  285. }).catch((err) => {
  286. console.log(err);
  287. })
  288. },
  289. /**
  290. * 获取包月规则详情
  291. * @date 2022-12-20
  292. * @param {any} roadNo
  293. * @returns {any}
  294. */
  295. monthlyRuleDetails(roadNo) {
  296. this.$u.api.monthlyRuleDetailsApi({
  297. roadNo
  298. }).then(res => {
  299. if (res.code === 200) {
  300. this.monthlyRuleObj = res?.rows[0] ?? {}
  301. this.calcFreeMonthNum(this.form.month)
  302. }
  303. })
  304. },
  305. calcFreeMonthNum(val){
  306. let freeNum = 0;
  307. if (this.monthlyRuleObj.giveFlag && Number(this.monthlyRuleObj.giveFlag) === 1) {
  308. // let remainNum = Number(val) % Number(this.monthlyRuleObj.minMonth)
  309. let timesNum = parseInt(Number(val) / Number(this.monthlyRuleObj.minMonth));
  310. if (timesNum > 0) {
  311. this.freeMonthNum = Number(timesNum) * Number(this.monthlyRuleObj.giveMonth);
  312. } else {
  313. this.freeMonthNum = 0
  314. }
  315. }
  316. },
  317. /**
  318. * 提交包月信息
  319. * @date 2022-10-09
  320. * @param {any} roadNo
  321. * @returns {any}
  322. */
  323. submit(roadNo) {
  324. this.loading = true;
  325. const params = {
  326. vehicleNo: this.form.carLicense.label,
  327. energyType: this.form.carLicense.energyType,
  328. monthStartTime: this.monthStartTime,
  329. monthEndTime: this.monthEndTime,
  330. monthCount: this.form.month
  331. }
  332. if (this.type === 'park') {
  333. params.parkNo = this.parkNo
  334. } else {
  335. params.roadNo = this.roadNo
  336. }
  337. this.$u.api
  338. .createMonth(params)
  339. .then((res) => {
  340. if (res.code === 200) {
  341. this.monthId = res.data.monthId;
  342. this.payWayPop = true;
  343. } else {
  344. this.$refs.uToast.show({
  345. title: res.msg,
  346. type: 'error'
  347. });
  348. }
  349. this.loading = false;
  350. })
  351. .catch((err) => {
  352. this.$refs.uToast.show({
  353. title: '程序错误!',
  354. type: 'error'
  355. });
  356. this.loading = false;
  357. });
  358. },
  359. /**
  360. * 贵州银行包月支付
  361. * @date 2022-10-09
  362. * @returns {any}
  363. */
  364. gyBankPay() {
  365. this.$u.api
  366. .monthPay({
  367. monthId: this.monthId,
  368. jumpUrl: this.jumpUrl
  369. })
  370. .then((res) => {
  371. if (res.code === 200) {
  372. window.location.href = res.data.url;
  373. } else {
  374. this.$refs.uToast.show({
  375. title: res.msg,
  376. type: 'error'
  377. });
  378. this.jumpMonthList()
  379. }
  380. });
  381. },
  382. /**
  383. * 聚合支付直接通过后台获取贵阳银行微信支付地址
  384. * @date 2022-10-09
  385. * @returns {any}
  386. */
  387. juhePay() {
  388. // 支付成功跳转到包月页面
  389. let params = {
  390. monthId: this.monthId,
  391. openid: '',
  392. jumpUrl: this.jumpUrl
  393. };
  394. this.$u.api
  395. .monthlyWxPay(params)
  396. .then((res) => {
  397. if (res.code === 200) {
  398. localStorage.setItem('jumpUrl', this.jumpUrl);
  399. location.href = res.data.qrCodeUrl;
  400. } else {
  401. this.$refs.uToast.show({
  402. title: res.msg,
  403. type: 'error'
  404. });
  405. this.jumpMonthList()
  406. }
  407. })
  408. .catch((err) => {
  409. this.$refs.uToast.show({
  410. title: '无法调起微信支付!',
  411. type: 'error'
  412. });
  413. });
  414. },
  415. /**
  416. * 微信支付
  417. * @date 2022-10-09
  418. * @returns {any}
  419. */
  420. wechatPay() {
  421. this.$u.api
  422. .wechatMonthlyPayapi({
  423. monthId: this.monthId,
  424. openid: this.vuex_wxinfo.openId
  425. })
  426. .then((r) => {
  427. if (r.code === 200) {
  428. $wxPay.weixinPay(r.data.wx).then((res) => {
  429. switch (Number(res.code)) {
  430. case 0: // 成功
  431. //#ifdef H5
  432. // this.jumpMonthList()
  433. location.href = this.jumpUrl
  434. //#endif
  435. break;
  436. case 1: // 取消
  437. this.$refs.uToast.show({
  438. title: '已取消支付',
  439. type: 'info'
  440. });
  441. this.jumpMonthList()
  442. break;
  443. case 2: // 支付失败
  444. this.$refs.uToast.show({
  445. title: '支付失败,请检查!',
  446. type: 'error'
  447. });
  448. this.jumpMonthList()
  449. break;
  450. }
  451. });
  452. }
  453. });
  454. },
  455. /**
  456. * 获取包月说明
  457. * @date 2022-10-09
  458. * @param {any} termsType
  459. * @returns {any}
  460. */
  461. getSysterms(termsType) {
  462. this.$u.api
  463. .getSysterms({
  464. termsType: termsType
  465. })
  466. .then((res) => {
  467. if (res.code === 200) {
  468. this.monthlyContent = res.data?.content;
  469. } else {
  470. this.$refs.uToast.show({
  471. title: res.msg,
  472. type: 'error'
  473. });
  474. }
  475. })
  476. .catch((err) => {
  477. this.$refs.uToast.show({
  478. title: '系统错误!',
  479. type: 'error'
  480. });
  481. });
  482. },
  483. cancel() {
  484. this.payWayPop = false
  485. this.jumpMonthList()
  486. },
  487. jumpMonthList() {
  488. this.$u.route({
  489. url: '/pages/center/monthly/monthly',
  490. type: 'redirect',
  491. params: {
  492. type: this.type
  493. }
  494. })
  495. }
  496. },
  497. computed: {
  498. dateRange: function() {
  499. return this.getMonthRange(this.lastActiveDate, this.form.month + this.freeMonthNum);
  500. }
  501. },
  502. filters: {
  503. verifyStatusFilter(value) {
  504. if (value === 0) {
  505. return '-';
  506. } else if (value === 1) {
  507. return '汽油车';
  508. } else if (value === 2) {
  509. return '新能源';
  510. } else {
  511. return '-';
  512. }
  513. }
  514. }
  515. };
  516. </script>
  517. <style lang="scss" scoped>
  518. @import './handleMonthly.scss';
  519. @import '../paymentMethod/paymentMethod.scss';
  520. </style>