order-detail.ts 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720
  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 if([5435, 5436, 5437, 5439, 5442, 5443, 5408, 5427, 5432].includes(data.code)) {
  338. wx.hideLoading()
  339. wx.showToast({
  340. title: data.message,
  341. icon: 'none'
  342. })
  343. wx.navigateBack()
  344. } else {
  345. this.onPayError()
  346. }
  347. }
  348. } catch(e) {
  349. wx.hideLoading()
  350. }
  351. },
  352. async onExecutePay(paymentConfig: any, paymentType: string, orderNo: string) {
  353. wx.login({
  354. success: async (wxres: any) => {
  355. const res = await api_executePayment({
  356. merOrderNo: paymentConfig.merOrderNo,
  357. paymentChannel: this.data.paymentChannel || 'wx_lite',
  358. paymentType,
  359. userId: app.globalData.userInfo?.id,
  360. code: wxres.code,
  361. wxMiniAppId: app.globalData.appId
  362. })
  363. wx.hideLoading()
  364. if (res.data.code === 200) {
  365. this.onPay(paymentType, res.data.data.reqParams, orderNo)
  366. } else if([5435, 5436, 5437, 5439, 5442, 5443, 5408, 5427, 5432].includes(res.data.code)) {
  367. wx.hideLoading()
  368. wx.showToast({
  369. title: res.data.message,
  370. icon: 'none'
  371. })
  372. wx.navigateBack()
  373. } else {
  374. this.onPayError(res.data.message)
  375. }
  376. },
  377. fail: () => {
  378. this.onPayError()
  379. }
  380. })
  381. },
  382. onPay(paymentType: string, paymentConfig: any, orderNo: string) {
  383. const isYeePay = paymentType.indexOf('yeepay') !== -1
  384. const prePayInfo = isYeePay ? JSON.parse(paymentConfig.prePayTn)
  385. : paymentConfig?.expend
  386. ? JSON.parse(paymentConfig?.expend?.pay_info)
  387. : paymentConfig
  388. const that = this
  389. wx.requestPayment({
  390. timeStamp: prePayInfo.timeStamp,
  391. nonceStr: prePayInfo.nonceStr,
  392. package: prePayInfo.package ? prePayInfo.package : prePayInfo.packageValue,
  393. paySign: prePayInfo.paySign,
  394. signType: prePayInfo.signType ? prePayInfo.signType : 'MD5',
  395. success() {
  396. wx.showToast({ title: '支付成功', icon: 'success' });
  397. wx.redirectTo({
  398. url: '/pages/orders/order-result?orderNo=' + orderNo
  399. })
  400. },
  401. fail(ressonInfo) {
  402. console.log('支付失败', ressonInfo)
  403. that.onPayError()
  404. const goodsInfo = that.data.goodsInfo
  405. goodsInfo.orderNo = orderNo
  406. that.setData({
  407. goodsInfo
  408. })
  409. }
  410. })
  411. },
  412. /** 客服 */
  413. onService() {
  414. // console.log("showService")
  415. this.setData({
  416. showService: true
  417. })
  418. },
  419. changePop(event: { detail: any }) {
  420. this.setData({
  421. showService: event.detail
  422. })
  423. },
  424. /** 选择收货地址 */
  425. onTagAddress() {
  426. if(this.data.goodsInfo.orderNo) return
  427. if (this.data.addressList.length > 0) {
  428. this.onShowAddressList()
  429. } else {
  430. this.onShowAddress()
  431. }
  432. },
  433. /** 显示添加/修改地址 */
  434. onShowAddress() {
  435. this.setData({
  436. addressShow: true
  437. })
  438. },
  439. /** 关闭添加/修改地址 */
  440. onCloseAddress() {
  441. this.setData({
  442. addressShow: false,
  443. id: "",
  444. name: '',
  445. phoneNumber: '',
  446. detailAddress: '',
  447. cityCode: 0,
  448. cityName: "",
  449. provinceCode: 0,
  450. provinceName: "",
  451. regionCode: null,
  452. regionName: "",
  453. })
  454. },
  455. /** 显示收货地址 */
  456. onShowAddressList() {
  457. this.setData({
  458. addressListShow: true
  459. })
  460. },
  461. /** 关闭收货地址 */
  462. onCloseAddressList() {
  463. this.setData({
  464. addressListShow: false
  465. })
  466. },
  467. /** 添加购买人 */
  468. onAddBuyer() {
  469. wx.navigateTo({
  470. url: "../buyerInformation/index?userBeneficiaryId=" + this.data.userBeneficiaryId,
  471. });
  472. },
  473. /** 显示选择地区 */
  474. onShowAreaList() {
  475. this.setData({
  476. showArea: true
  477. })
  478. },
  479. /** 关闭选择地区 */
  480. onCloseAreaList() {
  481. this.setData({
  482. showArea: false
  483. })
  484. },
  485. /** 确定选择地区 */
  486. submitArea() {
  487. const selectedOptions = this.data.currentValues
  488. this.setData({
  489. provinceCode: selectedOptions[0].code,
  490. cityCode: selectedOptions[1].code,
  491. regionCode: selectedOptions[2].code,
  492. provinceName: selectedOptions[0].name,
  493. cityName: selectedOptions[1].name,
  494. regionName: selectedOptions[2].name,
  495. showArea: false
  496. })
  497. },
  498. // cancelArea() {
  499. // this.setData({ showArea: false })
  500. // },
  501. // confirmArea(event: any) {
  502. // console.log(event)
  503. // // const selectedOptions = event.detail.values
  504. // const selectedOptions = this.data.currentValues
  505. // this.setData({
  506. // provinceCode: selectedOptions[0].code,
  507. // cityCode: selectedOptions[1].code,
  508. // regionCode: selectedOptions[2].code,
  509. // provinceName: selectedOptions[0].name,
  510. // cityName: selectedOptions[1].name,
  511. // regionName: selectedOptions[2].name,
  512. // showArea: false,
  513. // areaComponent: null as any
  514. // })
  515. // // forms.provinceCode = selectedOptions[0].value;
  516. // // forms.cityCode = selectedOptions[1].value;
  517. // // forms.regionCode = selectedOptions[2].value;
  518. // // data.cityName = selectedOptions
  519. // // .map((item: any) => item.text)
  520. // // .join('-');
  521. // // data.showArea = false;
  522. // // }}
  523. // },
  524. changeArea(e: any) {
  525. console.log(e.detail.values, 'e.detail.values')
  526. this.setData({
  527. currentValues: e.detail.values
  528. })
  529. },
  530. /** 创建/修改收货地址 */
  531. async onOperationAddress() {
  532. const addressForm = this.data
  533. try {
  534. if (!addressForm.name) {
  535. wx.showToast({
  536. title: '请输入收货人姓名',
  537. icon: "none"
  538. })
  539. return
  540. }
  541. if (!addressForm.phoneNumber || !/^1[3456789]\d{9}$/.test(addressForm.phoneNumber)) {
  542. wx.showToast({
  543. title: '请输入正确的手机号',
  544. icon: "none"
  545. })
  546. return
  547. }
  548. if (!addressForm.provinceCode || !addressForm.cityCode || !addressForm.regionCode) {
  549. wx.showToast({
  550. title: '请选择地区',
  551. icon: "none"
  552. })
  553. return
  554. }
  555. if (!addressForm.detailAddress) {
  556. wx.showToast({
  557. title: '请输入详细地址',
  558. icon: "none"
  559. })
  560. return
  561. }
  562. if (addressForm.id) {
  563. await api_userReceiveAddressUpdate({
  564. id: addressForm.id,
  565. name: addressForm.name,
  566. phoneNumber: addressForm.phoneNumber,
  567. province: addressForm.provinceCode,
  568. city: addressForm.cityCode,
  569. region: addressForm.regionCode,
  570. detailAddress: addressForm.detailAddress
  571. })
  572. this.getAddresss()
  573. this.onCloseAddress()
  574. } else {
  575. const { data } = await api_userReceiveAddressSave({
  576. name: addressForm.name,
  577. phoneNumber: addressForm.phoneNumber,
  578. province: addressForm.provinceCode,
  579. city: addressForm.cityCode,
  580. region: addressForm.regionCode,
  581. detailAddress: addressForm.detailAddress
  582. })
  583. this.setData({
  584. receiveAddress: this.data.receiveAddress || data.data,
  585. 'receiveAddressInfo.addressDetail': addressForm.provinceName + addressForm.cityName + addressForm.regionName + addressForm.detailAddress,
  586. 'receiveAddressInfo.name': addressForm.name,
  587. 'receiveAddressInfo.phoneNumber': addressForm.phoneNumber
  588. })
  589. this.getAddresss()
  590. this.onCloseAddress()
  591. }
  592. } catch {
  593. //
  594. }
  595. },
  596. /** 选择地址 */
  597. onSelectAddress(e: any) {
  598. const id = e.currentTarget.dataset.id
  599. const addressInfo = this.data.addressList.find((item: any) => item.id === id)
  600. this.setData({
  601. receiveAddress: addressInfo.id,
  602. 'receiveAddressInfo.addressDetail': addressInfo.provinceName + addressInfo.cityName + addressInfo.regionName + addressInfo.detailAddress,
  603. 'receiveAddressInfo.name': addressInfo.name,
  604. 'receiveAddressInfo.phoneNumber': addressInfo.phoneNumber,
  605. addressListShow: false
  606. })
  607. },
  608. /** Dialog 确定 */
  609. async onDialogConfirm() {
  610. try {
  611. await api_userReceiveAddressRemove({
  612. id: this.data.selectAddressId
  613. })
  614. this.getAddresss()
  615. // 如果删除的是已经选中的地址,则需要重置数据
  616. if (this.data.selectAddressId === this.data.receiveAddress) {
  617. this.setData({
  618. selectAddressId: '',
  619. receiveAddress: '',
  620. 'receiveAddressInfo.name': '',
  621. 'receiveAddressInfo.phoneNumber': '',
  622. 'receiveAddressInfo.addressDetail': ''
  623. })
  624. }
  625. this.onDialogClose()
  626. } catch {
  627. }
  628. },
  629. /** Dialog 隐藏 */
  630. onDialogClose() {
  631. this.setData({
  632. showDialog: false
  633. })
  634. },
  635. /** 删除地址 */
  636. onRemoveAddress(e: any) {
  637. this.setData({
  638. showDialog: true,
  639. selectAddressId: e.target.dataset.id
  640. })
  641. },
  642. /** 修改地址 */
  643. onUpdateAddress(e: any) {
  644. const id = e.target.dataset.id
  645. const addressInfo = this.data.addressList.find((item: any) => item.id === id)
  646. this.setData({
  647. addressShow: true,
  648. id: addressInfo.id,
  649. name: addressInfo.name,
  650. phoneNumber: addressInfo.phoneNumber,
  651. detailAddress: addressInfo.detailAddress,
  652. cityCode: addressInfo.city,
  653. cityName: addressInfo.cityName,
  654. provinceCode: addressInfo.province,
  655. provinceName: addressInfo.provinceName,
  656. regionCode: addressInfo.region,
  657. regionName: addressInfo.regionName,
  658. })
  659. },
  660. /**
  661. * 生命周期函数--监听页面初次渲染完成
  662. */
  663. onReady() {
  664. },
  665. /**
  666. * 生命周期函数--监听页面卸载
  667. */
  668. onUnload() {
  669. },
  670. /**
  671. * 页面相关事件处理函数--监听用户下拉动作
  672. */
  673. onPullDownRefresh() {
  674. },
  675. /**
  676. * 页面上拉触底事件的处理函数
  677. */
  678. onReachBottom() {
  679. },
  680. /**
  681. * 用户点击右上角分享
  682. */
  683. onShareAppMessage() {
  684. return {
  685. title: '音乐数字AI',
  686. path: '/pages/index/index',
  687. imageUrl: 'https://oss.dayaedu.com/ktyq/1733309357691.png'
  688. }
  689. }
  690. })