index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638
  1. <template>
  2. <view>
  3. <view class="content">
  4. <view class="goodsList" v-for="(item,index) in goodsList" :key="index">
  5. <!-- <view class="order-time">剩余付款时间:{{item.time}}</view> -->
  6. <view class="goods-content">
  7. <view class="original-info">
  8. <view class="original-img">
  9. <img :src="item.list[item.indexs].logo" alt="">
  10. </view>
  11. <view class="original-texts">
  12. <view class="original-name">{{item.list[item.indexs].title}}</view>
  13. <view class="original-price-scope">
  14. <view class="original-text">价格范围</view>
  15. <view class="original-price">
  16. {{item.list[item.indexs].ladder_set[item.checkIndexs].title}}
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="order-texts">原始照片</view>
  22. <view class="contents">
  23. <view class="photo-imgs" v-for="(items,index) in item.imageLiss">
  24. <view class="original-img" v-if="items">
  25. <img :src="items" alt="">
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. <view class="remark">
  31. 备注:{{item.remark}}
  32. </view>
  33. <view class="bottoms">
  34. <view style="color: #222;font-size: 24rpx">实付款</view>
  35. <view class="money">¥<span>{{item.list[item.indexs].ladder_set[item.checkIndexs].price}}</span></view>
  36. </view>
  37. </view>
  38. <view class="user-info">
  39. <view class="title">
  40. 填写收货地址
  41. </view>
  42. <view style="height: 20rpx;"></view>
  43. <view class="views" >
  44. <view class="name">收货人</view>
  45. <view class="input" >
  46. <input v-model="from.userName" style="margin-left: 55rpx;" type="text" class="inputs" placeholder="填写姓名"/>
  47. </view>
  48. </view>
  49. <view class="views">
  50. <view class="name">联系电话</view>
  51. <view class="input">
  52. <input maxlength="11" v-model="from.userPhone" class="inputs" type="number" placeholder="填写手机号"/>
  53. </view>
  54. </view>
  55. <pick-regions :defaultRegion="defaultRegionCode" @getRegion="handleGetRegion">
  56. <view class="views">
  57. <view class="name">所在区域</view>
  58. <view class="input">
  59. <input disabled="disabled" v-model="from.address" class="inputs" placeholder="选择收件地区(省、市、区)"/>
  60. </view>
  61. </view>
  62. </pick-regions>
  63. <view class="views">
  64. <view class="name">详细地址</view>
  65. <view class="input">
  66. <input v-model="from.addDetail" class="inputs" placeholder="例如门牌号、小区、楼层等"/>
  67. </view>
  68. </view>
  69. </view>
  70. <!-- <view class="goods-infos">
  71. <view class="goods-img">
  72. <image :src="goods.cover"></image>
  73. </view>
  74. <view class="goods-right">
  75. <view class="goods-name overflow2">{{goodsInfo.name}} {{goodsInfo.desc}}</view>
  76. <view class="goods-rule">{{goods.goods_spec}}</view>
  77. </view>
  78. </view> -->
  79. <view class="pay" >
  80. <view class="wx-icon">
  81. <image src="../../static/index/wxIcon.png"></image>
  82. </view>
  83. <view class="texts" style="flex:1">微信支付</view>
  84. <view class="wxIcon">
  85. <image src="../../static/index/check-icons.png"></image>
  86. </view>
  87. </view>
  88. <view style="height: 200rpx;"></view>
  89. </view>
  90. <view class="pay-bottom">
  91. <view class="money">实付款:<span>¥<span style="font-size: 40rpx;">{{price}}</span></span></view>
  92. <view class="button" @click="$global.clicks(pay)">立即购买</view>
  93. </view>
  94. </view>
  95. </template>
  96. <script>
  97. import api from 'utils/api'
  98. import pickRegions from '@/components/pick-regions/pick-regions.vue'
  99. export default {
  100. components:{pickRegions},
  101. data() {
  102. return {
  103. goodsList:[
  104. {
  105. image:"url",
  106. name:"运动鞋",
  107. price:2000,
  108. remark:'备注111',
  109. money:500,
  110. time:"25分32秒",
  111. photo:["1","2","3"]
  112. },
  113. {
  114. image:"url",
  115. name:"运动鞋",
  116. price:2000,
  117. remark:'备注111',
  118. money:500,
  119. time:"25分32秒",
  120. photo:["1","2","3"]
  121. },
  122. ],
  123. from:{
  124. "userName":"",
  125. "userPhone":"",
  126. "userDetail":"",
  127. "proName":"",
  128. "cityName":"",
  129. "countyName":"",
  130. "addDetail":"",
  131. "remark":"",
  132. "address":""
  133. },
  134. pickerValueDefault: [0, 0, 0],
  135. pickerText: '',
  136. status:0,//0代表是预约 1代表下单购买
  137. goods:'',
  138. region:[],
  139. goodsInfo:'',
  140. price:'',
  141. }
  142. },
  143. onShow() {
  144. this.getUserInfo();
  145. },
  146. onLoad(options) {
  147. let goods=JSON.parse(uni.getStorageSync("goodsList"))
  148. if(goods){
  149. this.goodsList=goods;
  150. let arr = {};
  151. let arrs=[];
  152. console.error(goods)
  153. }
  154. if(options){
  155. this.price=options.price
  156. }
  157. let infos=uni.getStorageSync("userInfo")
  158. if(infos){
  159. this.from.userName=infos.userName
  160. this.from.userPhone=infos.userPhone
  161. this.from.userDetail=infos.userDetail
  162. this.from.proName=infos.proName
  163. this.from.cityName=infos.cityName
  164. this.from.countyName=infos.countyName
  165. this.from.addDetail=infos.addDetail
  166. this.from.remark=infos.remark
  167. this.from.address=infos.address
  168. }
  169. // this.getAddress()
  170. },
  171. onUnload() {
  172. let from=this.from;
  173. uni.setStorageSync("userInfo",from)
  174. },
  175. methods: {
  176. //获取用户信息
  177. getUserInfo(){
  178. api.getUserInfo().then((res)=>{
  179. console.error(res)
  180. if(res.code==1){
  181. this.userInfos=res.data.detail
  182. }
  183. })
  184. },
  185. tojson(arr){
  186. if(!arr.length) return null;
  187. var i = 0;
  188. len = arr.length,
  189. array = [];
  190. for(;i<len;i++){
  191. array.push({"projectname":arr[i][0],"projectnumber":arr[i][1]});
  192. }
  193. return JSON.stringify(array);
  194. },
  195. //下单
  196. pay(){
  197. let from=this.from;
  198. if(from.userName==''){
  199. uni.showToast({
  200. icon:"none",
  201. title:"请输入姓名"
  202. })
  203. return;
  204. }
  205. if(from.userPhone==''){
  206. uni.showToast({
  207. icon:"none",
  208. title:"请输入手机号"
  209. })
  210. return;
  211. }
  212. if(!(/^1[3456789]\d{9}$/.test(from.userPhone))){
  213. uni.showToast({
  214. icon:"none",
  215. title:"请输入正确的手机号"
  216. })
  217. return;
  218. }
  219. if(from.address==''){
  220. uni.showToast({
  221. icon:"none",
  222. title:"请选择区域"
  223. })
  224. return;
  225. }
  226. if(from.addDetail==''){
  227. uni.showToast({
  228. icon:"none",
  229. title:"请输入详细地址"
  230. })
  231. return;
  232. }
  233. let data={
  234. "goods_json":"",
  235. "pro_name":from.proName,
  236. "city_name":from.cityName,
  237. "county_name":from.countyName,
  238. "add_detail":from.addDetail,
  239. "phone":from.userPhone,
  240. "user_name":from.userName,
  241. "remark":from.remark,
  242. }
  243. let goodsList=this.goodsList;
  244. let data_ss=[];
  245. let lists="";
  246. let arr=[];
  247. for(let i=0;i<goodsList.length;i++){
  248. let index_s=goodsList[i].indexs
  249. let _index=goodsList[i].checkIndexs
  250. lists={"cate_id":goodsList[i].list[index_s].id,
  251. ladder_key:goodsList[i].list[index_s].ladder_set[_index].ladder_key,
  252. images:goodsList[i].imageLiss?goodsList[i].imageLiss.join(','):[],remark:goodsList[i].remark}
  253. data_ss.push(lists)
  254. }
  255. data.goods_json=JSON.stringify(data_ss)
  256. api.createOrders(data).then((res)=>{
  257. if(res.code==1){
  258. api.payOrders({"order_id":res.data.order_id}).then((ret)=>{
  259. if(ret.code==1){
  260. let config=ret.data.config.config;
  261. uni.requestPayment({
  262. provider: 'wxpay',
  263. timeStamp: config.timestamp,
  264. nonceStr: config.nonceStr,
  265. package: config.package,
  266. signType: config.signType,
  267. paySign: config.paySign,
  268. success: function(res) {
  269. uni.showToast({
  270. icon:"none",
  271. title:"支付成功"
  272. })
  273. uni.navigateTo({
  274. url:"/pages/orderSuccess/index"
  275. })
  276. },
  277. fail: function(res) {
  278. uni.showToast({
  279. icon:"none",
  280. title:"支付失败"
  281. })
  282. },
  283. complete: function(res) {
  284. uni.showToast({
  285. icon:"none",
  286. title:"支付取消"
  287. })
  288. }
  289. });
  290. }
  291. })
  292. }
  293. })
  294. },
  295. handleGetRegion(e){
  296. this.region = e
  297. // e 确认后选中的数据
  298. this.pickerText = JSON.stringify(e)
  299. this.from.proName=e[0].name;
  300. this.from.cityName=e[1].name;
  301. this.from.countyName=e[2].name;
  302. this.from.address=e[0].name+','+e[1].name+','+e[2].name
  303. },
  304. getAddress(){
  305. api.getAreaTree({"level":3}).then((res)=>{
  306. if(res.code==1){
  307. this.treeData=res.data.list;
  308. console.error(res.data.list)
  309. }
  310. })
  311. },
  312. //预约订单
  313. submit(){
  314. let from=this.from;
  315. if(from.userName==''){
  316. uni.showToast({
  317. icon:"none",
  318. title:"请输入姓名"
  319. })
  320. return;
  321. }
  322. if(from.userPhone==''){
  323. uni.showToast({
  324. icon:"none",
  325. title:"请输入手机号"
  326. })
  327. return;
  328. }
  329. if(!(/^1[3456789]\d{9}$/.test(from.userPhone))){
  330. uni.showToast({
  331. icon:"none",
  332. title:"请输入正确的手机号"
  333. })
  334. return;
  335. }
  336. if(from.address==''){
  337. uni.showToast({
  338. icon:"none",
  339. title:"请选择区域"
  340. })
  341. return;
  342. }
  343. if(from.addDetail==''){
  344. uni.showToast({
  345. icon:"none",
  346. title:"请输入详细地址"
  347. })
  348. return;
  349. }
  350. let data={
  351. "goods_id":this.goodsInfo.id,
  352. "spec_id":this.goods.id,
  353. "pro_name":from.proName,
  354. "city_name":from.cityName,
  355. "county_name":from.countyName,
  356. "add_detail":from.addDetail,
  357. "phone":from.userPhone,
  358. "user_name":from.userName,
  359. "remark":from.remark,
  360. }
  361. api.makeAppointment(data).then((res)=>{
  362. if(res.code==1){
  363. uni.showToast({
  364. icon:"none",
  365. title:"预约成功",
  366. success() {
  367. setTimeout(()=>{
  368. uni.navigateTo({
  369. url:"/pages/subscribe/index"
  370. })
  371. },2000)
  372. }
  373. })
  374. }
  375. })
  376. },
  377. }
  378. }
  379. </script>
  380. <style lang="scss">
  381. .wxIcon{
  382. margin-right: 32rpx;
  383. image{
  384. width: 32rpx;
  385. height: 32rpx;
  386. }
  387. }
  388. .bottoms{
  389. display: flex;
  390. justify-content: space-between;
  391. padding:30rpx;
  392. .money{
  393. font-size: 28rpx;
  394. color: #222;
  395. span{
  396. font-size: 40rpx;
  397. font-weight: 600;
  398. }
  399. }
  400. }
  401. .goodsList{
  402. width: 686rpx;
  403. // height: 400rpx;
  404. background: #FFFFFF;
  405. box-shadow: 0px 2rpx 6rpx 0px rgba(231,231,231,0.41);
  406. border-radius: 16rpx;
  407. margin-bottom: 25rpx;
  408. .goods-content{
  409. padding: 30rpx 30rpx 30rpx 14rpx;
  410. .contents{
  411. display: flex;
  412. flex-wrap: wrap;
  413. .photo-imgs{
  414. .original-img{
  415. margin-left: 16rpx;
  416. img{
  417. width: 128rpx;
  418. height: 128rpx;
  419. border-radius: 8rpx;
  420. }
  421. }
  422. }
  423. }
  424. .goods-contents{
  425. }
  426. .order-texts{
  427. color: #555;
  428. font-size: 24rpx;
  429. margin: 16rpx 0 8rpx 14rpx;
  430. }
  431. .original-info{
  432. display: flex;
  433. margin-left: 14rpx;
  434. .original-img{
  435. img{
  436. width: 128rpx;
  437. height: 128rpx;
  438. }
  439. }
  440. .original-texts{
  441. margin-left: 16rpx;
  442. .original-name{
  443. color: #222;
  444. font-size: 28rpx;
  445. margin-top: 20rpx;
  446. }
  447. .original-price-scope{
  448. display: flex;
  449. margin-top: 15rpx;
  450. .original-text{
  451. color: #555;
  452. font-size: 24rpx;
  453. }
  454. .original-price{
  455. width: 132rpx;
  456. height: 32rpx;
  457. background: #222222;
  458. border-radius: 8rpx;
  459. color: #fff;
  460. text-align: center;
  461. line-height: 32rpx;
  462. font-size: 20rpx;
  463. margin-left: 30rpx;
  464. }
  465. }
  466. }
  467. }
  468. }
  469. .order-time{
  470. border-radius: 16rpx 16rpx 0 0 ;
  471. height: 64rpx;
  472. background-color: #222;
  473. font-size: 28rpx;
  474. color: #fff;
  475. line-height: 64rpx;
  476. padding-left: 32rpx;
  477. }
  478. }
  479. .pay-bottom{
  480. width: 100%;
  481. height: 110rpx;
  482. background: #FFFFFF;
  483. position: fixed;
  484. z-index: 111;
  485. justify-content: space-between;
  486. bottom: 0;
  487. display: flex;
  488. padding: 40rpx 20rpx 0 20rpx;
  489. .button{
  490. text-align: center;
  491. color: #fff;
  492. font-size: 32rpx;
  493. line-height: 80rpx;
  494. width: 320rpx;
  495. height: 80rpx;
  496. background: #222222;
  497. margin-right: 50rpx;
  498. }
  499. .money{
  500. text-align: right;
  501. flex: 1;
  502. margin-right: 20rpx;
  503. //margin-left: 120rpx;
  504. color: #222;
  505. font-size: 24rpx;
  506. margin-top: 15rpx;
  507. span{
  508. font-size: 28rpx;
  509. font-weight: bold;
  510. }
  511. }
  512. }
  513. .content{
  514. padding: 30rpx;
  515. .pay{
  516. height: 90rpx;
  517. background: #FFFFFF;
  518. box-shadow: 0px 4rpx 12rpx 0px rgba(231,231,231,0.41);
  519. border-radius: 16rpx;
  520. display: flex;
  521. margin: 25rpx 0;
  522. line-height: 90rpx;
  523. justify-content: space-between;
  524. .texts{
  525. color: #222;
  526. font-size: 28rpx;
  527. margin-left: 15rpx;
  528. }
  529. .wx-icon{
  530. image{
  531. margin: 20rpx 0 0 30rpx;
  532. width: 48rpx;
  533. height: 48rpx;
  534. }
  535. }
  536. }
  537. .goods-infos{
  538. height: 124rpx;
  539. background: #FFFFFF;
  540. box-shadow: 0px 4rpx 12rpx 0px rgba(231,231,231,0.41);
  541. border-radius: 16rpx;
  542. padding: 30rpx;
  543. display: flex;
  544. .goods-img{
  545. image{
  546. width: 120rpx;
  547. height: 120rpx;
  548. }
  549. }
  550. .goods-right{
  551. margin-left: 20rpx;
  552. .goods-name{
  553. color: #222;
  554. font-size: 24rpx;
  555. }
  556. .goods-rule{
  557. color: #666;
  558. font-size: 20rpx;
  559. margin-top: 15rpx;
  560. }
  561. }
  562. }
  563. .remark{
  564. // height: 252rpx;
  565. // background: #FFFFFF;
  566. // box-shadow: 0px 4rpx 12rpx 0px rgba(231,231,231,0.41);
  567. flex-wrap: wrap;
  568. color: #555;
  569. font-size: 24rpx;
  570. border-radius: 16rpx;
  571. margin:25rpx 0;
  572. padding: 30rpx;
  573. .title{
  574. font-size: 28rpx;
  575. color: #222;
  576. }
  577. .place{
  578. color: #999;
  579. }
  580. .text-area{
  581. font-size: 24rpx;
  582. color: #333;
  583. margin-top: 25rpx;
  584. }
  585. }
  586. .user-info{
  587. height:400rpx;
  588. background: #FFFFFF;
  589. box-shadow: 0px 4px 12rpx 0px rgba(231,231,231,0.41);
  590. border-radius: 16rpx;
  591. width: 630rpx;
  592. background-color: #fff;
  593. padding: 30rpx;
  594. .views{
  595. display: flex;
  596. // margin-top: 30rpx;
  597. height: 80rpx;
  598. line-height: 80rpx;
  599. font-size: 24rpx;
  600. .input{
  601. .inputs{
  602. height: 80rpx;
  603. line-height: 80rpx;
  604. border-bottom: 1rpx solid #f5f5f5;
  605. width: 400rpx;
  606. margin-left: 30rpx;
  607. }
  608. }
  609. }
  610. .title{
  611. font-size: 28rpx;
  612. color: #222;
  613. }
  614. }
  615. }
  616. </style>