order-detail.ts 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705
  1. // pages/orders/order-detail.ts
  2. import { api_executeOrder, api_executePayment, api_queryByParamName, api_userPaymentOrderDetail, api_userPaymentOrderUnpaid } from "../../api/login";
  3. import { api_sysAreaQueryAllProvince, api_userReceiveAddressPage, api_userReceiveAddressRemove, api_userReceiveAddressSave, api_userReceiveAddressUpdate } from "../../api/new";
  4. import { formatPrice, GRADE_ENUM } from "../../utils/util";
  5. // 获取应用实例
  6. const app = getApp<IAppOption>()
  7. Page({
  8. /**
  9. * 页面的初始数据
  10. */
  11. data: {
  12. backParams: null,
  13. serviceShow: true,
  14. status: '',
  15. statusList: {
  16. ing: {
  17. logo: './images/ing.png',
  18. title: '确认订单',
  19. content: '请尽快完成支付,以便我们为您处理订单'
  20. },
  21. },
  22. goodsInfo: {} as any,
  23. hasInstrument: false, // 是否有乐器
  24. receiveAddress: '', // 选择的地址信息
  25. receiveAddressInfo: {
  26. addressDetail: '',
  27. name: '',
  28. phoneNumber: ''
  29. },
  30. userBeneficiaryId: '', // 添加购买人信息
  31. userBeneficiaryInfo: {
  32. name: '',
  33. phoneNumber: '',
  34. schoolInfo: ''
  35. },
  36. paymentType: null as any, // 支付类型
  37. paymentChannel: null as any,
  38. showService: false,
  39. areaList: [] as any,
  40. currentValues: [] as any,
  41. showDialog: false, // 删除弹窗
  42. selectAddressId: '', // 选中的编号
  43. showArea: false, // 地区
  44. addressShow: false, // 添加/修改收货地址
  45. addressListShow: false, // 收货地址列表
  46. addressList: [] as any, // 收货地址列表
  47. // 添加地址表单信息
  48. id: "",
  49. name: '',
  50. phoneNumber: '',
  51. detailAddress: '',
  52. cityCode: 0,
  53. cityName: "",
  54. provinceCode: 0,
  55. provinceName: "",
  56. regionCode: '',
  57. regionName: "",
  58. },
  59. /**
  60. * 生命周期函数--监听页面加载
  61. */
  62. onLoad(options: any) {
  63. this.queryPayType()
  64. this.getAddresss()
  65. this.getAreas()
  66. if (options.orderInfo) {
  67. const goods = JSON.parse(decodeURIComponent(options.orderInfo));
  68. // console.log(goods, 'goods')
  69. // console.log(options, 'options')
  70. const infos = {
  71. allSalePrice: 0,
  72. allOriginPrice: 0,
  73. allDiscountPrice: '',
  74. integerPart: '',
  75. decimalPart: '',
  76. name: '',
  77. shopId: '',
  78. orderNo: options.orderNo || '',
  79. goodsList: [] as any
  80. }
  81. // 是否有乐器
  82. let hasInstrument = false
  83. for (let i in goods) {
  84. const item = goods[i]
  85. if (item.goodsType === "INSTRUMENTS") {
  86. hasInstrument = true
  87. }
  88. infos.name = infos.name ? infos.name + '+' + item.name : item.name
  89. infos.shopId = item.shopId
  90. const afterPrice: any = formatPrice(item.salePrice)
  91. infos.goodsList.push({
  92. ...item,
  93. ...afterPrice
  94. })
  95. infos.allSalePrice += Number(item.salePrice)
  96. infos.allOriginPrice += Number(item.originalPrice)
  97. }
  98. const allAfterPrice: any = formatPrice(infos.allSalePrice)
  99. // console.log(infos.allOriginPrice, infos.allSalePrice)
  100. infos.allDiscountPrice = formatPrice(infos.allOriginPrice - infos.allSalePrice, 'ALL') as string
  101. infos.integerPart = allAfterPrice.integerPart
  102. infos.decimalPart = allAfterPrice.decimalPart
  103. // console.log(infos, 'infos')
  104. this.setData({
  105. goodsInfo: infos,
  106. status: options.status || '',
  107. hasInstrument
  108. });
  109. }
  110. this.getOrderDetail()
  111. },
  112. onShow() {
  113. if (this.data.backParams) {
  114. // console.log(this.data.backParams, 'backParams'); // { key: 'value' }
  115. const backParams: any = this.data.backParams || {};
  116. this.setData({
  117. userBeneficiaryId: backParams.userBeneficiaryId,
  118. userBeneficiaryInfo: {
  119. name: backParams.name,
  120. phoneNumber: backParams.phone,
  121. schoolInfo: backParams.schoolInfo
  122. },
  123. backParams: null // 清空参数
  124. })
  125. }
  126. this.setData({
  127. serviceShow: true
  128. })
  129. },
  130. onHide() {
  131. this.setData({
  132. serviceShow: false
  133. })
  134. },
  135. /** 获取订单详情 */
  136. async getOrderDetail() {
  137. try {
  138. if (!this.data.goodsInfo.orderNo) return
  139. const { data } = await api_userPaymentOrderDetail(this.data.goodsInfo.orderNo, {
  140. version: 'V2'
  141. });
  142. // console.log(data, 'data')
  143. const result = data.data || {}
  144. const addresses: any = result.addresses
  145. const beneficiary: any = result.beneficiary
  146. const tempSchoolAddress = [beneficiary?.provinceName, beneficiary?.cityName, beneficiary?.regionName, beneficiary?.schoolAreaName, GRADE_ENUM[beneficiary?.currentGradeNum], beneficiary?.currentClass + '班']
  147. this.setData({
  148. receiveAddress: addresses?.id,
  149. receiveAddressInfo: {
  150. addressDetail: addresses?.detailAddress,
  151. name: addresses?.name,
  152. phoneNumber: addresses?.phoneNumber
  153. },
  154. userBeneficiaryId: beneficiary.schoolAreaId, // 添加购买人信息
  155. userBeneficiaryInfo: {
  156. name: beneficiary.name,
  157. phoneNumber: beneficiary.phone,
  158. schoolInfo: tempSchoolAddress.join('')
  159. },
  160. })
  161. } catch {
  162. //
  163. }
  164. },
  165. /** 地址列表 */
  166. async getAddresss() {
  167. try {
  168. const { data } = await api_userReceiveAddressPage({ page: 1, rows: -1 })
  169. this.setData({
  170. addressList: data.data.rows || []
  171. })
  172. } catch {
  173. //
  174. }
  175. },
  176. /** 获取省市区 */
  177. async getAreas() {
  178. try {
  179. const { data } = await api_sysAreaQueryAllProvince({})
  180. const areaList: any = this.formateArea(data.data)
  181. const currentValues = []
  182. if (areaList?.province_list) {
  183. // 获取第一个键值对
  184. const firstKey = Object.keys(areaList?.province_list)[0];
  185. // 通过键获取值
  186. const firstValue = areaList?.province_list[firstKey];
  187. currentValues.push({
  188. code: firstKey,
  189. name: firstValue
  190. })
  191. }
  192. if (areaList?.city_list) {
  193. // 获取第一个键值对
  194. const firstKey = Object.keys(areaList?.city_list)[0];
  195. // 通过键获取值
  196. const firstValue = areaList?.city_list[firstKey];
  197. currentValues.push({
  198. code: firstKey,
  199. name: firstValue
  200. })
  201. }
  202. if (areaList?.county_list) {
  203. // 获取第一个键值对
  204. const firstKey = Object.keys(areaList?.county_list)[0];
  205. // 通过键获取值
  206. const firstValue = areaList?.county_list[firstKey];
  207. currentValues.push({
  208. code: firstKey,
  209. name: firstValue
  210. })
  211. }
  212. this.setData({
  213. areaList,
  214. currentValues
  215. })
  216. } catch {
  217. //
  218. }
  219. },
  220. formateArea(area: any[]) {
  221. const province_list: { [_: string]: string } = {};
  222. const city_list: { [_: string]: string } = {};
  223. const county_list: { [_: string]: string } = {};
  224. area.forEach((item: any) => {
  225. province_list[item.code] = item.name;
  226. });
  227. area.forEach((item: any) => {
  228. item.areas && item.areas.forEach((city: any) => {
  229. city_list[city.code] = city.name;
  230. });
  231. });
  232. area.forEach((item: any) => {
  233. item.areas && item.areas.forEach((city: any) => {
  234. city.areas && city.areas.forEach((county: any) => {
  235. county_list[county.code] = county.name;
  236. });
  237. });
  238. });
  239. return {
  240. province_list,
  241. city_list,
  242. county_list
  243. };
  244. },
  245. // 获取后台配置的支付方式
  246. async queryPayType() {
  247. try {
  248. // wxlite_payment_service_provider
  249. const { data } = await api_queryByParamName({
  250. paramName: app.globalData.appId
  251. });
  252. if (data.code == 200) {
  253. const paramValue = data.data.paramValue ? JSON.parse(data.data.paramValue) : {}
  254. this.setData({
  255. paymentType: paramValue.vendor,
  256. paymentChannel: paramValue.channel
  257. });
  258. }
  259. } catch (error) {
  260. console.log(error, "error");
  261. }
  262. },
  263. onPayError(message?: string) {
  264. wx.hideLoading()
  265. wx.showToast({
  266. title: message || '支付取消',
  267. icon: 'none'
  268. })
  269. },
  270. // 购买
  271. async onSubmit() {
  272. if (!this.data.receiveAddress && this.data.hasInstrument) {
  273. wx.showToast({
  274. title: '请选择收货地址',
  275. icon: 'none'
  276. })
  277. return
  278. }
  279. if (!this.data.userBeneficiaryId) {
  280. wx.showToast({
  281. title: '请添加购买人',
  282. icon: 'none'
  283. })
  284. return
  285. }
  286. wx.showLoading({
  287. mask: true,
  288. title: "订单提交中...",
  289. });
  290. try {
  291. // const { salePrice, shopId, name, id, orderNo } = this.data.goodsInfo
  292. const { allSalePrice, shopId, name, orderNo, goodsList } = this.data.goodsInfo
  293. const goodsInfos: any = []
  294. goodsList.forEach((item: any) => {
  295. goodsInfos.push({
  296. "goodsId": item.id,
  297. "goodsNum": 1,
  298. "goodsType": item.goodsType,
  299. "paymentCashAmount": item.salePrice,
  300. "paymentCouponAmount": 0
  301. })
  302. })
  303. if (orderNo) {
  304. const { data } = await api_userPaymentOrderUnpaid({
  305. orderNo: orderNo,
  306. paymentType: 'WECHAT_MINI'
  307. })
  308. if (data.code === 200) {
  309. const { paymentConfig, paymentType, orderNo } = data.data.paymentConfig
  310. this.onExecutePay(paymentConfig, paymentType, orderNo)
  311. } else {
  312. this.onPayError()
  313. }
  314. } else {
  315. const { data } = await api_executeOrder({
  316. "orderType": "WECHAT_MINI",
  317. "paymentType": this.data.paymentType,
  318. "paymentCashAmount": allSalePrice,
  319. "paymentCouponAmount": 0,
  320. "shopId": shopId,
  321. "openId": app.globalData.userInfo?.liteOpenid,
  322. "goodsInfos": goodsInfos,
  323. receiveAddress: this.data.receiveAddress,
  324. userBeneficiaryId: this.data.userBeneficiaryId,
  325. "orderName": name,
  326. "orderDesc": name
  327. })
  328. if (data.code === 200) {
  329. const { paymentConfig, paymentType, orderNo } = data.data
  330. this.onExecutePay(paymentConfig, paymentType, orderNo)
  331. } else if (data.code === 5200) {
  332. wx.hideLoading()
  333. wx.showToast({
  334. title: data.message,
  335. icon: 'none'
  336. })
  337. } else {
  338. this.onPayError()
  339. }
  340. }
  341. } catch {
  342. wx.hideLoading()
  343. }
  344. },
  345. async onExecutePay(paymentConfig: any, paymentType: string, orderNo: string) {
  346. wx.login({
  347. success: async (wxres: any) => {
  348. const res = await api_executePayment({
  349. merOrderNo: paymentConfig.merOrderNo,
  350. paymentChannel: this.data.paymentChannel || 'wx_lite',
  351. paymentType,
  352. userId: app.globalData.userInfo?.id,
  353. code: wxres.code,
  354. wxMiniAppId: app.globalData.appId
  355. })
  356. wx.hideLoading()
  357. if (res.data.code === 200) {
  358. this.onPay(paymentType, res.data.data.reqParams, orderNo)
  359. } else {
  360. this.onPayError(res.data.message)
  361. }
  362. },
  363. fail: () => {
  364. this.onPayError()
  365. }
  366. })
  367. },
  368. onPay(paymentType: string, paymentConfig: any, orderNo: string) {
  369. const isYeePay = paymentType.indexOf('yeepay') !== -1
  370. const prePayInfo = isYeePay ? JSON.parse(paymentConfig.prePayTn)
  371. : paymentConfig?.expend
  372. ? JSON.parse(paymentConfig?.expend?.pay_info)
  373. : paymentConfig
  374. const that = this
  375. wx.requestPayment({
  376. timeStamp: prePayInfo.timeStamp,
  377. nonceStr: prePayInfo.nonceStr,
  378. package: prePayInfo.package ? prePayInfo.package : prePayInfo.packageValue,
  379. paySign: prePayInfo.paySign,
  380. signType: prePayInfo.signType ? prePayInfo.signType : 'MD5',
  381. success() {
  382. wx.showToast({ title: '支付成功', icon: 'success' });
  383. wx.redirectTo({
  384. url: '/pages/orders/order-result?orderNo=' + orderNo
  385. })
  386. },
  387. fail(ressonInfo) {
  388. console.log('支付失败', ressonInfo)
  389. that.onPayError()
  390. const goodsInfo = that.data.goodsInfo
  391. goodsInfo.orderNo = orderNo
  392. that.setData({
  393. goodsInfo
  394. })
  395. }
  396. })
  397. },
  398. /** 客服 */
  399. onService() {
  400. // console.log("showService")
  401. this.setData({
  402. showService: true
  403. })
  404. },
  405. changePop(event: { detail: any }) {
  406. this.setData({
  407. showService: event.detail
  408. })
  409. },
  410. /** 选择收货地址 */
  411. onTagAddress() {
  412. if(this.data.goodsInfo.orderNo) return
  413. if (this.data.addressList.length > 0) {
  414. this.onShowAddressList()
  415. } else {
  416. this.onShowAddress()
  417. }
  418. },
  419. /** 显示添加/修改地址 */
  420. onShowAddress() {
  421. this.setData({
  422. addressShow: true
  423. })
  424. },
  425. /** 关闭添加/修改地址 */
  426. onCloseAddress() {
  427. this.setData({
  428. addressShow: false,
  429. id: "",
  430. name: '',
  431. phoneNumber: '',
  432. detailAddress: '',
  433. cityCode: 0,
  434. cityName: "",
  435. provinceCode: 0,
  436. provinceName: "",
  437. regionCode: null,
  438. regionName: "",
  439. })
  440. },
  441. /** 显示收货地址 */
  442. onShowAddressList() {
  443. this.setData({
  444. addressListShow: true
  445. })
  446. },
  447. /** 关闭收货地址 */
  448. onCloseAddressList() {
  449. this.setData({
  450. addressListShow: false
  451. })
  452. },
  453. /** 添加购买人 */
  454. onAddBuyer() {
  455. wx.navigateTo({
  456. url: "../buyerInformation/index?userBeneficiaryId=" + this.data.userBeneficiaryId,
  457. });
  458. },
  459. /** 显示选择地区 */
  460. onShowAreaList() {
  461. this.setData({
  462. showArea: true
  463. })
  464. },
  465. /** 关闭选择地区 */
  466. onCloseAreaList() {
  467. this.setData({
  468. showArea: false
  469. })
  470. },
  471. /** 确定选择地区 */
  472. submitArea() {
  473. const selectedOptions = this.data.currentValues
  474. this.setData({
  475. provinceCode: selectedOptions[0].code,
  476. cityCode: selectedOptions[1].code,
  477. regionCode: selectedOptions[2].code,
  478. provinceName: selectedOptions[0].name,
  479. cityName: selectedOptions[1].name,
  480. regionName: selectedOptions[2].name,
  481. showArea: false
  482. })
  483. },
  484. // cancelArea() {
  485. // this.setData({ showArea: false })
  486. // },
  487. // confirmArea(event: any) {
  488. // console.log(event)
  489. // // const selectedOptions = event.detail.values
  490. // const selectedOptions = this.data.currentValues
  491. // this.setData({
  492. // provinceCode: selectedOptions[0].code,
  493. // cityCode: selectedOptions[1].code,
  494. // regionCode: selectedOptions[2].code,
  495. // provinceName: selectedOptions[0].name,
  496. // cityName: selectedOptions[1].name,
  497. // regionName: selectedOptions[2].name,
  498. // showArea: false,
  499. // areaComponent: null as any
  500. // })
  501. // // forms.provinceCode = selectedOptions[0].value;
  502. // // forms.cityCode = selectedOptions[1].value;
  503. // // forms.regionCode = selectedOptions[2].value;
  504. // // data.cityName = selectedOptions
  505. // // .map((item: any) => item.text)
  506. // // .join('-');
  507. // // data.showArea = false;
  508. // // }}
  509. // },
  510. changeArea(e: any) {
  511. console.log(e.detail.values, 'e.detail.values')
  512. this.setData({
  513. currentValues: e.detail.values
  514. })
  515. },
  516. /** 创建/修改收货地址 */
  517. async onOperationAddress() {
  518. const addressForm = this.data
  519. try {
  520. if (!addressForm.name) {
  521. wx.showToast({
  522. title: '请输入收货人姓名',
  523. icon: "none"
  524. })
  525. return
  526. }
  527. if (!addressForm.phoneNumber || !/^1[3456789]\d{9}$/.test(addressForm.phoneNumber)) {
  528. wx.showToast({
  529. title: '请输入正确的手机号',
  530. icon: "none"
  531. })
  532. return
  533. }
  534. if (!addressForm.provinceCode || !addressForm.cityCode || !addressForm.regionCode) {
  535. wx.showToast({
  536. title: '请选择地区',
  537. icon: "none"
  538. })
  539. return
  540. }
  541. if (!addressForm.detailAddress) {
  542. wx.showToast({
  543. title: '请输入详细地址',
  544. icon: "none"
  545. })
  546. return
  547. }
  548. if (addressForm.id) {
  549. await api_userReceiveAddressUpdate({
  550. id: addressForm.id,
  551. name: addressForm.name,
  552. phoneNumber: addressForm.phoneNumber,
  553. province: addressForm.provinceCode,
  554. city: addressForm.cityCode,
  555. region: addressForm.regionCode,
  556. detailAddress: addressForm.detailAddress
  557. })
  558. this.getAddresss()
  559. this.onCloseAddress()
  560. } else {
  561. const { data } = await api_userReceiveAddressSave({
  562. name: addressForm.name,
  563. phoneNumber: addressForm.phoneNumber,
  564. province: addressForm.provinceCode,
  565. city: addressForm.cityCode,
  566. region: addressForm.regionCode,
  567. detailAddress: addressForm.detailAddress
  568. })
  569. this.setData({
  570. receiveAddress: this.data.receiveAddress || data.data,
  571. 'receiveAddressInfo.addressDetail': addressForm.provinceName + addressForm.cityName + addressForm.regionName + addressForm.detailAddress,
  572. 'receiveAddressInfo.name': addressForm.name,
  573. 'receiveAddressInfo.phoneNumber': addressForm.phoneNumber
  574. })
  575. this.getAddresss()
  576. this.onCloseAddress()
  577. }
  578. } catch {
  579. //
  580. }
  581. },
  582. /** 选择地址 */
  583. onSelectAddress(e: any) {
  584. const id = e.currentTarget.dataset.id
  585. const addressInfo = this.data.addressList.find((item: any) => item.id === id)
  586. this.setData({
  587. receiveAddress: addressInfo.id,
  588. 'receiveAddressInfo.addressDetail': addressInfo.provinceName + addressInfo.cityName + addressInfo.regionName + addressInfo.detailAddress,
  589. 'receiveAddressInfo.name': addressInfo.name,
  590. 'receiveAddressInfo.phoneNumber': addressInfo.phoneNumber,
  591. addressListShow: false
  592. })
  593. },
  594. /** Dialog 确定 */
  595. async onDialogConfirm() {
  596. try {
  597. await api_userReceiveAddressRemove({
  598. id: this.data.selectAddressId
  599. })
  600. this.getAddresss()
  601. // 如果删除的是已经选中的地址,则需要重置数据
  602. if (this.data.selectAddressId === this.data.receiveAddress) {
  603. this.setData({
  604. selectAddressId: '',
  605. receiveAddress: '',
  606. 'receiveAddressInfo.name': '',
  607. 'receiveAddressInfo.phoneNumber': '',
  608. 'receiveAddressInfo.addressDetail': ''
  609. })
  610. }
  611. this.onDialogClose()
  612. } catch {
  613. }
  614. },
  615. /** Dialog 隐藏 */
  616. onDialogClose() {
  617. this.setData({
  618. showDialog: false
  619. })
  620. },
  621. /** 删除地址 */
  622. onRemoveAddress(e: any) {
  623. this.setData({
  624. showDialog: true,
  625. selectAddressId: e.target.dataset.id
  626. })
  627. },
  628. /** 修改地址 */
  629. onUpdateAddress(e: any) {
  630. const id = e.target.dataset.id
  631. const addressInfo = this.data.addressList.find((item: any) => item.id === id)
  632. this.setData({
  633. addressShow: true,
  634. id: addressInfo.id,
  635. name: addressInfo.name,
  636. phoneNumber: addressInfo.phoneNumber,
  637. detailAddress: addressInfo.detailAddress,
  638. cityCode: addressInfo.city,
  639. cityName: addressInfo.cityName,
  640. provinceCode: addressInfo.province,
  641. provinceName: addressInfo.provinceName,
  642. regionCode: addressInfo.region,
  643. regionName: addressInfo.regionName,
  644. })
  645. },
  646. /**
  647. * 生命周期函数--监听页面初次渲染完成
  648. */
  649. onReady() {
  650. },
  651. /**
  652. * 生命周期函数--监听页面卸载
  653. */
  654. onUnload() {
  655. },
  656. /**
  657. * 页面相关事件处理函数--监听用户下拉动作
  658. */
  659. onPullDownRefresh() {
  660. },
  661. /**
  662. * 页面上拉触底事件的处理函数
  663. */
  664. onReachBottom() {
  665. },
  666. /**
  667. * 用户点击右上角分享
  668. */
  669. onShareAppMessage() {
  670. return {
  671. title: '音乐数字AI',
  672. path: '/pages/index/index',
  673. imageUrl: 'https://oss.dayaedu.com/ktyq/1733309357691.png'
  674. }
  675. }
  676. })