refund.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938
  1. <template>
  2. <view class="box">
  3. <view class="cont">
  4. <view class="itemBox flex">
  5. </image>
  6. <image class="itemIMg" src="../../static/timg/noimg.png" mode=""></image>
  7. <view class="itemRight">
  8. <view class="itemName">{{orderData.data.sheetContent}}</view>
  9. <view class="priceBox">
  10. <view class="price" v-if="type==1">¥{{sheetQRCodeList[0].itemRealMoney}}</view>
  11. <view class="price" v-if="type==2">¥{{shData.itemRealMoney}}</view>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="goodsBox">
  16. <view class="goodsline flex" >
  17. <view class="goodsLeft">退款原因 <span class="xinghao">*</span></view>
  18. <view class="goodRight ckLine" @click="reasonS">
  19. <span v-if="!refundReasonTxt">请至少选择一项</span>
  20. <span style="color: #222222;" v-if="refundReasonTxt">{{refundReasonTxt}}</span>
  21. <image src="../../static/timg/icon_arrow_right.png" mode="" class="jtIcon"></image>
  22. </view>
  23. </view>
  24. <view class="goodsline flex" v-if="type==1">
  25. <view class="goodsLeft">退款份数</view>
  26. <view class="goodRight" >
  27. <view class="numJsbox">
  28. <view class="numJj" @click="calculation(1)">-</view>
  29. <view class="goodsnum">
  30. <input type="number" value="" v-model="goodsnum" class="goodsnumInput"/>
  31. </view>
  32. <view class="numJj" @click="calculation(2)">+</view>
  33. </view>
  34. </view>
  35. </view>
  36. <view class="goodsline flex" v-if="type==2">
  37. <view class="goodsLeft">退款份数</view>
  38. <view class="goodRight" style="color: #666666;">
  39. 1份
  40. </view>
  41. </view>
  42. <view class="goodsline flex" >
  43. <view class="tkPrice">
  44. <view class="tkPrice1">退款金额</view>
  45. <view class="tkPrice2">实际退款金额以到账金额为准</view>
  46. </view>
  47. <view class="tkPriceNum">¥{{totalPrice}}</view>
  48. </view>
  49. <view class="goodsline flex" >
  50. <view class="goodsLeft">退款方式</view>
  51. <view class="goodRight" style="font-size: 26rpx;font-weight: 500;color: #222222;">原路退回</view>
  52. </view>
  53. </view>
  54. <view class="goodsBox">
  55. <view class="goodsline flex" v-if="type==2">
  56. <view class="goodsLeft">商品是否已使用 <span class="xinghao">*</span></view>
  57. <view class="goodRight " >
  58. <picker @change="bindPickerChange" :value="index" :range="array">
  59. <view class="ckLine" v-if="index==''">
  60. <span>请选择</span>
  61. <image src="../../static/timg/icon_arrow_right.png" mode="" class="jtIcon"></image>
  62. </view >
  63. <view v-else class="ckLine xuanzhong" ><span>{{array[index]}}</span>
  64. <image src="../../static/img2/hjt.png" mode="" class="hjtIcon"></image>
  65. </view>
  66. </picker>
  67. </view>
  68. </view>
  69. <view class="tkSm" style="padding-top: 8rpx;">退款说明</view>
  70. <view>
  71. <textarea class="tktextarea" v-model="content" name="" placeholder="请输入退款说明" id="" cols="30" rows="10"></textarea>
  72. <view class="textareaNum">{{textareaNum}}/500</view>
  73. </view>
  74. <!-- 图片 -->
  75. <view class="secondView" v-if="type==2">
  76. <view class="tkSm">退款凭证</view>
  77. <view class="imgBox">
  78. <view :class="{img4:(imgindex+1)%4==0}" class="imgLine" v-for="(img,imgindex) in imgArr">
  79. <image :src="img" mode="aspectFit" class="itemImg"></image>
  80. <image src="../../static/img/icon_del_red.png" mode="aspectFit" class="delImg" @click="delimg(imgindex)">
  81. </image>
  82. </view>
  83. <view class="img4" @click="uploadImg">
  84. <image src="../../static/img/btn_pic.png" mode="" class="itemImg"></image>
  85. </view>
  86. </view>
  87. </view>
  88. </view>
  89. </view>
  90. <view class="gaodu"></view>
  91. <view class="bottomBox">
  92. <view class="bottomMS">申请退款后不可取消,钱款预期1-3个自然日</view>
  93. <view class="bottom">
  94. <view class="bleft">
  95. <span>退款金额</span>
  96. <span style="color: #EC0F0A;padding-left: 6rpx;">¥</span>
  97. <span style="font-weight: 500;font-size: 34rpx;color: #EC0F0A;">{{totalPrice}}</span>
  98. </view>
  99. <view class="Btn commonBtn" @click="submitFn">提交</view>
  100. </view>
  101. </view>
  102. <view class="reasonBox" v-if="reasonShow">
  103. <view class="reasonCont">
  104. <view class="reasonTop">
  105. <view class="chahao"></view>
  106. <view class="tkTitle">请选择退款原因</view>
  107. <image @click="qdTkclose" class="chahao" src="../../static/img2/chahao.png" mode=""></image>
  108. </view>
  109. <view class="reasonContLineBox">
  110. <view v-for="(item,index) in refundReasonList" class="jiekouLIne">
  111. <view class="reasonContLineTitle">{{item.reason}}</view>
  112. <view class="reasonContLine" v-for="(i,ix) in item.two" @click="ckLy(i)">
  113. <view class="reasonContLineTxt">{{i.reason}}</view>
  114. <view class="reasonContLineCk" v-if="refundReasonID!=i.id"></view>
  115. <image class="reasonContLineCkImg" src="../../static/timg/icon_checked@2x.png" mode="" v-if="refundReasonID==i.id"></image>
  116. </view>
  117. </view>
  118. </view>
  119. <view style="height: 200rpx;"></view>
  120. <view class="reasonBottom">
  121. <view class="reasonBottomBtn" @click="qdTkclose">确定</view>
  122. </view>
  123. </view>
  124. </view>
  125. </view>
  126. </template>
  127. <script>
  128. export default {
  129. components: {
  130. },
  131. data() {
  132. return {
  133. themeColor:'',
  134. ext:'',
  135. goodsnum:1,
  136. itemDefault:'',
  137. totalPrice:'',
  138. sheetDetail:[],
  139. userInfo:'',
  140. carInfo:'',
  141. customerInfo:'',
  142. textareaNum:0,
  143. reasonShow:false,
  144. imgArr: [],
  145. array:['未使用','已使用'],
  146. index: '',
  147. orderData:'',
  148. type:'',
  149. id:'',
  150. refundReasonList:'',
  151. sheetQRCodeList:'',
  152. maxNum:0,
  153. refundReasonID:'',
  154. refundReasonTxt:'',
  155. hType:'',
  156. content:'',
  157. couponCodeArr:[],
  158. goodsType:'',
  159. couponCount:1,
  160. shData:'',
  161. }
  162. },
  163. onLoad(opt) {
  164. this.ext = this.$common.getExtStoreId();
  165. this.themeColor = uni.getStorageSync("themeColor");
  166. this.orderData = uni.getStorageSync("orderData");
  167. this.type=opt.type
  168. this.id=opt.id;
  169. if(this.type==1){
  170. this.getsheetQRCode()
  171. this.sheetRefundReason()
  172. }else{
  173. this.shData=uni.getStorageSync("shData")
  174. this.totalPrice=this.shData.itemRealMoney
  175. }
  176. },
  177. onShow() {
  178. },
  179. methods: {
  180. ckLy(item){
  181. this.refundReasonID=item.id
  182. this.refundReasonTxt=item.reason
  183. },
  184. getsheetQRCode(){
  185. this.$http('openOrderManagement/sheetQRCodeList', {
  186. type:1,
  187. sheetID: this.id,
  188. }, 'GET').then(res => {
  189. this.sheetQRCodeList=res.data
  190. this.totalPrice= this.sheetQRCodeList[0].itemRealMoney
  191. this.maxNum=this.sheetQRCodeList.length
  192. this.couponCodeArr=[]
  193. this.couponCodeArr.push( this.sheetQRCodeList[0].id)
  194. })
  195. },
  196. sheetRefundReason(){
  197. var params={
  198. type:1
  199. }
  200. this.$http('openOrderManagement/sheetRefundReason', params,'GET').then(res => {
  201. this.refundReasonList=res.data
  202. })
  203. },
  204. sheetRefundReason2(){
  205. if(this.goodsType==1){
  206. var params={type:3}
  207. }
  208. if(this.goodsType==2){
  209. var params={type:2}
  210. }
  211. this.$http('openOrderManagement/sheetRefundReason', params,'GET').then(res => {
  212. this.refundReasonList=res.data
  213. this.reasonShow=true;
  214. })
  215. },
  216. bindPickerChange(e){
  217. console.log(e)
  218. this.index=e.detail.value
  219. if(this.index==0){
  220. this.goodsType=1
  221. }
  222. if(this.index==1){
  223. this.goodsType=2
  224. }
  225. },
  226. reasonS(){
  227. if(this.type==1){
  228. this.reasonShow=true;
  229. }else{
  230. if(this.goodsType){
  231. this.sheetRefundReason2()
  232. }else{
  233. uni.showToast({
  234. title: '请先选择是否使用',
  235. icon: 'none',
  236. duration: 3000
  237. });
  238. }
  239. }
  240. },
  241. qdTkclose(){
  242. this.reasonShow=false;
  243. },
  244. calculation(type){
  245. if(type==1){
  246. if(this.goodsnum>1){
  247. this.goodsnum--
  248. var Price=0
  249. this.couponCodeArr=[]
  250. this.sheetQRCodeList.forEach((item,index)=>{
  251. if( index < this.goodsnum){
  252. Price+=item.itemRealMoney
  253. this.couponCodeArr.push(item.id)
  254. }
  255. })
  256. this.totalPrice=Price
  257. }
  258. }else{
  259. if(this.goodsnum<this.maxNum){
  260. this.goodsnum++
  261. var Price=0
  262. this.couponCodeArr=[]
  263. this.sheetQRCodeList.forEach((item,index)=>{
  264. if( index < this.goodsnum){
  265. Price+=item.itemRealMoney
  266. this.couponCodeArr.push(item.id)
  267. }
  268. })
  269. this.totalPrice=Price
  270. }
  271. }
  272. },
  273. addSheetRefund(){
  274. if(this.type==1){
  275. var params={
  276. hType:this.type,
  277. couponID:this.couponCodeArr.join(','),
  278. money:this.totalPrice,
  279. refundReasonID:this.refundReasonID,
  280. sheetID:this.orderData.data.id,
  281. sheetCode:this.orderData.data.code,
  282. content:this.content,
  283. goodsType:this.goodsType,
  284. couponCount:this.goodsnum,
  285. }
  286. }
  287. if(this.type==2){
  288. var params={
  289. hType:this.type,
  290. couponID:this.shData.id,
  291. money:this.totalPrice,
  292. refundReasonID:this.refundReasonID,
  293. sheetID:this.orderData.data.id,
  294. sheetCode:this.orderData.data.code,
  295. content:this.content,
  296. goodsType:this.goodsType,
  297. couponCount:this.couponCount,
  298. imgUrl:this.imgArr.join(',')
  299. }
  300. }
  301. console.log(params)
  302. //return false
  303. uni.showLoading({
  304. title: '加载中'
  305. })
  306. this.$http('openOrderManagement/addSheetRefund', params,'POST').then(res => {
  307. uni.hideLoading();
  308. if(res.code==0){
  309. uni.navigateTo({
  310. url:'refundDetail?id='+res.data.id
  311. })
  312. }else{
  313. uni.showToast({
  314. title: res.msg,
  315. icon: 'none',
  316. duration: 3000
  317. });
  318. }
  319. })
  320. },
  321. submitFn(){
  322. var that=this;
  323. uni.showModal({
  324. title: '申请退款',
  325. content: '退款申请一旦提交。将不能撤销,是否确认继',
  326. confirmText:'确认',
  327. cancelText:'取消',
  328. success: function (res) {
  329. if (res.confirm) {
  330. that.addSheetRefund()
  331. // console.log('用户点击确定');
  332. /* uni.navigateTo({
  333. url:'refundDetail'
  334. }) */
  335. } else if (res.cancel) {
  336. }
  337. }
  338. });
  339. /* var params={
  340. }
  341. uni.showLoading({
  342. title: '加载中'
  343. })
  344. this.$http('openMallOrder/submitOrder', params,'POST').then(res => {
  345. uni.hideLoading();
  346. if(res.code==0){
  347. this.orderData=res.data
  348. this.unifiedPay(res.data)
  349. }else{
  350. uni.showToast({
  351. title: res.msg,
  352. icon: 'none',
  353. duration: 3000
  354. });
  355. }
  356. }) */
  357. },
  358. unifiedPay(res){
  359. this.$http('openMallOrder/unifiedPay', {
  360. sheetId:res.id
  361. },'POST').then(res => {
  362. this.isgo=true;
  363. if(res.code==0){
  364. this.requestPayment(res.data)
  365. }else{
  366. uni.showToast({
  367. title: res.msg,
  368. icon: 'none',
  369. duration: 3000
  370. });
  371. }
  372. })
  373. },
  374. uploadImg() {
  375. var that = this;
  376. var length = this.imgArr.length;
  377. var num = 5;
  378. if (length > 4) {
  379. uni.showToast({
  380. title: '最多上传5张',
  381. icon: 'none',
  382. duration: 2000,
  383. });
  384. return false;
  385. }
  386. uni.chooseImage({
  387. sourceType: ['album', 'camera'],
  388. count: num - length,
  389. sizeType:['compressed'],
  390. success: (chooseImageRes) => {
  391. const tempFilePaths = chooseImageRes.tempFilePaths;
  392. /* uni.uploadFile({
  393. url: that.$request.baseUrl+'accompany/SuperCheckSheet/uploadFile', //仅为示例,非真实的接口地址
  394. filePath: tempFilePaths[0],
  395. name: 'file',
  396. formData: {
  397. 'user': 'test'
  398. },
  399. success: (uploadFileRes) => {
  400. console.log(JSON.parse(uploadFileRes.data).data );
  401. that.imgArr=that.imgArr.concat(JSON.parse(uploadFileRes.data).data) ;
  402. }
  403. }); */
  404. tempFilePaths.forEach(v => {
  405. console.log(that.$request.baseUrl + 'tuhuUploadFile');
  406. uni.uploadFile({
  407. url: that.$request.baseUrl + 'tuhuUploadFile',
  408. filePath: v,
  409. name: 'file',
  410. formData: {
  411. 'user': 'test'
  412. },
  413. success: (uploadFileRes) => {
  414. console.log(JSON.parse(uploadFileRes.data).data);
  415. that.imgArr = that.imgArr.concat(JSON.parse(
  416. uploadFileRes.data).data);
  417. console.log('imgArr--',that.imgArr);
  418. }
  419. });
  420. })
  421. /* that.$http('accompany/SuperCheckSheet/uploadFile', tempFilePaths[0], 'POST').then(res => {
  422. }) */
  423. }
  424. });
  425. },
  426. delimg(index) {
  427. this.imgArr.splice(index, 1)
  428. },
  429. requestPayment(res){
  430. var payInfo=res;
  431. //console.log(payInfo)
  432. //console.log(String(Date.now()))
  433. var that=this;
  434. uni.requestPayment({
  435. provider: 'wxpay',
  436. //timeStamp: String(Date.now()),
  437. timeStamp: payInfo.timeStamp,
  438. nonceStr: payInfo.nonceStr,
  439. package:payInfo.package,
  440. signType: payInfo.signType,
  441. paySign: payInfo.paySign,
  442. appid:payInfo.appId,
  443. success: function (res) {
  444. console.log('success:' + JSON.stringify(res));
  445. uni.showToast({
  446. title: '支付成功',
  447. icon:'none',
  448. duration: 2000
  449. });
  450. uni.navigateTo({
  451. url:'paySuccess?type=1&orderType=1'
  452. })
  453. },
  454. fail: function (err) {
  455. console.log(err)
  456. uni.showToast({
  457. title: '支付失败',
  458. icon:'none',
  459. duration: 2000
  460. });
  461. uni.navigateTo({
  462. url:'paySuccess?type=2&orderType=1'
  463. })
  464. }
  465. });
  466. },
  467. }
  468. }
  469. </script>
  470. <style scoped lang="less">
  471. .box {
  472. width: 100vw;
  473. min-height: 100vh;
  474. background: #F4F4F4;
  475. }
  476. .reasonTop{
  477. display: flex;justify-content: space-between;
  478. padding: 32rpx 42rpx;
  479. }
  480. .chahao{
  481. width: 21rpx;height: 21rpx;
  482. padding-top: 10rpx;
  483. }
  484. .tkTitle{
  485. font-weight: 500;
  486. font-size: 28rpx;
  487. color: #222222;
  488. line-height: 40rpx;
  489. }
  490. .reasonBox{
  491. position: fixed;
  492. left: 0;
  493. top: 0;
  494. height: 100vh;
  495. width: 750rpx;
  496. background: rgba(0, 0, 0, 0.5);
  497. z-index: 11;
  498. }
  499. .reasonCont{
  500. height: 70vh;
  501. width: 750rpx;
  502. background: #FFFFFF;
  503. border-radius: 28rpx 28rpx 0rpx 0rpx;
  504. position: absolute;
  505. left: 0;
  506. bottom: 0;
  507. }
  508. .reasonContLine{
  509. display: flex;justify-content: space-between;
  510. padding: 15rpx 0;
  511. }
  512. .reasonContLineTitle{
  513. font-weight: 500;
  514. font-size: 28rpx;
  515. color: #222222;
  516. }
  517. .reasonContLineTxt{
  518. font-weight: 400;
  519. font-size: 28rpx;
  520. color: #222222;
  521. line-height: 40rpx;
  522. }
  523. .reasonContLineCk{
  524. width: 28rpx;
  525. height: 28rpx;
  526. border: 2rpx solid #9A9A9A;
  527. border-radius: 16rpx;
  528. margin-top: 6rpx;
  529. }
  530. .reasonContLineCkImg{
  531. width: 32rpx;margin-top: 6rpx;
  532. height: 32rpx;
  533. }
  534. .reasonContLineBox{
  535. padding: 0 33rpx;
  536. height: calc(70vh - 270rpx);
  537. overflow-y: scroll;
  538. }
  539. .ckLine{
  540. display: flex;color: #9A9A9A;
  541. font-size: 26rpx;
  542. }
  543. .xinghao{
  544. color: #EC0F0A;
  545. }
  546. .jtIcon{
  547. width: 12rpx;height: 20rpx;
  548. margin-top: 8rpx;
  549. margin-left: 10rpx;
  550. }
  551. .hjtIcon{
  552. width: 10rpx;height: 20rpx;
  553. margin-top: 8rpx;
  554. margin-left: 10rpx;
  555. }
  556. .tkPrice1{
  557. font-size: 26rpx;
  558. color: #222222;
  559. }
  560. .tkPrice2{
  561. font-size: 24rpx;
  562. color: #9A9A9A;
  563. padding-top: 8rpx;
  564. }
  565. .tkPriceNum{
  566. font-size: 26rpx;
  567. color: #EC0F0A;
  568. line-height: 50rpx;
  569. }
  570. .textareaNum{
  571. padding-bottom: 18rpx;
  572. }
  573. .tkSm{
  574. font-size: 26rpx;
  575. color: #222222;
  576. padding-top: 18rpx;
  577. }
  578. .tktextarea{
  579. font-size: 26rpx;
  580. background: #F7F7F7;
  581. border-radius: 14rpx;
  582. margin-top: 20rpx;
  583. width: 610rpx;padding: 24rpx;
  584. margin-bottom: 10rpx;
  585. line-height: 40rpx;
  586. }
  587. .textareaNum{
  588. font-size: 24rpx;
  589. color: #9A9A9A;
  590. display: flex;justify-content: flex-end;
  591. }
  592. .cont{
  593. padding: 20rpx 24rpx;
  594. }
  595. .itemBox{
  596. background: #FFFFFF;
  597. border-radius: 16rpx;padding: 24rpx;
  598. }
  599. .itemIMg{
  600. width: 128rpx;
  601. height: 128rpx;border-radius: 10rpx;
  602. }
  603. .flex{
  604. display: flex;
  605. }
  606. .itemRight{
  607. width: 450rpx;padding-left: 24rpx;
  608. }
  609. .itemName{
  610. font-weight: 500;
  611. font-size: 28rpx;
  612. color: #222222;
  613. line-height: 40rpx;
  614. }
  615. .buyType{
  616. padding: 0 8rpx;text-align: center;
  617. height: 32rpx;line-height: 34rpx;
  618. border-radius: 5rpx;
  619. border: 1px solid #FF0035;font-size: 22rpx;
  620. color: #FF0035;
  621. margin-top: 10rpx;
  622. }
  623. .priceBox{
  624. display: flex;justify-content: space-between;padding-top: 40rpx;
  625. }
  626. .price{
  627. font-size: 28rpx;
  628. color: #222222;
  629. line-height: 50rpx;
  630. }
  631. .itemNum{
  632. font-size: 34rpx;line-height: 50rpx;
  633. color: #686868;
  634. }
  635. .itemnotes{
  636. font-size: 24rpx;padding-top: 12rpx;
  637. color: #FFC107;
  638. }
  639. .mealBox{
  640. background: #FFFFFF;
  641. padding: 20rpx 24rpx;
  642. margin-top: 20rpx;
  643. font-size: 26rpx;
  644. color: #666666;
  645. border-radius: 16rpx;
  646. }
  647. .fwlcTitle{
  648. color: #333333;font-size: 30rpx;font-weight: 500;
  649. padding-bottom: 20rpx;
  650. }
  651. .mealTop{
  652. display: flex;
  653. justify-content: space-between;
  654. height: 72rpx;
  655. line-height: 72rpx;
  656. font-weight: 500;
  657. font-size: 26rpx;
  658. color: #222222;
  659. font-size: 26rpx;
  660. padding: 0 20rpx;
  661. }
  662. .mealNum{
  663. text-align: center;
  664. width: 120rpx;
  665. }
  666. .mealexpire{
  667. text-align: center; width: 120rpx;
  668. }
  669. .mealName{
  670. width: 460rpx;
  671. }
  672. .mealTop2{
  673. display: flex;
  674. justify-content: space-between;
  675. height: 72rpx;
  676. line-height: 72rpx;
  677. font-weight: 500;
  678. font-size: 26rpx;
  679. color: #222222;
  680. font-size: 26rpx;
  681. padding: 0 20rpx;
  682. background: #FFF6DB;
  683. }
  684. .mealXj{
  685. background: #FFFCF3;
  686. }
  687. .xjLine{
  688. display: flex;
  689. font-weight: 500;
  690. font-size: 26rpx;
  691. color: #222222;
  692. padding: 20rpx 20rpx;
  693. }
  694. .xjyd{
  695. width: 8rpx;
  696. height: 8rpx;
  697. background: #FABF1B;
  698. border-radius: 50rpx;
  699. margin-top: 12rpx;
  700. margin-right: 10rpx;
  701. }
  702. .mealMs{
  703. background: #FFFFFF;
  704. padding: 20rpx;
  705. font-weight: 400;
  706. font-size: 24rpx;
  707. color: #9A9A9A;
  708. line-height: 38rpx;
  709. }
  710. .goodsBox{
  711. padding:18rpx 24rpx;font-size: 26rpx;
  712. color: #222222;background: #FFFFFF;margin-top: 20rpx;
  713. border-radius: 16rpx;
  714. }
  715. .goodsline{
  716. justify-content: space-between;
  717. padding: 18rpx 0;
  718. }
  719. .bottom{
  720. display: flex;
  721. justify-content: space-between;
  722. width: 100%;
  723. padding:30rpx 0 10rpx 0;
  724. }
  725. .reasonBottom{
  726. position: absolute;
  727. left: 0;bottom: 0;
  728. padding: 30rpx 0;
  729. padding-bottom: constant(safe-area-inset-bottom);
  730. padding-bottom: env(safe-area-inset-bottom);
  731. width: 100%;
  732. background: #FFFFFF;
  733. box-shadow: 0rpx -2rpx 16rpx 0rpx rgba(153, 153, 153, 0.2);
  734. }
  735. .reasonBottomBtn{
  736. width: 661rpx;
  737. height: 86rpx;
  738. background: #EC0F0A;
  739. border-radius: 43rpx;
  740. line-height: 86rpx;
  741. text-align: center;
  742. font-size: 32rpx;
  743. color: #FFFFFF;
  744. margin: 0 auto;
  745. }
  746. .bottomBox{
  747. position: fixed;
  748. left: 0;bottom: 0;
  749. padding-bottom: constant(safe-area-inset-bottom);
  750. padding-bottom: env(safe-area-inset-bottom);
  751. width: 100%;
  752. background: #FFFFFF;
  753. box-shadow: 0rpx -2rpx 16rpx 0rpx rgba(153, 153, 153, 0.2);
  754. }
  755. .bottomMS{
  756. font-size: 24rpx;
  757. color: #706F77;
  758. padding-top: 20rpx;padding-left: 32rpx;
  759. }
  760. .bleft{
  761. font-weight: 500;
  762. font-size: 26rpx;
  763. color: #222222;
  764. line-height: 86rpx;
  765. padding-left: 32rpx;
  766. }
  767. .Btn{
  768. width: 467rpx;
  769. height: 86rpx;text-align: center;
  770. line-height: 86rpx;
  771. background: #FCD903;
  772. border-radius: 43rpx;
  773. font-size: 32rpx;
  774. color: #110B01;
  775. margin-right: 36rpx;
  776. }
  777. .mealBox img{
  778. width: 100%;
  779. }
  780. .mealBox image{
  781. width: 100%;
  782. }
  783. .numJsbox{
  784. display: flex;overflow: hidden;
  785. }
  786. .buyCont{
  787. position: absolute;
  788. left: 0;
  789. bottom: 0;
  790. width: 750rpx;
  791. height: 688rpx;
  792. background: #FFFFFF;
  793. border-radius: 26rpx 26rpx 0px 0px;
  794. }
  795. .buyNumBox{
  796. padding: 30rpx;
  797. padding-top: 10rpx;
  798. padding-bottom: 70rpx;
  799. }
  800. .buyContCh{
  801. position: absolute;
  802. top: 53rpx;
  803. right: 36rpx;
  804. width: 36rpx;
  805. height: 36rpx;
  806. }
  807. .goodsnum{
  808. width: 44rpx;
  809. height: 44rpx;
  810. background: #F4F5F7;
  811. line-height: 44rpx;
  812. text-align: center;
  813. font-weight: 500;
  814. color: #333333;
  815. font-size: 24rpx;
  816. margin: 0 4rpx;
  817. border-left:1px solid #dddddd;
  818. border-right:1px solid #dddddd;
  819. }
  820. .goodsnumInput{
  821. width: 44rpx;
  822. height: 44rpx;
  823. background: #FFFFFF;
  824. line-height: 44rpx;
  825. text-align: center;
  826. font-weight: 500;
  827. color: #333333;
  828. font-size: 24rpx;
  829. }
  830. .numJj{
  831. width: 44rpx;
  832. height: 44rpx;
  833. background: #ffffff;
  834. border-radius: 0px 6rpx 6rpx 0px;
  835. text-align: center;
  836. line-height: 44rpx;
  837. font-size: 32rpx;
  838. color: #999999;
  839. }
  840. .numJsbox{
  841. border: 1px solid #dddddd;
  842. border-radius: 6rpx;
  843. }
  844. .imgBox {
  845. display: flex;
  846. flex-wrap: wrap;
  847. padding-top: 15rpx;
  848. }
  849. .imgLine {
  850. position: relative;
  851. margin-right: 20.6rpx;
  852. }
  853. .img4{
  854. margin-right: 0rpx;
  855. }
  856. .itemImg {
  857. width: 150rpx;
  858. height: 150rpx;
  859. margin-bottom: 20rpx;
  860. }
  861. .delImg {
  862. width: 32rpx;
  863. height: 32rpx;
  864. position: absolute;
  865. right: 0rpx;
  866. top: 0rpx;
  867. }
  868. .gaodu{
  869. height: 200rpx;
  870. padding-bottom: constant(safe-area-inset-bottom);
  871. padding-bottom: env(safe-area-inset-bottom);
  872. }
  873. .jiekouLIne{
  874. padding-bottom: 36rpx;
  875. }
  876. .xuanzhong{
  877. color: #222222;
  878. }
  879. </style>