index.vue 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974
  1. <template>
  2. <view :style="colorStyle">
  3. <view class="all-products-body" v-for="(item, index) in grouponOrderData.goodsInfos" :key="index">
  4. <view class="all-products-item">
  5. <image
  6. :src="item.goodsCover"
  7. mode="scaleToFill" />
  8. <view class="all-products-item-content">
  9. <view class="all-products-item-content-t">
  10. {{item.goodsName}}
  11. </view>
  12. <view class="all-products-item-content-b">
  13. <view style="display:flex;">
  14. <text class="red"> ¥{{item.discountPrice}}</text>
  15. </view>
  16. <view>
  17. <u-number-box :name="item.id" :min="0" v-model="grouponOrderData.goodsInfos[index].num" @change="calGoodsPrice"></u-number-box>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. <view class='order-submission'>
  24. <view>
  25. <view class="nav acea-row">
  26. <view class="item font-num" :class="shippingType == 0 ? 'on' : 'on2'" @tap="addressType(0)"
  27. v-if='store_self_mention && is_shipping'></view>
  28. <view class="item font-num" :class="shippingType == 1 ? 'on' : 'on2'" @tap="addressType(1)"
  29. v-if='store_self_mention && is_shipping'></view>
  30. </view>
  31. <view class='address-info' @tap='onAddress'>
  32. <block>
  33. <view class="a-t">
  34. <view class="t1">
  35. 自提门店
  36. </view>
  37. <view class="t2" @tap='selectSelfTake()'>
  38. 更换自提网点
  39. <image src="http://www.gzzzyd.com/groupon/order_details/切换_面24@2x.png" mode="scaleToFill" />
  40. </view>
  41. </view>
  42. <view class="a-m">
  43. <view class="am1">
  44. <view class="am1-1">
  45. {{selfTake.name}}
  46. </view>
  47. <view class="am1-2">
  48. 距您{{selfTake.distanceDesc}}
  49. <image src="http://www.gzzzyd.com/groupon/order_details/距离@2x.png" mode="scaleToFill" />
  50. </view>
  51. </view>
  52. <view class="am2">
  53. {{selfTake.address}}
  54. </view>
  55. <view class="am3">
  56. 营业时间 {{selfTake.busStartTimeDesc}}-{{selfTake.busEndTimeDesc}}
  57. </view>
  58. </view>
  59. <view class="a-b">
  60. <view class="a-b1">
  61. 对接团长:
  62. <text class="red">
  63. {{grouponOrderData.username}}
  64. </text>
  65. </view>
  66. <view class="a-b2">
  67. <image src="http://www.gzzzyd.com/groupon/order_details/微信@2x.png" mode="scaleToFill" />
  68. <image src="http://www.gzzzyd.com/groupon/order_details/电话键盘_填充@2x.png" mode="scaleToFill" />
  69. </view>
  70. </view>
  71. </block>
  72. </view>
  73. <view class="payment-details">
  74. <blok>
  75. <view class="p-t">
  76. 付款明细
  77. </view>
  78. <view class="p-b-item">
  79. <view class="item-lable">商品金额</view>
  80. <view class="item-value">¥{{parseFloat(totalPrice).toFixed(2)}}</view>
  81. </view>
  82. <view class="p-b-item">
  83. <view class="item-lable">积分抵扣</view>
  84. <view class="item-value">¥0</view>
  85. </view>
  86. <view class="p-b-item">
  87. <view class="item-lable">总计金额</view>
  88. <view class="item-value">¥{{parseFloat(totalPrice).toFixed(2)}}</view>
  89. </view>
  90. </blok>
  91. </view>
  92. <productConSwiperGroupbuying class="skeleton-rect" ></productConSwiperGroupbuying>
  93. </view>
  94. <orderGoods :cartInfo="cartInfo" :is_confirm='true' :shipping_type="shippingType"></orderGoods>
  95. <view class='moneyList'>
  96. <view class='item acea-row row-between-wrapper' v-if="priceGroup.storePostage > 0">
  97. <view>{{ $t(`配送运费`) }}:</view>
  98. <view class='money'>
  99. {{ $t(`¥`) }}{{ (parseFloat(priceGroup.storePostage) + parseFloat(priceGroup.storePostageDiscount)).toFixed(2)
  100. }}
  101. </view>
  102. </view>
  103. <view class='item acea-row row-between-wrapper'
  104. v-if="priceGroup.vipPrice > 0 && userInfo.vip && !pinkId && !BargainId && !combinationId && !seckillId && !discountId">
  105. <view>{{ $t(`会员商品优惠`) }}:</view>
  106. <view class='money'>-{{ $t(`¥`) }}{{ parseFloat(priceGroup.vipPrice).toFixed(2) }}</view>
  107. </view>
  108. <view class='item acea-row row-between-wrapper' v-if="priceGroup.storePostageDiscount > 0">
  109. <view>{{ $t(`会员运费优惠`) }}:</view>
  110. <view class='money'>-{{ $t(`¥`) }}{{ parseFloat(priceGroup.storePostageDiscount).toFixed(2) }}</view>
  111. </view>
  112. <view class='item acea-row row-between-wrapper' v-if="coupon_price > 0">
  113. <view>{{ $t(`优惠券抵扣`) }}:</view>
  114. <view class='money'>-{{ $t(`¥`) }}{{ parseFloat(coupon_price).toFixed(2) }}</view>
  115. </view>
  116. <view class='item acea-row row-between-wrapper' v-if="integral_price > 0">
  117. <view>{{ $t(`积分抵扣`) }}:</view>
  118. <view class='money'>-{{ $t(`¥`) }}{{ parseFloat(integral_price).toFixed(2) }}</view>
  119. </view>
  120. </view>
  121. <view style='height:120rpx;'></view>
  122. <view class='footer acea-row row-between-wrapper'>
  123. <view>{{ $t(`合计`) }}:
  124. <text class='font-color'>{{ $t(`¥`) }}{{ parseFloat(totalPrice).toFixed(2) || 0 }}</text>
  125. </view>
  126. <view class='settlement' style='z-index:100' @tap.stop="goPay" v-if="totalPrice > 0">立即支付
  127. </view>
  128. <view class='settlement bg-color-hui' style='z-index:100' v-else>立即支付</view>
  129. </view>
  130. </view>
  131. <view class="alipaysubmit" v-html="formContent"></view>
  132. <!-- <couponListWindow :coupon='coupon' @ChangCouponsClone="ChangCouponsClone" :openType='openType' :cartId='cartId'
  133. @ChangCoupons="ChangCoupons"></couponListWindow> -->
  134. <!-- <addressWindow ref="addressWindow" @changeTextareaStatus="changeTextareaStatus" :news='news' :address='address'
  135. :pagesUrl="pagesUrl" @OnChangeAddress="OnChangeAddress" @changeClose="changeClose"></addressWindow> -->
  136. <!-- #ifdef MP -->
  137. <!-- <authorize @onLoadFun="onLoadFun" :isAuto="isAuto" :isShowAuth="isShowAuth" @authColse="authColse"></authorize> -->
  138. <!-- #endif -->
  139. <!-- <home v-show="!invShow"></home> -->
  140. <invoice-picker :inv-show="invShow" :inv-list="invList" :inv-checked="invChecked" :is-special="special_invoice"
  141. :url-query="urlQuery" @inv-close="invClose" @inv-change="invChange" @inv-cancel="invCancel">
  142. </invoice-picker>
  143. <payment :payMode="cartArr" :pay_close="pay_close" :isCall="false" :totalPrice="parseFloat(totalPrice).toFixed(2)"
  144. @changePayType="changePayType" @onChangeFun="onChangeFun" :order_id="orderKey"></payment>
  145. <canvas canvas-id="canvas" v-if="canvasStatus"
  146. :style="{ width: canvasWidth + 'px', height: canvasHeight + 'px', position: 'absolute', left: '-100000px', top: '-100000px' }"></canvas>
  147. <u-popup :show="selectSelfTakePopupShow" @close="selectSelfTakePopupShow = false" @open=" ">
  148. <!-- 页面待实现 -->
  149. </u-popup>
  150. </view>
  151. </template>
  152. <script>
  153. import {getGrouponSelfTakeList } from "@/api/groupon.js";
  154. import {
  155. getGoodsDetail, postOrderSubmit, postBeforeCheck, getUserAddressByIdAndFreight
  156. } from "@/api/home.js";
  157. import {
  158. orderConfirm,
  159. getCouponsOrderPrice,
  160. orderCreate,
  161. postOrderComputed,
  162. checkShipping,
  163. getGroupOrderData
  164. } from '@/api/order.js';
  165. import {
  166. getAddressDefault,
  167. getAddressDetail,
  168. invoiceList,
  169. invoiceOrder
  170. } from '@/api/user.js';
  171. import {
  172. openPaySubscribe
  173. } from '@/utils/SubscribeMessage.js';
  174. import {
  175. storeListApi
  176. } from '@/api/store.js';
  177. import {
  178. CACHE_LONGITUDE,
  179. CACHE_LATITUDE
  180. } from '@/config/cache.js';
  181. import couponListWindow from '@/components/couponListWindow';
  182. import addressWindow from '@/components/addressWindow';
  183. import orderGoods from '@/pages/goods/orderGoods/index_mall';
  184. import home from '@/components/home';
  185. import {
  186. toLogin
  187. } from '@/libs/login.js';
  188. import {
  189. mapGetters
  190. } from "vuex";
  191. // #ifdef MP
  192. import authorize from '@/components/Authorize';
  193. // #endif
  194. import payment from '@/components/payment';
  195. import colors from "@/mixins/color";
  196. import productConSwiperGroupbuying from "@/components/productConSwiperGroupbuying";
  197. export default {
  198. components: {
  199. payment,
  200. couponListWindow,
  201. productConSwiperGroupbuying,
  202. addressWindow,
  203. orderGoods,
  204. home,
  205. // #ifdef MP
  206. authorize
  207. // #endif
  208. },
  209. mixins: [colors],
  210. data () {
  211. const currentDate = this.getDate({
  212. format: true
  213. })
  214. return {
  215. selectSelfTakePopupShow: false,
  216. confirm: '', //自定义留言
  217. date: this.$t(`请选择`),
  218. time: this.$t(`请选择`),
  219. canvasWidth: "",
  220. canvasHeight: "",
  221. canvasStatus: false,
  222. newImg: [],
  223. textareaStatus: true,
  224. //支付方式
  225. cartArr: [{
  226. "name": this.$t(`微信支付`),
  227. "icon": "icon-weixin2",
  228. value: 'weixin',
  229. title: this.$t(`使用微信快捷支付`),
  230. payStatus: 1,
  231. },
  232. // {
  233. // "name": this.$t(`支付宝支付`),
  234. // "icon": "icon-zhifubao",
  235. // value: 'alipay',
  236. // title: this.$t(`使用支付宝支付`),
  237. // payStatus: 1,
  238. // },
  239. // {
  240. // "name": this.$t(`余额支付`),
  241. // "icon": "icon-yuezhifu",
  242. // value: 'yue',
  243. // title: this.$t(`可用余额`),
  244. // payStatus: 1,
  245. // },
  246. // {
  247. // "name": this.$t(`线下支付`),
  248. // "icon": "icon-yuezhifu1",
  249. // value: 'offline',
  250. // title: this.$t(`使用线下付款`),
  251. // payStatus: 2,
  252. // }, {
  253. // "name": this.$t(`好友代付`),
  254. // "icon": "icon-haoyoudaizhifu",
  255. // value: 'friend',
  256. // title: this.$t(`找微信好友支付`),
  257. // payStatus: 1,
  258. // }
  259. ],
  260. virtual_type: 0,
  261. formContent: '',
  262. payType: 'weixin', //支付方式
  263. openType: 1, //优惠券打开方式 1=使用
  264. active: 0, //支付方式切换
  265. coupon: {
  266. coupon: false,
  267. list: [],
  268. statusTile: this.$t(`立即使用`)
  269. }, //优惠券组件
  270. address: {
  271. address: false
  272. }, //地址组件
  273. addressInfo: {}, //地址信息
  274. pinkId: 0, //拼团id
  275. addressId: 0, //地址id
  276. couponId: 0, //优惠券id
  277. cartId: '', //购物车id
  278. BargainId: 0,
  279. combinationId: 0,
  280. seckillId: 0,
  281. discountId: 0,
  282. userInfo: {}, //用户信息
  283. mark: '', //备注信息
  284. couponTitle: this.$t(`请选择`), //优惠券
  285. coupon_price: 0, //优惠券抵扣金额
  286. useIntegral: false, //是否使用积分
  287. integral_price: 0, //积分抵扣金额
  288. integral: 0,
  289. usable_integral: 0,
  290. ChangePrice: 0, //使用积分抵扣变动后的金额
  291. formIds: [], //收集formid
  292. status: 0,
  293. is_address: false,
  294. toPay: false, //修复进入支付时页面隐藏从新刷新页面
  295. shippingType: 0,
  296. system_store: {},
  297. storePostage: 0,
  298. advanceId: 0,
  299. contacts: '',
  300. contactsTel: '',
  301. mydata: {},
  302. storeList: [],
  303. store_self_mention: 0,
  304. cartInfo: [],
  305. priceGroup: {},
  306. animated: false,
  307. totalPrice: 0,
  308. integralRatio: "0",
  309. pagesUrl: "",
  310. orderKey: "",
  311. // usableCoupon: {},
  312. offlinePostage: "",
  313. isAuto: false, //没有授权的不会自动授权
  314. isShowAuth: false, //是否隐藏授权
  315. from: '',
  316. news: 1,
  317. num: 0,
  318. // invTitle: '不开发票',
  319. invTitle: this.$t(`不开发票`),
  320. special_invoice: false,
  321. invoice_func: false,
  322. header_type: '',
  323. invShow: false,
  324. invList: [],
  325. invChecked: '',
  326. urlQuery: '',
  327. pay_close: false,
  328. noCoupon: 0,
  329. valid_count: 0,
  330. discount_id: 0,
  331. is_shipping: true,
  332. inputTrip: false,
  333. focus: true,
  334. goodsSpecId: 0,
  335. freight: 0,
  336. zoneType: 0,
  337. goods: [],
  338. organizerUserId: '',
  339. selfTakeId: '',
  340. grouponOrderData: {},
  341. selfTake: {},
  342. selfTakeList: [],
  343. grouponId: ''
  344. };
  345. },
  346. computed: mapGetters(['isLogin']),
  347. // watch: {
  348. // startDate() {
  349. // return this.getDate('start');
  350. // },
  351. // endDate() {
  352. // return this.getDate('end');
  353. // }
  354. // },
  355. onLoad (options) {
  356. const goods = JSON.parse(decodeURIComponent(options.goods));
  357. this.goods = goods;
  358. this.organizerUserId = options.organizerUserId;
  359. this.selfTakeId = options.selfTakeId;
  360. this.grouponId = options.grouponId;
  361. this.from = 'routine'
  362. // if (!options.productId) return this.$util.Tips({
  363. // title: this.$t(`请选择要购买的商品`)
  364. // }, {
  365. // tab: 3,
  366. // url: 1
  367. // });
  368. if (this.isLogin && this.toPay == false) {
  369. this.getOrderData();
  370. // this.checkShipping();
  371. // this.getaddressInfo();
  372. // this.getConfirm();
  373. // this.$nextTick(function() {
  374. // this.$refs.addressWindow.getAddressList();
  375. // })
  376. } else {
  377. toLogin();
  378. }
  379. },
  380. /**
  381. * 生命周期函数--监听页面显示
  382. */
  383. onShow: function () {
  384. let _this = this
  385. uni.$on("handClick", res => {
  386. if (res) {
  387. _this.system_store = res.address
  388. }
  389. // 清除监听
  390. uni.$off('handClick');
  391. })
  392. },
  393. methods: {
  394. selectSelfTake() {
  395. this.selectSelfTakePopupShow = true;
  396. let longitude = uni.getStorageSync("user_longitude"); //经度
  397. let latitude = uni.getStorageSync("user_latitude"); //纬度
  398. getGrouponSelfTakeList({
  399. grouponId: this.grouponId,
  400. longitude: longitude,
  401. latitude: latitude
  402. }).then(res => {
  403. this.selfTakeList = res.data;
  404. }).catch(err => {
  405. uni.showToast({
  406. title: err,
  407. icon: 'none'
  408. });
  409. });
  410. },
  411. calGoodsPrice(value) {
  412. this.grouponOrderData.goodsInfos.forEach(e => {
  413. if (value.name == e.id) {
  414. let c = value.value - e.num;
  415. this.totalPrice = this.totalPrice + (c*e.discountPrice)
  416. }
  417. });
  418. },
  419. getOrderData() {
  420. let longitude = uni.getStorageSync("user_longitude"); //经度
  421. let latitude = uni.getStorageSync("user_latitude"); //纬度
  422. getGroupOrderData({
  423. goods: this.goods,
  424. organizerUserId: this.organizerUserId,
  425. selfTakeId: this.selfTakeId,
  426. longitude: longitude,
  427. latitude: latitude
  428. }).then(res => {
  429. this.grouponOrderData = res.data;
  430. let total = 0.0;
  431. this.grouponOrderData.goodsInfos.forEach(e => {
  432. console.log(e.goodsName + "-" + e.num)
  433. total+=(e.discountPrice*e.num)
  434. });
  435. this.selfTake = this.grouponOrderData.selfTake;
  436. this.totalPrice = total;
  437. }).catch(err => {
  438. uni.showToast({
  439. title: err,
  440. icon: 'none'
  441. });
  442. });
  443. },
  444. checkShipping () {
  445. let that = this;
  446. this.getConfirm();
  447. this.getaddressInfo();
  448. },
  449. // 不开发票
  450. invCancel () {
  451. this.invChecked = '';
  452. this.invTitle = this.$t(`不开发票`)
  453. this.invShow = false;
  454. },
  455. // 选择发票
  456. invChange (id) {
  457. this.invChecked = id;
  458. this.invShow = false;
  459. const result = this.invList.find(item => item.id === id);
  460. let name = '';
  461. name += result.header_type === 1 ? this.$t(`个人`) : this.$t(`企业`);
  462. name += result.type === 1 ? this.$t(`普通`) : this.$t(`专用`);
  463. name += this.$t(`发票`);
  464. this.invTitle = name;
  465. },
  466. // 关闭发票
  467. invClose () {
  468. this.invShow = false;
  469. this.getInvoiceList()
  470. },
  471. getInvoiceList () {
  472. uni.showLoading({
  473. title: this.$t(`正在加载中`)
  474. })
  475. invoiceList().then(res => {
  476. uni.hideLoading();
  477. this.invList = res.data.map(item => {
  478. item.id = item.id.toString();
  479. return item;
  480. });
  481. const result = this.invList.find(item => item.id == this.invChecked);
  482. if (result) {
  483. let name = '';
  484. name += result.header_type === 1 ? this.$t(`个人`) : this.$t(`企业`);
  485. name += result.type === 1 ? this.$t(`普通`) : this.$t(`专用`);
  486. name += this.$t(`发票`);
  487. this.invTitle = name;
  488. }
  489. }).catch(err => {
  490. uni.showToast({
  491. title: err,
  492. icon: 'none'
  493. });
  494. });
  495. },
  496. /**
  497. * 开发票
  498. */
  499. goInvoice: function () {
  500. this.getInvoiceList()
  501. this.invShow = true;
  502. this.urlQuery =
  503. `new=${this.news}&cartId=${this.cartId}&pinkId=${this.pinkId}&couponId=${this.couponId}&addressId=${this.addressId}&specialInvoice=${this.special_invoice}&couponTitle=${this.couponTitle}`;
  504. },
  505. /**
  506. * 授权回调事件
  507. *
  508. */
  509. onLoadFun: function () {
  510. this.getaddressInfo();
  511. this.getConfirm();
  512. //调用子页面方法授权后执行获取地址列表
  513. // this.$scope.selectComponent('#address-window').getAddressList();
  514. },
  515. /**
  516. * 事件回调
  517. *
  518. */
  519. onChangeFun: function (e) {
  520. let opt = e;
  521. let action = opt.action || null;
  522. let value = opt.value != undefined ? opt.value : null;
  523. action && this[action] && this[action](value);
  524. },
  525. payClose: function () {
  526. this.pay_close = false;
  527. },
  528. goPay () {
  529. let that = this
  530. uni.showLoading({
  531. title: that.$t(`下单中`)
  532. });
  533. that.orderCreate()
  534. },
  535. orderCreate () {
  536. let that = this
  537. postOrderSubmit({
  538. distributeMode: 1,
  539. orderType: 1,
  540. orderSource: 1,
  541. grouponId: this.grouponId,
  542. selfTakeId: this.selfTakeId,
  543. goodsInfos: this.goods
  544. }).then(res => {
  545. that.orderKey = res.data.orderNo,
  546. uni.showLoading({
  547. title: that.$t(`下单成功`)
  548. });
  549. setTimeout(res => {
  550. uni.hideLoading();
  551. that.pay_close = true;
  552. }, 500)
  553. }).catch(err => {
  554. uni.hideLoading();
  555. return that.$util.Tips({
  556. title: err
  557. });
  558. });
  559. },
  560. pay_complete (type) {
  561. let that = this
  562. this.payType = type;
  563. // let url = '/pages/goods/order_pay_status/index?order_id=' + this.orderKey + '&msg=' + "支付成功" +
  564. // '&type=3' + '&totalPrice=' + this.totalPrice
  565. uni.showToast({
  566. title: that.$t(`支付成功`)
  567. })
  568. that.pay_close = false
  569. setTimeout(res => {
  570. uni.navigateBack({
  571. delta: 1
  572. })
  573. }, 1000)
  574. // this.SubOrder();
  575. },
  576. payCheck (type) {
  577. this.payType = type;
  578. // console.log(this.payType);
  579. // let url = '/pages/goods/order_pay_status/index?order_id=' + this.orderKey + '&msg=' + "支付成功" +
  580. // '&type=3' + '&totalPrice=' + this.totalPrice
  581. // uni.showToast({
  582. // title: that.$t(`支付成功`)
  583. // })
  584. // setTimeout(res => {
  585. // uni.redirectTo({
  586. // url: url
  587. // })
  588. // }, 1000)
  589. // this.SubOrder();
  590. },
  591. /**
  592. * 获取门店列表数据
  593. */
  594. getList: function () {
  595. let longitude = uni.getStorageSync("user_longitude"); //经度
  596. let latitude = uni.getStorageSync("user_latitude"); //纬度
  597. let data = {
  598. latitude: latitude, //纬度
  599. longitude: longitude, //经度
  600. page: 1,
  601. limit: 10
  602. }
  603. storeListApi(data).then(res => {
  604. let list = res.data.list.list || [];
  605. this.$set(this, 'storeList', list);
  606. this.$set(this, 'system_store', list[0]);
  607. }).catch(err => { })
  608. },
  609. // 关闭地址弹窗;
  610. changeClose: function () {
  611. this.$set(this.address, 'address', false);
  612. },
  613. /*
  614. * 跳转门店列表
  615. */
  616. showStoreList: function () {
  617. let _this = this
  618. if (this.storeList.length > 0) {
  619. uni.navigateTo({
  620. url: '/pages/goods/goods_details_store/index'
  621. })
  622. }
  623. },
  624. changePayType (type) {
  625. this.payType = type
  626. // this.computedPrice()
  627. },
  628. computedPrice: function () {
  629. let that = this
  630. // postBeforeCheck({
  631. // goodsSpecId: this.goodsSpecId,
  632. // num: this.num,
  633. // userAddressId: this.addressId
  634. // }).then(function (res) {
  635. // //验证是否可下单
  636. // if (res.code == 200) {
  637. // that.freight = res.data.freight - 0
  638. // that.totalPrice = res.data.freight - 0
  639. // that.cartInfo.forEach(e => {
  640. // that.totalPrice += e.salePrice - 0
  641. // })
  642. // } else {
  643. // this.totalPrice = 0
  644. // that.$util.Tips({
  645. // title: that.$t(`所选商品属性不支持下单`),
  646. // success: () => {
  647. // // that.getCartCount(true);
  648. // },
  649. // });
  650. // }
  651. // })
  652. },
  653. addressType (e) {
  654. let index = e;
  655. let that = this;
  656. if (this.shippingType == parseInt(index)) return
  657. this.shippingType = parseInt(index);
  658. if (index == 1) {
  659. // #ifdef H5
  660. if (that.$wechat.isWeixin()) {
  661. that.$wechat.location().then(res => {
  662. uni.setStorageSync('user_latitude', res.latitude);
  663. uni.setStorageSync('user_longitude', res.longitude);
  664. this.getList()
  665. }).catch(err => {
  666. this.getList()
  667. })
  668. } else {
  669. // #endif
  670. uni.getLocation({
  671. type: 'wgs84',
  672. success: (res) => {
  673. uni.setStorageSync('user_latitude', res.latitude);
  674. uni.setStorageSync('user_longitude', res.longitude);
  675. this.getList()
  676. },
  677. complete: () => {
  678. this.getList()
  679. }
  680. });
  681. // #ifdef H5
  682. }
  683. // #endif
  684. };
  685. this.$nextTick(e => {
  686. this.getConfirm();
  687. this.computedPrice();
  688. })
  689. },
  690. bindPickerChange: function (e) {
  691. let value = e.detail.value;
  692. this.shippingType = value;
  693. this.computedPrice();
  694. },
  695. ChangCouponsClone: function () {
  696. this.$set(this.coupon, 'coupon', false);
  697. },
  698. changeTextareaStatus: function () {
  699. for (let i = 0, len = this.coupon.list.length; i < len; i++) {
  700. this.coupon.list[i].use_title = '';
  701. this.coupon.list[i].is_use = 0;
  702. }
  703. this.textareaStatus = true;
  704. this.status = 0;
  705. this.$set(this.coupon, 'list', this.coupon.list);
  706. },
  707. /**
  708. * 处理点击优惠券后的事件
  709. *
  710. */
  711. ChangCoupons: function (e) {
  712. // this.usableCoupon = e
  713. // this.coupon.coupon = false
  714. let index = e,
  715. list = this.coupon.list,
  716. couponTitle = this.$t(`请选择`),
  717. couponId = 0;
  718. for (let i = 0, len = list.length; i < len; i++) {
  719. if (i != index) {
  720. list[i].use_title = '';
  721. list[i].is_use = 0;
  722. }
  723. }
  724. if (list[index].is_use) {
  725. //不使用优惠券
  726. list[index].use_title = '';
  727. list[index].is_use = 0;
  728. } else {
  729. //使用优惠券
  730. list[index].use_title = this.$t(`不使用`);
  731. list[index].is_use = 1;
  732. couponTitle = list[index].coupon_title;
  733. couponId = list[index].id;
  734. }
  735. this.couponTitle = couponTitle;
  736. this.couponId = couponId;
  737. this.$set(this.coupon, 'coupon', false);
  738. this.$set(this.coupon, 'list', list);
  739. this.computedPrice();
  740. },
  741. /**
  742. * 使用积分抵扣
  743. */
  744. ChangeIntegral: function () {
  745. this.useIntegral = !this.useIntegral;
  746. this.computedPrice();
  747. },
  748. /**
  749. * 选择地址后改变事件
  750. * @param object e
  751. */
  752. OnChangeAddress: function (e) {
  753. this.textareaStatus = true;
  754. this.addressId = e;
  755. this.address.address = false;
  756. this.getConfirm()
  757. this.getaddressInfo();
  758. this.computedPrice();
  759. },
  760. bindHideKeyboard: function (e) {
  761. this.mark = e.detail.value;
  762. },
  763. /**
  764. * 获取当前订单详细信息
  765. *
  766. */
  767. getConfirm: function () {
  768. let that = this;
  769. // uni.showLoading({
  770. // title: that.$t(`正在加载中`),
  771. // mask: true
  772. // });
  773. // getGoodsDetail({ id: that.cartId })
  774. // .then((res) => {
  775. // that.cartInfo = []
  776. // let porject = res.data
  777. // that.zoneType = porject.zoneType
  778. // //找出选择的规格
  779. // porject.goodsSpecList.forEach(element => {
  780. // if (that.goodsSpecId == element.id) {
  781. // porject.unit = element.spceName
  782. // }
  783. // });
  784. // porject.totalSales = that.num
  785. // // 计算总价
  786. // that.totalPrice = (that.num - 0) * (porject.salePrice - 0) + that.freight - 0
  787. // that.cartInfo.push(porject)
  788. // uni.hideLoading()
  789. // })
  790. // .catch((err) => {
  791. // uni.hideLoading()
  792. // return this.$util.Tips({
  793. // title: err
  794. // });
  795. // });
  796. },
  797. /*
  798. * 提取砍价和拼团id
  799. */
  800. getBargainId: function () {
  801. let that = this;
  802. let cartINfo = that.cartInfo;
  803. let BargainId = 0;
  804. let combinationId = 0;
  805. let discountId = 0;
  806. let advanceId = 0;
  807. cartINfo.forEach(function (value, index, cartINfo) {
  808. BargainId = cartINfo[index].bargain_id,
  809. combinationId = cartINfo[index].combination_id,
  810. discountId = cartINfo[index].discount_id,
  811. advanceId = cartINfo[index].advance_id
  812. })
  813. that.$set(that, 'BargainId', parseInt(BargainId));
  814. that.$set(that, 'combinationId', parseInt(combinationId));
  815. that.$set(that, 'discountId', parseInt(discountId));
  816. that.$set(that, 'advanceId', parseInt(advanceId));
  817. if (that.cartArr.length == 3 && (BargainId || combinationId || that.seckillId || discountId)) {
  818. that.cartArr[2].payStatus = 0;
  819. that.$set(that, 'cartArr', that.cartArr);
  820. }
  821. },
  822. /**
  823. * 获取当前金额可用优惠券
  824. *
  825. */
  826. getCouponList: function () {
  827. let that = this;
  828. let data = {
  829. cartId: this.cartId,
  830. 'new': this.news
  831. }
  832. getCouponsOrderPrice(this.totalPrice, data).then(res => {
  833. that.$set(that.coupon, 'list', res.data);
  834. that.openType = 1;
  835. });
  836. },
  837. /*
  838. * 获取默认收货地址或者获取某条地址信息
  839. */
  840. getaddressInfo: function () {
  841. let that = this;
  842. if (that.addressId) {
  843. getUserAddressByIdAndFreight({ id: that.addressId }).then(res => {
  844. res.data.is_default = parseInt(res.data.is_default);
  845. that.addressInfo = res.data || {};
  846. that.addressId = res.data.id || 0;
  847. that.address.addressId = res.data.id || 0;
  848. })
  849. } else {
  850. getAddressDefault().then(res => {
  851. res.data.is_default = parseInt(res.data.is_default);
  852. that.addressInfo = res.data || {};
  853. that.addressId = res.data.id || 0;
  854. that.address.addressId = res.data.id || 0;
  855. })
  856. }
  857. },
  858. payItem: function (e) {
  859. let that = this;
  860. let active = e;
  861. that.active = active;
  862. that.animated = true;
  863. that.payType = that.cartArr[active].value;
  864. that.computedPrice();
  865. setTimeout(function () {
  866. that.car();
  867. }, 500);
  868. },
  869. couponTap: function () {
  870. this.coupon.coupon = true;
  871. this.coupon.list.forEach((item, index) => {
  872. if (item.id == this.couponId) {
  873. item.is_use = 1
  874. } else {
  875. item.is_use = 0
  876. }
  877. })
  878. this.$set(this.coupon, 'list', this.coupon.list);
  879. },
  880. car: function () {
  881. let that = this;
  882. that.animated = false;
  883. },
  884. onAddress: function () {
  885. let that = this;
  886. that.textareaStatus = false;
  887. that.address.address = true;
  888. that.pagesUrl = '/pages/users/user_address_list/index?news=' + this.news + '&cartId=' + this.cartId +
  889. '&pinkId=' +
  890. this.pinkId +
  891. '&couponId=' +
  892. this.couponId;
  893. },
  894. payment (data) {
  895. let that = this;
  896. // postOrderSubmit({
  897. // distributeMode: 1,
  898. // goodsList: [{
  899. // goodsId: that.cartId,
  900. // goodsNum: that.num,
  901. // goodsSpecIds: that.goodsSpecId
  902. // }],
  903. // payType: 1,
  904. // remark: that.remark,
  905. // settleType: 1,
  906. // userAddressId: that.addressInfo.id,
  907. // wlPrice: that.freight
  908. // }).then(res => {
  909. // let status = "",
  910. // orderId = res.data.orderNo,
  911. // jsConfig = {},
  912. // goPages = '/pages/goods/order_pay_status/index?order_id=' + orderId + '&msg=' + "支付成功" +
  913. // '&type=3' + '&totalPrice=' + this.totalPrice
  914. // that.toPay = true;
  915. // uni.requestPayment({
  916. // provider: 'wxpay',
  917. // orderInfo: jsConfig,
  918. // success: (e) => {
  919. // let url = goPages;
  920. // uni.showToast({
  921. // title: that.$t(`支付成功`)
  922. // })
  923. // setTimeout(res => {
  924. // uni.redirectTo({
  925. // url: url
  926. // })
  927. // }, 2000)
  928. // },
  929. // fail: (e) => {
  930. // let url = '/pages/goods/order_pay_status/index?order_id=' +
  931. // orderId +
  932. // '&msg=' + that.$t(`支付失败`);
  933. // uni.showModal({
  934. // content: that.$t(`支付失败`),
  935. // showCancel: false,
  936. // success: function (res) {
  937. // if (res.confirm) {
  938. // uni.redirectTo({
  939. // url: url
  940. // })
  941. // } else if (res.cancel) { }
  942. // }
  943. // })
  944. // },
  945. // complete: () => {
  946. // uni.hideLoading();
  947. // },
  948. // });
  949. // switch (status) {
  950. // case 'ORDER_EXIST':
  951. // case 'EXTEND_ORDER':
  952. // case 'PAY_ERROR':
  953. // uni.hideLoading();
  954. // return that.$util.Tips({
  955. // title: res.msg
  956. // }, {
  957. // tab: 5,
  958. // url: goPages
  959. // });
  960. // break;
  961. // case 'SUCCESS':
  962. // uni.hideLoading();
  963. // if ((that.BargainId || that.combinationId || that.pinkId || that.seckillId || that
  964. // .discountId) && data.payType != 'friend')
  965. // return that.$util.Tips({
  966. // title: res.msg,
  967. // icon: 'success'
  968. // }, {
  969. // tab: 4,
  970. // url: goPages
  971. // });
  972. // return that.$util.Tips({
  973. // title: res.msg,
  974. // icon: 'success'
  975. // }, {
  976. // tab: 4,
  977. // url: data.payType == 'friend' ? friendPay : goPages
  978. // });
  979. // break;
  980. // case 'WECHAT_PAY':
  981. // that.toPay = true;
  982. // // #ifdef MP
  983. // /* that.toPay = true; */
  984. // let mp_pay_name = ''
  985. // if (uni.requestOrderPayment) {
  986. // mp_pay_name = 'requestOrderPayment'
  987. // } else {
  988. // mp_pay_name = 'requestPayment'
  989. // }
  990. // uni[mp_pay_name]({
  991. // timeStamp: jsConfig.timestamp,
  992. // nonceStr: jsConfig.nonceStr,
  993. // package: jsConfig.package,
  994. // signType: jsConfig.signType,
  995. // paySign: jsConfig.paySign,
  996. // success: function (res) {
  997. // uni.hideLoading();
  998. // if (that.BargainId || that.combinationId || that.pinkId || that
  999. // .seckillId || that.discountId)
  1000. // return that.$util.Tips({
  1001. // title: that.$t(`支付成功`),
  1002. // icon: 'success'
  1003. // }, {
  1004. // tab: 4,
  1005. // url: goPages
  1006. // });
  1007. // return that.$util.Tips({
  1008. // title: that.$t(`支付成功`),
  1009. // icon: 'success'
  1010. // }, {
  1011. // tab: 5,
  1012. // url: goPages
  1013. // });
  1014. // },
  1015. // fail: function (e) {
  1016. // uni.hideLoading();
  1017. // return that.$util.Tips({
  1018. // title: that.$t(`取消支付`)
  1019. // }, {
  1020. // tab: 5,
  1021. // url: goPages + '&status=2'
  1022. // });
  1023. // },
  1024. // complete: function (e) {
  1025. // uni.hideLoading();
  1026. // //关闭当前页面跳转至订单状态
  1027. // if (res.errMsg == 'requestPayment:cancel' || e.errMsg ==
  1028. // 'requestOrderPayment:cancel') return that.$util
  1029. // .Tips({
  1030. // title: that.$t(`取消支付`)
  1031. // }, {
  1032. // tab: 5,
  1033. // url: goPages + '&status=2'
  1034. // });
  1035. // },
  1036. // })
  1037. // // #endif
  1038. // // #ifdef H5
  1039. // this.$wechat.pay(res.data.result.jsConfig).then(res => {
  1040. // return that.$util.Tips({
  1041. // title: that.$t(`支付成功`),
  1042. // icon: 'success'
  1043. // }, {
  1044. // tab: 5,
  1045. // url: goPages
  1046. // });
  1047. // }).catch(res => {
  1048. // if (!this.$wechat.isWeixin()) {
  1049. // uni.redirectTo({
  1050. // url: goPages + '&msg=' + that.$t(`支付失败`) + '&status=2'
  1051. // // '&msg=支付失败&status=2'
  1052. // })
  1053. // }
  1054. // if (res.errMsg == 'chooseWXPay:cancel') return that.$util.Tips({
  1055. // title: that.$t(`取消支付`)
  1056. // }, {
  1057. // tab: 5,
  1058. // url: goPages + '&status=2'
  1059. // });
  1060. // })
  1061. // // #endif
  1062. // // #ifdef APP-PLUS
  1063. // uni.requestPayment({
  1064. // provider: 'wxpay',
  1065. // orderInfo: jsConfig,
  1066. // success: (e) => {
  1067. // let url = goPages;
  1068. // uni.showToast({
  1069. // title: that.$t(`支付成功`)
  1070. // })
  1071. // setTimeout(res => {
  1072. // uni.redirectTo({
  1073. // url: url
  1074. // })
  1075. // }, 2000)
  1076. // },
  1077. // fail: (e) => {
  1078. // let url = '/pages/goods/order_pay_status/index?order_id=' +
  1079. // orderId +
  1080. // '&msg=' + that.$t(`支付失败`);
  1081. // uni.showModal({
  1082. // content: that.$t(`支付失败`),
  1083. // showCancel: false,
  1084. // success: function (res) {
  1085. // if (res.confirm) {
  1086. // uni.redirectTo({
  1087. // url: url
  1088. // })
  1089. // } else if (res.cancel) { }
  1090. // }
  1091. // })
  1092. // },
  1093. // complete: () => {
  1094. // uni.hideLoading();
  1095. // },
  1096. // });
  1097. // // #endif
  1098. // break;
  1099. // case 'PAY_DEFICIENCY':
  1100. // uni.hideLoading();
  1101. // //余额不足
  1102. // return that.$util.Tips({
  1103. // title: res.msg
  1104. // }, {
  1105. // tab: 5,
  1106. // url: goPages + '&status=1'
  1107. // });
  1108. // break;
  1109. // case "WECHAT_H5_PAY":
  1110. // uni.hideLoading();
  1111. // that.$util.Tips({
  1112. // title: that.$t(`订单创建成功`)
  1113. // }, {
  1114. // tab: 4,
  1115. // url: goPages + '&status=0'
  1116. // });
  1117. // setTimeout(() => {
  1118. // location.href = res.data.result.jsConfig.mweb_url;
  1119. // }, 2000);
  1120. // break;
  1121. // case 'ALIPAY_PAY':
  1122. // //#ifdef H5
  1123. // if (this.from === 'weixin') {
  1124. // uni.redirectTo({
  1125. // url: `/pages/users/alipay_invoke/index?id=${orderId}&pay_key=${res.data.result.pay_key}`
  1126. // });
  1127. // } else {
  1128. // uni.hideLoading();
  1129. // that.formContent = res.data.result.jsConfig;
  1130. // that.$nextTick(() => {
  1131. // document.getElementById('alipaysubmit').submit();
  1132. // })
  1133. // }
  1134. // //#endif
  1135. // // #ifdef MP
  1136. // uni.navigateTo({
  1137. // url: `/pages/users/alipay_invoke/index?id=${orderId}&link=${jsConfig.qrCode}`
  1138. // });
  1139. // // #endif
  1140. // // #ifdef APP-PLUS
  1141. // uni.requestPayment({
  1142. // provider: 'alipay',
  1143. // orderInfo: jsConfig,
  1144. // success: (e) => {
  1145. // uni.showToast({
  1146. // title: that.$t(`支付成功`)
  1147. // })
  1148. // let url = '/pages/goods/order_pay_status/index?order_id=' +
  1149. // orderId +
  1150. // '&msg=' + that.$t(`支付成功`);
  1151. // setTimeout(res => {
  1152. // uni.redirectTo({
  1153. // url: url
  1154. // })
  1155. // }, 2000)
  1156. // },
  1157. // fail: (e) => {
  1158. // let url = '/pages/goods/order_pay_status/index?order_id=' +
  1159. // orderId +
  1160. // '&msg=' + that.$t(`支付失败`);
  1161. // uni.showModal({
  1162. // content: that.$t(`支付失败`),
  1163. // showCancel: false,
  1164. // success: function (res) {
  1165. // if (res.confirm) {
  1166. // uni.redirectTo({
  1167. // url: url
  1168. // })
  1169. // } else if (res.cancel) { }
  1170. // }
  1171. // })
  1172. // },
  1173. // complete: () => {
  1174. // uni.hideLoading();
  1175. // },
  1176. // });
  1177. // // #endif
  1178. // break;
  1179. // }
  1180. // }).catch(err => {
  1181. // uni.hideLoading();
  1182. // return that.$util.Tips({
  1183. // title: err
  1184. // });
  1185. // });
  1186. },
  1187. clickTextArea () {
  1188. this.$refs.textarea.focus()
  1189. },
  1190. SubOrder (e) {
  1191. let that = this,
  1192. data = {};
  1193. if (!that.payType) return that.$util.Tips({
  1194. title: that.$t(`请选择支付方式`)
  1195. });
  1196. if (!that.addressId && !that.shippingType && !that.virtual_type) return that.$util.Tips({
  1197. title: that.$t(`请选择收货地址`)
  1198. });
  1199. if (that.shippingType == 1) {
  1200. if (that.contacts == "" || that.contactsTel == "") {
  1201. return that.$util.Tips({
  1202. title: that.$t(`请填写联系人或联系人电话`)
  1203. });
  1204. }
  1205. if (!/^1(3|4|5|7|8|9|6)\d{9}$/.test(that.contactsTel)) {
  1206. return that.$util.Tips({
  1207. title: that.$t(`请输入正确的手机号码`)
  1208. });
  1209. }
  1210. if (!that.contacts) {
  1211. return that.$util.Tips({
  1212. title: that.$t(`请输入姓名`)
  1213. });
  1214. }
  1215. if (that.storeList.length == 0) return that.$util.Tips({
  1216. title: that.$t(`暂无门店,请选择其他方式`)
  1217. });
  1218. }
  1219. for (var i = 0; i < that.confirm.length; i++) {
  1220. let data = that.confirm[i]
  1221. if (data.status) {
  1222. if (data.label === 'text' || data.label === 'data' || data.label === 'time' || data.label ===
  1223. 'id') {
  1224. if (!data.value.trim()) {
  1225. return uni.showToast({
  1226. title: that.$t(`请输入`) + `${data.title}`,
  1227. icon: 'none'
  1228. });
  1229. }
  1230. }
  1231. if (data.label === 'number') {
  1232. if (data.value <= 0) {
  1233. return uni.showToast({
  1234. title: that.$t(`请输入`) + `${data.title}`,
  1235. icon: 'none'
  1236. });
  1237. }
  1238. }
  1239. if (data.label === 'email') {
  1240. if (!/^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/.test(data.value)) {
  1241. return uni.showToast({
  1242. title: that.$t(`请输入正确的`) + `${data.title}`,
  1243. icon: 'none'
  1244. });
  1245. }
  1246. }
  1247. if (data.label === 'phone') {
  1248. if (!/^1(3|4|5|7|8|9|6)\d{9}$/i.test(data.value)) {
  1249. return uni.showToast({
  1250. title: that.$t(`请输入正确的`) + `${data.title}`,
  1251. icon: 'none'
  1252. });
  1253. }
  1254. }
  1255. if (data.label === 'img') {
  1256. if (!data.value.length) {
  1257. return uni.showToast({
  1258. title: that.$t(`请上传`) + `${data.title}`,
  1259. icon: 'none'
  1260. });
  1261. }
  1262. }
  1263. }
  1264. }
  1265. data = {
  1266. custom_form: that.confirm,
  1267. real_name: that.contacts,
  1268. phone: that.contactsTel,
  1269. addressId: that.addressId,
  1270. formId: '',
  1271. couponId: that.couponId,
  1272. payType: that.payType,
  1273. useIntegral: that.useIntegral,
  1274. bargainId: that.BargainId,
  1275. combinationId: that.combinationId,
  1276. discountId: that.discountId,
  1277. pinkId: that.pinkId,
  1278. advanceId: that.advanceId,
  1279. seckill_id: that.seckillId,
  1280. mark: that.mark,
  1281. store_id: that.system_store ? that.system_store.id : 0,
  1282. 'from': that.from,
  1283. shipping_type: that.$util.$h.Add(that.shippingType, 1),
  1284. 'new': that.news,
  1285. 'invoice_id': that.invChecked,
  1286. // #ifdef H5
  1287. quitUrl: location.protocol + '//' + location.hostname +
  1288. '/pages/goods/order_pay_status/index?' +
  1289. '&type=3' + '&totalPrice=' + this.totalPrice
  1290. // #endif
  1291. // #ifdef APP-PLUS
  1292. quitUrl: '/pages/goods/order_details/index?order_id=' + this.order_id
  1293. // #endif
  1294. };
  1295. if (data.payType == 'yue' && parseFloat(that.userInfo.now_money) < parseFloat(that.totalPrice))
  1296. return that.$util.Tips({
  1297. title: that.$t(`余额不足`)
  1298. });
  1299. uni.showLoading({
  1300. title: that.$t(`订单支付中`)
  1301. });
  1302. // #ifdef MP
  1303. openPaySubscribe().then(() => {
  1304. that.payment(data);
  1305. });
  1306. // #endif
  1307. // #ifndef MP
  1308. that.payment(data);
  1309. // #endif
  1310. },
  1311. bindDateChange: function (e, index) {
  1312. this.confirm[index].value = e.target.value
  1313. },
  1314. bindTimeChange: function (e, index) {
  1315. this.confirm[index].value = e.target.value
  1316. },
  1317. getDate (type) {
  1318. const date = new Date();
  1319. let year = date.getFullYear();
  1320. let month = date.getMonth() + 1;
  1321. let day = date.getDate();
  1322. if (type === 'start') {
  1323. year = year - 60;
  1324. } else if (type === 'end') {
  1325. year = year + 2;
  1326. }
  1327. month = month > 9 ? month : '0' + month;
  1328. day = day > 9 ? day : '0' + day;
  1329. return `${year}-${month}-${day}`;
  1330. },
  1331. uploadpic: function (index, item) {
  1332. let that = this;
  1333. this.canvasStatus = true
  1334. that.$util.uploadImageChange('upload/image', function (res) {
  1335. item.value.push(res.data.url);
  1336. }, (res) => {
  1337. this.canvasStatus = false
  1338. }, (res) => {
  1339. this.canvasWidth = res.w
  1340. this.canvasHeight = res.h
  1341. });
  1342. },
  1343. DelPic: function (index, indexs) {
  1344. let that = this,
  1345. pic = this.confirm[index].value;
  1346. that.confirm[index].value.splice(indexs, 1);
  1347. // that.$set(that, 'pics', that.pics);
  1348. },
  1349. inputTripClick () {
  1350. this.inputTrip = true
  1351. // this.$refs.trip.foucs()
  1352. },
  1353. }
  1354. }
  1355. </script>
  1356. <style lang="scss" scoped>
  1357. /deep/uni-checkbox[disabled] .uni-checkbox-input {
  1358. background-color: #eee;
  1359. }
  1360. .alipaysubmit {
  1361. display: none;
  1362. }
  1363. .order-submission .line {
  1364. width: 100%;
  1365. height: 3rpx;
  1366. }
  1367. .order-submission .line image {
  1368. width: 100%;
  1369. height: 100%;
  1370. display: block;
  1371. }
  1372. .order-submission .address {
  1373. padding: 28rpx 30rpx;
  1374. background-color: #fff;
  1375. box-sizing: border-box;
  1376. }
  1377. .order-submission .address .addressCon {
  1378. width: 610rpx;
  1379. font-size: 26rpx;
  1380. color: #666;
  1381. }
  1382. .order-submission .address .addressCon .name {
  1383. font-size: 30rpx;
  1384. color: #282828;
  1385. font-weight: bold;
  1386. margin-bottom: 10rpx;
  1387. }
  1388. .order-submission .address .addressCon .name .phone {
  1389. margin-left: 50rpx;
  1390. }
  1391. .order-submission .address .addressCon .default {
  1392. margin-right: 12rpx;
  1393. }
  1394. .order-submission .address .addressCon .setaddress {
  1395. color: #333;
  1396. font-size: 28rpx;
  1397. }
  1398. .order-submission .address .iconfont {
  1399. font-size: 35rpx;
  1400. color: #707070;
  1401. }
  1402. .order-submission .allAddress {
  1403. width: 100%;
  1404. background: linear-gradient(to bottom, var(--view-theme) 0%, #f5f5f5 100%);
  1405. padding-top: 100rpx;
  1406. margin-bottom: 12rpx;
  1407. }
  1408. .order-submission .allAddress .nav {
  1409. width: 710rpx;
  1410. margin: 0 auto;
  1411. }
  1412. .order-submission .allAddress .nav .item {
  1413. width: 355rpx;
  1414. }
  1415. .order-submission .allAddress .nav .item.on {
  1416. position: relative;
  1417. width: 250rpx;
  1418. }
  1419. .order-submission .allAddress .nav .item.on::before {
  1420. position: absolute;
  1421. bottom: 0;
  1422. content: "快递配送";
  1423. font-size: 28rpx;
  1424. display: block;
  1425. height: 0;
  1426. width: 336rpx;
  1427. border-width: 0 20rpx 80rpx 0;
  1428. border-style: none solid solid;
  1429. border-color: transparent transparent #fff;
  1430. z-index: 2;
  1431. border-radius: 7rpx 30rpx 0 0;
  1432. text-align: center;
  1433. line-height: 80rpx;
  1434. }
  1435. .order-submission .allAddress .nav .item:nth-of-type(2).on::before {
  1436. content: "到店自提";
  1437. border-width: 0 0 80rpx 20rpx;
  1438. border-radius: 30rpx 7rpx 0 0;
  1439. }
  1440. .order-submission .allAddress .nav .item.on2 {
  1441. position: relative;
  1442. }
  1443. .order-submission .allAddress .nav .item.on2::before {
  1444. position: absolute;
  1445. bottom: 0;
  1446. content: "到店自提";
  1447. font-size: 28rpx;
  1448. display: block;
  1449. height: 0;
  1450. width: 400rpx;
  1451. border-width: 0 0 60rpx 60rpx;
  1452. border-style: none solid solid;
  1453. border-color: transparent transparent rgba(255, 255, 255, 0.6);
  1454. border-radius: 40rpx 6rpx 0 0;
  1455. text-align: center;
  1456. line-height: 60rpx;
  1457. }
  1458. .order-submission .allAddress .nav .item:nth-of-type(1).on2::before {
  1459. content: "快递配送";
  1460. border-width: 0 60rpx 60rpx 0;
  1461. border-radius: 6rpx 40rpx 0 0;
  1462. }
  1463. .order-submission .allAddress .address {
  1464. width: 710rpx;
  1465. height: 150rpx;
  1466. margin: 0 auto;
  1467. }
  1468. .order-submission .allAddress .line {
  1469. width: 710rpx;
  1470. margin: 0 auto;
  1471. }
  1472. .order-submission .wrapper .item .discount .placeholder {
  1473. color: #ccc;
  1474. }
  1475. .placeholder-textarea {
  1476. position: relative;
  1477. .placeholder {
  1478. position: absolute;
  1479. color: #ccc;
  1480. top: 26rpx;
  1481. left: 30rpx;
  1482. }
  1483. }
  1484. .order-submission .wrapper {
  1485. background-color: #fff;
  1486. margin-top: 13rpx;
  1487. }
  1488. .order-submission .wrapper .item {
  1489. padding: 27rpx 30rpx;
  1490. font-size: 30rpx;
  1491. color: #282828;
  1492. border-bottom: 1px solid #f0f0f0;
  1493. .mark {
  1494. background-color: #f9f9f9;
  1495. width: 345px;
  1496. height: 70px;
  1497. border-radius: 1px;
  1498. margin-top: 15px;
  1499. padding: 12px 14px;
  1500. color: #ccc;
  1501. font-size: 28rpx;
  1502. box-sizing: border-box;
  1503. }
  1504. .mark-msg {
  1505. color: #333;
  1506. font-size: 32rpx;
  1507. }
  1508. }
  1509. .order-submission .wrapper .item .discount {
  1510. font-size: 30rpx;
  1511. color: #999;
  1512. }
  1513. .order-submission .wrapper .item .discount input {
  1514. text-align: end;
  1515. }
  1516. .order-submission .wrapper .item .discount .iconfont {
  1517. color: #515151;
  1518. font-size: 30rpx;
  1519. margin-left: 15rpx;
  1520. }
  1521. .order-submission .wrapper .item .discount .num {
  1522. font-size: 32rpx;
  1523. margin-right: 20rpx;
  1524. }
  1525. .order-submission .wrapper .item .shipping {
  1526. font-size: 30rpx;
  1527. color: #999;
  1528. position: relative;
  1529. padding-right: 58rpx;
  1530. }
  1531. .order-submission .wrapper .item .shipping .iconfont {
  1532. font-size: 35rpx;
  1533. color: #707070;
  1534. position: absolute;
  1535. right: 0;
  1536. top: 50%;
  1537. transform: translateY(-50%);
  1538. margin-left: 30rpx;
  1539. }
  1540. .order-submission .wrapper .item textarea {
  1541. background-color: #f9f9f9;
  1542. width: 690rpx;
  1543. height: 140rpx;
  1544. border-radius: 3rpx;
  1545. margin-top: 30rpx;
  1546. padding: 25rpx 28rpx;
  1547. box-sizing: border-box;
  1548. }
  1549. .order-submission .wrapper .item .placeholder {
  1550. color: #ccc;
  1551. font-size: 28rpx;
  1552. }
  1553. .order-submission .wrapper .item .list {
  1554. margin-top: 35rpx;
  1555. }
  1556. .order-submission .wrapper .item .list .payItem {
  1557. border: 1px solid #eee;
  1558. border-radius: 6rpx;
  1559. height: 86rpx;
  1560. width: 100%;
  1561. box-sizing: border-box;
  1562. margin-top: 20rpx;
  1563. font-size: 28rpx;
  1564. color: #282828;
  1565. }
  1566. .order-submission .wrapper .item .list .payItem.on {
  1567. border-color: #fc5445;
  1568. color: #e93323;
  1569. }
  1570. .order-submission .wrapper .item .list .payItem .name {
  1571. width: 50%;
  1572. text-align: center;
  1573. border-right: 1px solid #eee;
  1574. padding-left: 80rpx;
  1575. }
  1576. .order-submission .wrapper .item .list .payItem .name .iconfont {
  1577. width: 44rpx;
  1578. height: 44rpx;
  1579. border-radius: 50%;
  1580. text-align: center;
  1581. line-height: 44rpx;
  1582. background-color: #fe960f;
  1583. color: #fff;
  1584. font-size: 30rpx;
  1585. margin-right: 15rpx;
  1586. }
  1587. .order-submission .wrapper .item .list .payItem .name .iconfont.icon-weixin2 {
  1588. background-color: #41b035;
  1589. }
  1590. .order-submission .wrapper .item .list .payItem .name .iconfont.icon-zhifubao {
  1591. background-color: #1677FF;
  1592. }
  1593. .order-submission .wrapper .item .list .payItem .tip {
  1594. width: 49%;
  1595. text-align: center;
  1596. font-size: 26rpx;
  1597. color: #aaa;
  1598. }
  1599. .order-submission .moneyList {
  1600. margin-top: 12rpx;
  1601. background-color: #fff;
  1602. padding: 30rpx;
  1603. }
  1604. .order-submission .moneyList .item {
  1605. font-size: 28rpx;
  1606. color: #282828;
  1607. }
  1608. .order-submission .moneyList .item~.item {
  1609. margin-top: 20rpx;
  1610. }
  1611. .order-submission .moneyList .item .money {
  1612. color: #868686;
  1613. }
  1614. .order-submission .footer {
  1615. width: 100%;
  1616. height: 100rpx;
  1617. background-color: #fff;
  1618. padding: 0 30rpx;
  1619. font-size: 28rpx;
  1620. color: #333;
  1621. box-sizing: border-box;
  1622. position: fixed;
  1623. bottom: 0;
  1624. left: 0;
  1625. z-index: 9;
  1626. }
  1627. .order-submission .footer .settlement {
  1628. font-size: 30rpx;
  1629. color: #fff;
  1630. width: 240rpx;
  1631. height: 70rpx;
  1632. background-color: var(--view-theme);
  1633. border-radius: 50rpx;
  1634. text-align: center;
  1635. line-height: 70rpx;
  1636. }
  1637. .footer .transparent {
  1638. opacity: 0
  1639. }
  1640. .confirm {
  1641. text-align: right;
  1642. font-size: 22rpx;
  1643. }
  1644. .confirmImg {
  1645. width: 100%;
  1646. .img {
  1647. width: 136rpx;
  1648. height: 136rpx;
  1649. }
  1650. .pictrue {
  1651. width: 136rpx;
  1652. height: 136rpx;
  1653. box-sizing: border-box;
  1654. margin: 18rpx;
  1655. margin-bottom: 35rpx;
  1656. position: relative;
  1657. font-size: 22rpx;
  1658. color: #bbb;
  1659. .del {
  1660. position: absolute;
  1661. top: 0;
  1662. right: 0;
  1663. }
  1664. }
  1665. .bor {
  1666. border: 1rpx solid #ddd;
  1667. }
  1668. }
  1669. .fontC {
  1670. color: grey;
  1671. }
  1672. .all-products-body {
  1673. margin-top: 30rpx;
  1674. .all-products-item {
  1675. display: flex;
  1676. margin-bottom: 20rpx;
  1677. background: #fff;
  1678. image {
  1679. width: 128rpx;
  1680. height: 128rpx;
  1681. margin-right: 20rpx;
  1682. border: 2rpx solid #FFFFFF;
  1683. }
  1684. .all-products-item-content {
  1685. flex-grow: 1;
  1686. display: flex;
  1687. flex-direction: column;
  1688. .all-products-item-content-t {
  1689. flex: 1;
  1690. font-size: 24rpx;
  1691. font-weight: 400;
  1692. color: #333333;
  1693. line-height: 40rpx;
  1694. }
  1695. .all-products-item-content-b {
  1696. flex: 1;
  1697. font-size: 28rpx;
  1698. font-weight: 500;
  1699. line-height: 80rpx;
  1700. display: flex;
  1701. justify-content: space-between;
  1702. .red {
  1703. display: block;
  1704. font-size: 28rpx;
  1705. font-weight: 500;
  1706. color: #B22338 !important;
  1707. margin-right: 10rpx;
  1708. }
  1709. .line-thr {
  1710. display: block;
  1711. font-size: 28rpx;
  1712. font-weight: 400;
  1713. color: #999999;
  1714. text-decoration: line-through;
  1715. }
  1716. }
  1717. }
  1718. }
  1719. }
  1720. .address-info {
  1721. padding: 30rpx 0;
  1722. background: white;
  1723. .a-t {
  1724. padding: 0 30rpx;
  1725. display: flex;
  1726. justify-content: space-between;
  1727. height: 44rpx;
  1728. margin-bottom: 20rpx;
  1729. .t1 {
  1730. height: 44rpx;
  1731. font-size: 32rpx;
  1732. font-weight: 500;
  1733. color: #111111;
  1734. line-height: 44rpx;
  1735. }
  1736. .t2 {
  1737. height: 34rpx;
  1738. font-size: 24rpx;
  1739. font-weight: 400;
  1740. color: #B42A3E;
  1741. line-height: 34rpx;
  1742. image {
  1743. margin-left: 30rpx;
  1744. height: 34rpx;
  1745. width: 34rpx;
  1746. vertical-align: middle;
  1747. }
  1748. }
  1749. }
  1750. .a-m {
  1751. padding: 0 30rpx;
  1752. .am1 {
  1753. display: flex;
  1754. justify-content: space-between;
  1755. margin-bottom: 20rpx;
  1756. .am1-1 {
  1757. height: 40rpx;
  1758. font-size: 28rpx;
  1759. font-weight: 400;
  1760. color: #111111;
  1761. line-height: 40rpx;
  1762. }
  1763. .am1-2 {
  1764. height: 36rpx;
  1765. font-size: 20rpx;
  1766. font-weight: 400;
  1767. color: #666666;
  1768. line-height: 36rpx;
  1769. image {
  1770. margin-left: 30rpx;
  1771. vertical-align: middle;
  1772. height: 34rpx;
  1773. width: 34rpx;
  1774. }
  1775. }
  1776. }
  1777. .am2 {
  1778. margin-bottom: 20rpx;
  1779. height: 34rpx;
  1780. font-size: 24rpx;
  1781. font-weight: 400;
  1782. color: #999999;
  1783. line-height: 34rpx;
  1784. }
  1785. .am3 {
  1786. display: inline-block;
  1787. height: 44rpx;
  1788. background: #FFF7F8;
  1789. border-radius: 8rpx;
  1790. padding: 20rpx 30rpx;
  1791. margin-top: 0rpx;
  1792. font-size: 20rpx;
  1793. font-weight: 400;
  1794. color: #999999;
  1795. line-height: 44rpx;
  1796. }
  1797. }
  1798. .a-b {
  1799. padding: 0 30rpx;
  1800. width: 100%;
  1801. background: #FFF7F8;
  1802. border: 1px solid dashed #333333;
  1803. height: 60rpx;
  1804. line-height: 60rpx;
  1805. margin: 20rpx 30rpx;
  1806. display: flex;
  1807. justify-content: space-between;
  1808. .a-b1 {
  1809. font-size: 20rpx;
  1810. font-weight: 400;
  1811. color: #666666;
  1812. .red {
  1813. font-size: 20rpx;
  1814. font-weight: 500;
  1815. color: #B22338;
  1816. }
  1817. }
  1818. .a-b2 {
  1819. image {
  1820. vertical-align: middle;
  1821. margin-right: 30rpx;
  1822. margin-left: 30rpx;
  1823. height: 34rpx;
  1824. width: 34rpx;
  1825. }
  1826. }
  1827. }
  1828. }
  1829. .payment-details {
  1830. margin-top: 20rpx;
  1831. margin-bottom: 20rpx;
  1832. padding: 30rpx;
  1833. background: white;
  1834. .p-t {
  1835. font-size: 32rpx;
  1836. height: 80rpx;
  1837. font-weight: 500;
  1838. color: #111111;
  1839. line-height: 80rpx;
  1840. }
  1841. .p-b-item {
  1842. height: 60rpx;
  1843. line-height: 60rpx;
  1844. display: flex;
  1845. justify-content: space-between;
  1846. .item-lable {
  1847. font-size: 28rpx;
  1848. font-weight: 400;
  1849. color: #666666;
  1850. }
  1851. .item-value {
  1852. font-size: 28rpx;
  1853. font-weight: 400;
  1854. color: #B22338;
  1855. }
  1856. }
  1857. }
  1858. </style>