order.vue 47 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670
  1. <template>
  2. <view class="order" v-if="showData.no != ''">
  3. <!-- #ifdef H5 -->
  4. <u-navbar
  5. back-text=" "
  6. :custom-back="goBack"
  7. title=""
  8. :border-bottom="false"
  9. :background="{ backgroundColor: '#d52e4c' }"
  10. back-icon-color="#fff"
  11. title-color="#fff"
  12. ></u-navbar>
  13. <!-- #endif -->
  14. <!-- <u-toast ref="uToast" /> -->
  15. <u-toast ref="uToast"></u-toast>
  16. <u-modal
  17. v-model="showModal"
  18. content="正在排队付款中..."
  19. confirm-color="#d52e4c"
  20. ></u-modal>
  21. <view class="page">
  22. <view class="layer">
  23. <view class="layerBox">
  24. <view class="header">
  25. <view class="section2">
  26. <text class="txt2">{{ showData.no }}</text>
  27. <view class="copy" v-if="chanId != 'lh'" @tap="copeHideMet()">
  28. <text class="info1">{{ configAll.copy_btn_title }}</text>
  29. </view>
  30. <text class="word1"
  31. >{{ showData.province }}&nbsp;{{ showData.city }}&nbsp;{{
  32. showData.is_private ? "民营运营商" : ""
  33. }}({{ showData.network }})</text
  34. >
  35. <!-- 公告 -->
  36. <view class="notice_bg">
  37. <image class="icon" src="../../static/img/hornRed.png"></image>
  38. <view class="noticeHide"></view>
  39. <swiper
  40. autoplay="true"
  41. catchtouchmove="stopTouchMove"
  42. display-multiple-items="1"
  43. vertical="true"
  44. circular
  45. interval="2000"
  46. class="bar-swiper"
  47. >
  48. <swiper-item class="swiper-item">
  49. <!-- <view class="circle"></view> -->
  50. <view class="item_box">
  51. 有{{ randNum }}人 正在浏览此号码,请尽快购买!
  52. </view>
  53. </swiper-item>
  54. </swiper>
  55. </view>
  56. </view>
  57. </view>
  58. <!-- 优惠专区倒计时 -->
  59. <!-- -->
  60. <view class="Limited" v-if="showData.is_activity != 0">
  61. <text>限时:</text><text>¥{{ showData.amount }}</text
  62. ><text class="text">剩余</text>
  63. <text v-for="(tim, index) in countdown" :key="index">
  64. {{ tim }}
  65. </text>
  66. </view>
  67. <view class="price">
  68. <view class="priceCon">
  69. <view class="priceNum">
  70. <view class="li">
  71. <view class="name"> 活动价 </view>
  72. <view class="numbers" v-if="showData.is_activity == 0">
  73. ¥{{ showData.amount_base }}
  74. </view>
  75. <view class="numbers" v-else>
  76. ¥{{ showData.amount_kill }}
  77. </view>
  78. </view>
  79. <view class="li">
  80. <view class="name"> 原价 </view>
  81. <view class="numbers">
  82. ¥{{ showData.amount_original }}
  83. </view>
  84. </view>
  85. <view class="li">
  86. <view class="name"> 预充 </view>
  87. <view class="numbers"> ¥{{ showData.amount_charge }} </view>
  88. </view>
  89. </view>
  90. <view class="orderTit">套餐说明</view>
  91. <text lines="1" class="infoBox1">{{
  92. showData.info.describe
  93. }}</text>
  94. </view>
  95. </view>
  96. <div
  97. class="redBox"
  98. v-if="configAll.disable_send_province.length != 0 && chanId != 'lh'"
  99. >
  100. 因政策原因
  101. <text
  102. v-for="(item, index) in configAll.disable_send_province"
  103. :key="index"
  104. >
  105. {{ item.name | areaName }} </text
  106. >不发货
  107. </div>
  108. <view class="form" v-if="chanId != 'lh'">
  109. <view class="orderTit">订单信息 <text></text></view>
  110. <view class="formInput">
  111. <u-form :model="form" label-width="160">
  112. <u-form-item label="姓名">
  113. <input
  114. v-model="form.name"
  115. placeholder-style="font-size:28rpx;"
  116. :clearable="false"
  117. placeholder="请输入真实姓名(已加密)"
  118. />
  119. </u-form-item>
  120. <u-form-item label="手机号">
  121. <!-- -->
  122. <view class="sendSMS" v-if="configAll.system_sms_open">
  123. <view>
  124. <input
  125. type="number"
  126. maxlength="11"
  127. v-model="form.phone"
  128. placeholder-style="font-size:28rpx;"
  129. :clearable="false"
  130. placeholder="请输入手机号(已加密)"
  131. />
  132. </view>
  133. <view class="sms">
  134. <u-verification-code
  135. :seconds="seconds"
  136. start-text="验证码"
  137. @end="end"
  138. @start="start"
  139. ref="uCode"
  140. @change="codeChange"
  141. ></u-verification-code>
  142. <view class="tips" @tap="getCode">{{ tips }}</view>
  143. </view>
  144. </view>
  145. <!-- -->
  146. <input
  147. v-if="!configAll.system_sms_open"
  148. type="number"
  149. maxlength="11"
  150. v-model="form.phone"
  151. placeholder-style="font-size:28rpx;"
  152. :clearable="false"
  153. placeholder="收货人手机号码(已加密)"
  154. />
  155. </u-form-item>
  156. <u-form-item label="验证码" v-if="configAll.system_sms_open">
  157. <input
  158. maxlength="4"
  159. v-model="form.sms_code"
  160. placeholder-style="font-size:28rpx;"
  161. :clearable="false"
  162. placeholder="请输入验证码"
  163. />
  164. </u-form-item>
  165. <u-form-item
  166. label="身份证号"
  167. v-if="configAll.system_id_form_open != 0"
  168. >
  169. <input
  170. v-model="form.id_no"
  171. placeholder-style="font-size:28rpx;"
  172. :clearable="false"
  173. placeholder="请输入身份证号(已加密)"
  174. />
  175. </u-form-item>
  176. <u-form-item label="城市">
  177. <!-- <input v-model="" /> -->
  178. <view class="county" @tap="countyHide = !countyHide">
  179. {{ countyName }}
  180. </view>
  181. <!-- 快手小程序 出现异常抖动更换 -->
  182. <!-- <u-select v-model="countyHide" :defaultValue='countyIndex' mode="mutil-column-auto" lchild-name="children" :list="selector" @confirm="confirm"></u-select> -->
  183. <w-picker
  184. :visible.sync="countyHide"
  185. mode="region"
  186. :value="countyIndex"
  187. default-type="value"
  188. :hide-area="false"
  189. @confirm="onConfirm($event, 'region')"
  190. @cancel="onCancel"
  191. ref="region"
  192. ></w-picker>
  193. </u-form-item>
  194. <u-form-item label="详细地址">
  195. <input
  196. v-model="form.address"
  197. placeholder-style="font-size:28rpx;"
  198. :clearable="false"
  199. placeholder="请输入街道/镇+村/小区+门牌号 "
  200. />
  201. </u-form-item>
  202. <u-form-item label="备注信息" class="remark">
  203. <input
  204. v-model="form.remark"
  205. placeholder-style="font-size:28rpx;"
  206. :clearable="false"
  207. placeholder="请输入备注信息(已加密)"
  208. />
  209. </u-form-item>
  210. </u-form>
  211. </view>
  212. <view class="ImageText1">
  213. <u-checkbox-group @change="checkboxGroupChange">
  214. <u-checkbox
  215. v-model="checked"
  216. name="item.name"
  217. active-color="#DC3E48"
  218. ><view class="text"
  219. >我已阅读并同意<text @tap.stop="agreement_show_one = true"
  220. >《入网许可证》</text
  221. ><text @tap.stop="agreement_show_two = true"
  222. >《个人信息收集证明》</text
  223. >
  224. </view></u-checkbox
  225. >
  226. </u-checkbox-group>
  227. </view>
  228. <view v-if="mixin_type == 'H5'">
  229. <view class="orderTit">支付方式</view>
  230. <view class="pay">
  231. <radio-group @change="radioChange">
  232. <view class="li" @click="radioChange(2, 1)">
  233. <image src="../../static/img/zfv.png" mode=""></image>
  234. <text>支付宝</text>
  235. <radio
  236. value="2"
  237. style="float: right"
  238. color="#DC3E48"
  239. :checked="payType == 2"
  240. />
  241. </view>
  242. <view class="li" @click="radioChange(1, 1)">
  243. <image src="../../static/img/wx.png" mode=""></image>
  244. <text>微信</text>
  245. <radio
  246. value="1"
  247. style="float: right"
  248. color="#DC3E48"
  249. :checked="payType == 1"
  250. />
  251. </view>
  252. </radio-group>
  253. </view>
  254. </view>
  255. </view>
  256. <view class="guide">
  257. <view class="guideCon">
  258. <image
  259. :src="configAll.beauti_no_detail_bg"
  260. mode="widthFix"
  261. ></image>
  262. <view
  263. class="p"
  264. style="width: 703rpx; margin: 30rpx auto"
  265. v-html="configAll.beauti_no_detail_text"
  266. >
  267. </view>
  268. </view>
  269. </view>
  270. <view class="section18" v-if="chanId != 'lh'">
  271. <view class="box4">
  272. <text lines="1" class="word12">¥{{ showData.amount }}</text>
  273. <!-- <text lines="1" class="word12">¥{{showData.is_activity == 0 ? showData.amount_base : showData.amount_kill}}</text> -->
  274. <text lines="1" class="info8" @tap="apply()">确认支付</text>
  275. </view>
  276. </view>
  277. </view>
  278. </view>
  279. </view>
  280. <u-popup v-model="agreement_show_one" border-radius="20" mode="center">
  281. <view class="agreement">
  282. <image
  283. src="/static/img/up.png"
  284. class="label2"
  285. @tap="agreement_show_one = false"
  286. ></image>
  287. <view class="title"> 入网许可证 </view>
  288. <scroll-view scroll-y="true" style="height: 680rpx">
  289. <view v-html="agreement1"> </view>
  290. <!-- <view>
  291. <rich-text :nodes="agreement1"> </rich-text>
  292. </view> -->
  293. </scroll-view>
  294. <view class="btn" @tap="agreement_show_one = false"> 确认 </view>
  295. </view>
  296. </u-popup>
  297. <u-popup v-model="copeHide" border-radius="20" mode="center">
  298. <view class="agreement copeHide">
  299. <image
  300. src="/static/img/up.png"
  301. class="label2"
  302. @tap="copeHide = false"
  303. ></image>
  304. <view class="title"> 申请优惠 </view>
  305. <scroll-view scroll-y="true" style="height: 280rpx">
  306. <view class="copyText">{{ showData.copy_word }}</view>
  307. <rich-text :nodes="click_pop_content_Text"> </rich-text>
  308. </scroll-view>
  309. <view class="btn" @tap="copyNumHandle()"> 复制 </view>
  310. </view>
  311. </u-popup>
  312. <u-popup v-model="agreement_show_two" border-radius="20" mode="center">
  313. <view class="agreement">
  314. <view>
  315. <image
  316. src="/static/img/up.png"
  317. class="label2"
  318. @tap="agreement_show_two = false"
  319. ></image>
  320. <view class="title"> 个人信息收集说明 </view>
  321. <scroll-view scroll-y="true" style="height: 680rpx">
  322. <view v-html="agreement2"> </view>
  323. <!-- <view>
  324. <rich-text :nodes="agreement2"> </rich-text>
  325. </view> -->
  326. </scroll-view>
  327. <view class="btn" @tap="agreement_show_two = false"> 确认 </view>
  328. </view>
  329. </view>
  330. </u-popup>
  331. <view class="popupBox">
  332. <view class="maskName" v-if="login_show"></view>
  333. <view class="newForm" v-if="login_show">
  334. <view class="alertContent">
  335. <view class="title">温馨提示</view>
  336. <view class="content">{{ login_content }}</view>
  337. <view
  338. class="u-flex u-col-center u-row-center btn"
  339. style="border-top: 1px solid #ececec"
  340. >
  341. <text style="border-right: 1px solid #ececec" @tap="login_cancel"
  342. >取消</text
  343. >
  344. <text
  345. style="color: #d52e4c"
  346. v-if="mixin_type == 'TOUTIAO'"
  347. @tap="userLogin"
  348. >确认</text
  349. >
  350. <button
  351. v-else
  352. style="
  353. box-shadow: none;
  354. background: transparent;
  355. box-sizing: border-box;
  356. width: 50%;
  357. border: 0px solid #f3f3f3;
  358. color: #d52e4c;
  359. "
  360. type="default"
  361. open-type="getPhoneNumber"
  362. @getphonenumber="decryptPhoneNumber"
  363. >
  364. 确认
  365. </button>
  366. </view>
  367. </view>
  368. </view>
  369. </view>
  370. </view>
  371. </template>
  372. <script>
  373. import wPicker from "@/components/w-picker/w-picker.vue";
  374. // import mixin1 from "@/util/mixin1.js";
  375. var unpackTimeId = null;
  376. var total_micro_second = 0; // 总毫秒数
  377. export default {
  378. // mixins: [mixin1],
  379. data() {
  380. return {
  381. // countdown:[],
  382. countdown: ["", "时", "00", "分", "00", "秒", "00"],
  383. form: {
  384. name: "", //姓名
  385. phone: "", //手机号
  386. sms_code: "", // 验证码
  387. id_no: "", //身份号码,
  388. county: "", //城市ID,区县id
  389. address: "", //详细地址
  390. remark: "", //备注
  391. mobile_id: "",
  392. pay_type: 5,
  393. return_url: "",
  394. clickid: "",
  395. },
  396. payType: 2, // H5 支付方式
  397. copeHide: false, // 复制
  398. showData: {
  399. id: 305467,
  400. status: 0,
  401. logo: null,
  402. name: null,
  403. brand: "中国联通",
  404. no: "",
  405. type: 1,
  406. network: "中国联通",
  407. proxy_id: 25,
  408. city_id: 1708,
  409. city: "济源",
  410. province_id: 1532,
  411. province: "河南",
  412. amount_exists: "0",
  413. amount_original: "428",
  414. amount_base: "214",
  415. amount_charge: "0",
  416. amount_di: "0",
  417. amount_proxy: "0.00",
  418. amount_kill: "181",
  419. amount: "181",
  420. create_time: 1657163139,
  421. update_time: 1663225699,
  422. top_time: 0,
  423. rec_time: 0,
  424. summary: null,
  425. is_activity: 1,
  426. activity_time_end: 1663228544,
  427. sort: 1870,
  428. sort_line: -1663225699,
  429. remark: "",
  430. remark_me: "",
  431. hold_chan: 0,
  432. hold_user: 0,
  433. admin_id: 1,
  434. activity_time: 1663225699,
  435. stock_num: 0,
  436. batch_no: "",
  437. is_offer: 0,
  438. info: {
  439. id: 305466,
  440. mobile_id: 305467,
  441. free_app: [],
  442. describe:
  443. "前半年月租减免,优惠后90/月,30g+500分钟,3年内月保底消费60",
  444. content: null,
  445. flow_year: 0,
  446. fee: "",
  447. first_month_free: 0,
  448. flow_free_limit: 0,
  449. flow_images: [],
  450. },
  451. saled: 0,
  452. is_private: false,
  453. view_count: 8,
  454. copy_word: "河南 济源 0510 aaa 1133 请美女主播优惠一下",
  455. }, //手机号详情
  456. timestamp: 600,
  457. countyName: "城市名称",
  458. countyHide: false,
  459. countyIndex: [14, 12, 0], //城市弹窗下标
  460. selector: [],
  461. checked: true,
  462. tips: "",
  463. seconds: 60, //倒计时秒数
  464. agreement1: "", // 入网许可协议
  465. agreement2: "", // 个人信息收集证明
  466. agreement_show_one: false, //入网许可协议开关
  467. agreement_show_two: false, //个人信息收集证明开关
  468. click_pop_content_Text: "",
  469. applyType: true, //防止多次点击
  470. showModal: false, //订单排队提示
  471. randNum: 1,
  472. };
  473. },
  474. components: {
  475. wPicker,
  476. },
  477. filters: {
  478. areaName(val) {
  479. return val
  480. .replace("省", "")
  481. .replace("特别行政区", "")
  482. .replace("壮族自治区", "")
  483. .replace("回族自治区", "")
  484. .replace("维吾尔自治区", "")
  485. .replace("自治区", "");
  486. },
  487. },
  488. onLoad(option) {
  489. if (option.chanId) {
  490. uni.setStorageSync("chanId", option.chanId);
  491. this.chanId = option.chanId;
  492. } else {
  493. uni.removeStorageSync("chanId");
  494. }
  495. let this_ = this;
  496. if (option.id) {
  497. this.form.mobile_id = option.id;
  498. this.show();
  499. }
  500. // 测试
  501. let currentTime = 1647065671;
  502. let startTime = 1647069271;
  503. // this.isDiffTime(currentTime, startTime);
  504. this.randNum = this.random(3, 10);
  505. },
  506. onShow() {
  507. this.area_tree();
  508. this.agreement();
  509. },
  510. methods: {
  511. goBack() {
  512. if (getCurrentPages().length == 1) {
  513. return;
  514. } else {
  515. let chanid = uni.getStorageSync("chanId")
  516. ? uni.getStorageSync("chanId")
  517. : "";
  518. // uni.redirectTo({
  519. // url:'/pages/index/index?chanId='+chanid
  520. // })
  521. uni.navigateBack();
  522. }
  523. },
  524. random(min, max) {
  525. return Math.floor(Math.random() * (max - min)) + min;
  526. },
  527. // H5 支付方式选择
  528. radioChange(e, type) {
  529. if (type) {
  530. console.log(e);
  531. this.payType = e;
  532. } else {
  533. console.log(e.detail.value);
  534. this.payType = e.detail.value;
  535. }
  536. },
  537. onConfirm(res) {
  538. console.log(res);
  539. this.form.county = res.value[2];
  540. this.countyName = res.result;
  541. this.countyIndex = res.value;
  542. },
  543. onCancel() {},
  544. /**
  545. * @param {Object} current 当前时间
  546. * @param {Object} start 开奖时间
  547. */
  548. isDiffTime(current, start) {
  549. let diffTime = start - current;
  550. // 抽奖中: 活动开奖时间 < 当前时间
  551. if (start < current) {
  552. this.activityInfo.flagLottery = 1;
  553. return;
  554. }
  555. // 活动开始倒计时 【秒转为毫秒】
  556. total_micro_second = diffTime * 1000;
  557. // 开奖倒计时
  558. this.unpackCountDown();
  559. },
  560. /**
  561. * 开奖倒计时
  562. * 注意:毫秒时间频率,这里以100ms的频率
  563. */
  564. unpackCountDown() {
  565. // 格式化时间、渲染数据
  566. this.dateFormat(total_micro_second);
  567. unpackTimeId = setInterval(() => {
  568. total_micro_second -= 100;
  569. // 倒计时结束
  570. if (total_micro_second == 0) {
  571. clearInterval(unpackTimeId);
  572. unpackTimeId = null;
  573. this.show();
  574. return;
  575. }
  576. if (total_micro_second < 0) {
  577. clearInterval(unpackTimeId);
  578. unpackTimeId = null;
  579. return;
  580. }
  581. // 格式化时间
  582. this.dateFormat(total_micro_second);
  583. }, 100);
  584. },
  585. /**
  586. * 格式化时间、处理数据
  587. * 根据需要封装方法
  588. */
  589. dateFormat(micro_second) {
  590. // 总秒数
  591. var second = Math.floor(micro_second / 1000);
  592. var day = Math.floor(second / 3600 / 24); // 天数
  593. var hr = Math.floor(second / 3600); // 总小时
  594. // var hrDay = hr % 24; // 小时位
  595. var min = Math.floor((second - hr * 3600) / 60); // 分
  596. var sec = second - hr * 3600 - min * 60; // 秒
  597. var micro_sec = Math.floor((micro_second % 1000) / 10); // 毫秒,保留2位
  598. this.countdown = [
  599. this.formatNumber(hr),
  600. "时",
  601. this.formatNumber(min),
  602. "分",
  603. this.formatNumber(sec),
  604. "秒",
  605. this.formatNumber(micro_sec),
  606. ];
  607. },
  608. formatNumber(n) {
  609. n = n.toString();
  610. return n[1] ? n : `0${n}`;
  611. },
  612. copeHideMet() {
  613. this.copeHide = true;
  614. this.click_pop_content_Text = this.configAll.click_pop_content.replace(
  615. new RegExp("\r\n", "g"),
  616. "<br/>"
  617. );
  618. // console.log(this.click_pop_content_Text)
  619. },
  620. // 协议
  621. agreement() {
  622. // 入网许可协议
  623. this.$http.agreement({ id: 1 }).then((res) => {
  624. if (res.data.code == 1) {
  625. // console.log(res.data.data)
  626. this.agreement1 = res.data.data;
  627. }
  628. });
  629. // 个人信息收集证明
  630. this.$http.agreement({ id: 2 }).then((res) => {
  631. if (res.data.code == 1) {
  632. this.agreement2 = res.data.data;
  633. }
  634. });
  635. },
  636. // 复制
  637. copyNumHandle() {
  638. this.copeHide = false;
  639. let this_ = this;
  640. uni.setClipboardData({
  641. data: this.showData.copy_word, // data的值为你要复制的内容
  642. success: (res) => {
  643. uni.showToast({
  644. title: "复制成功",
  645. duration: 1000,
  646. icon: "none",
  647. });
  648. setTimeout(function () {
  649. this_.$http
  650. .take({ id: this_.showData.id, chanId: this_.showData.chanId })
  651. .then((res) => {
  652. console.log(res);
  653. if (res.data.code == 1) {
  654. }
  655. });
  656. }, 1000);
  657. },
  658. });
  659. },
  660. // 号码详情界面
  661. show() {
  662. uni.showLoading({
  663. title: "加载中",
  664. });
  665. this.$http
  666. .show({ id: this.form.mobile_id })
  667. .then((res) => {
  668. if (res.data.code == 1) {
  669. console.log(res.data.data);
  670. this.showData = res.data.data;
  671. // 优惠倒计时
  672. console.log(this.showData.activity_time_end);
  673. console.log(Math.floor(new Date().getTime() / 1000));
  674. this.isDiffTime(
  675. Math.floor(new Date().getTime() / 1000),
  676. this.showData.activity_time_end
  677. );
  678. // this.timestamp=Math.floor((*1000 - n)/1000)
  679. console.log(this.timestamp);
  680. this.$refs.uCountDown.start();
  681. uni.hideLoading();
  682. }
  683. })
  684. .catch((err) => {
  685. uni.hideLoading();
  686. });
  687. },
  688. submit() {
  689. this.$refs.uForm.validate((valid) => {
  690. if (valid) {
  691. console.log("验证通过");
  692. } else {
  693. console.log("验证失败");
  694. }
  695. });
  696. },
  697. // 城市选择id锁定
  698. confirm(e) {
  699. console.log(e);
  700. this.form.county = e[2].value;
  701. this.countyName = e[0].label + e[1].label + e[2].label;
  702. },
  703. checkboxGroupChange(e) {
  704. console.log(e);
  705. },
  706. codeChange(text) {
  707. this.tips = text;
  708. },
  709. // 区域内容
  710. area_tree() {
  711. this.$http.area_tree().then((res) => {
  712. if (res.data.code === 1) {
  713. this.selector = res.data.data;
  714. console.log(this.selector);
  715. this.loca();
  716. }
  717. });
  718. },
  719. apply() {
  720. console.log(this.mixin_type + "来源");
  721. if (!this.checked) {
  722. this.$refs.uToast.show({
  723. title: '请认真阅读"入网许可证"和"个人信息手机证明"',
  724. type: "error ",
  725. });
  726. return;
  727. }
  728. if (this.form.name == "") {
  729. this.$refs.uToast.show({
  730. title: "请输入姓名",
  731. type: "error ",
  732. });
  733. return;
  734. }
  735. if (!this.$check.checkName(this.form.name)) {
  736. this.$refs.uToast.show({
  737. title: "请输入正确的格式",
  738. type: "error ",
  739. });
  740. return;
  741. }
  742. if (this.form.phone == "") {
  743. this.$refs.uToast.show({
  744. title: "请输入手机号",
  745. type: "error ",
  746. });
  747. return;
  748. }
  749. if (!this.$check.checkMobile(this.form.phone)) {
  750. this.$refs.uToast.show({
  751. title: "请输入正确手机号的格式",
  752. type: "error ",
  753. });
  754. return;
  755. }
  756. if (this.form.sms_code == "" && this.configAll.system_sms_open) {
  757. this.$refs.uToast.show({
  758. title: "请输入验证码",
  759. type: "error ",
  760. });
  761. return;
  762. }
  763. if (this.form.id_no == "" && this.configAll.system_id_form_open != 0) {
  764. this.$refs.uToast.show({
  765. title: "请输入身份证号",
  766. type: "error ",
  767. });
  768. return;
  769. }
  770. if (
  771. !this.$check.IdName(this.form.id_no) &&
  772. this.configAll.system_id_form_open != 0
  773. ) {
  774. this.$refs.uToast.show({
  775. title: "请输入正确的身份证",
  776. type: "error ",
  777. });
  778. return;
  779. }
  780. if (this.form.address == "") {
  781. this.$refs.uToast.show({
  782. title: "请输入地址",
  783. type: "error ",
  784. });
  785. return;
  786. }
  787. // this.$refs.uToast.show({
  788. // title: '登录成功',
  789. // type: 'error ',
  790. // })
  791. // this.$http.check({mobile:this.form.phone,event:'order',captcha:this.form.sms_code})
  792. // .then(res=>{
  793. // console.log(res)
  794. // })
  795. if (this.applyType) {
  796. this.applyType = false;
  797. //#ifdef MP-TOUTIAO
  798. this.form.pay_type = 6;
  799. //#endif
  800. // 是否是H5支付
  801. if (this.mixin_type == "H5") {
  802. this.form.pay_type = this.payType;
  803. }
  804. //#ifdef H5
  805. const res = window.location.href;
  806. if (res.indexOf("?") === -1) return;
  807. const URL = res.split("?")[1];
  808. let obj = {}; // 声明参数对象
  809. let arr = URL.split("&");
  810. for (let i = 0; i < arr.length; i++) {
  811. let arrNew = arr[i].split("=");
  812. obj[arrNew[0]] = arrNew[1];
  813. }
  814. this.form.return_url = "https://mmlh.vip/build/#/";
  815. this.form.clickid = obj.clickid;
  816. //#endif
  817. this.$http.apply(this.form).then((res) => {
  818. //#ifdef H5
  819. let this_ = this;
  820. _baq.track("form", {
  821. assets_id: this_.$assets_id,
  822. product_name: this_.showData.name,
  823. product_price: this_.showData.amount,
  824. });
  825. //#endif
  826. console.log(res);
  827. this.applyType = true;
  828. if (res.data.code == 1) {
  829. // 是否是H5支付
  830. if (this.mixin_type == "H5") {
  831. // console.log(r)
  832. // #ifdef H5
  833. console.log(res.data.data.pay_url);
  834. uni.setStorageSync("LH_H5_PHONE", this.form.phone);
  835. window.location.href = res.data.data.pay_url;
  836. // #endif
  837. } else {
  838. // 快手,抖音 小程序调用支付
  839. uni.setStorage({
  840. key: "PHONE",
  841. data: this.form.phone,
  842. });
  843. this.pay(res.data.data);
  844. }
  845. } else {
  846. if (res.data.msg === "该号码已售或不存在") {
  847. this.showModal = true;
  848. } else {
  849. this.$refs.uToast.show({
  850. title: res.data.msg,
  851. type: "error ",
  852. });
  853. }
  854. }
  855. });
  856. }
  857. },
  858. //调用支付
  859. pay(val) {
  860. let this_ = this;
  861. uni.getProvider({
  862. service: "oauth",
  863. success: function (res) {
  864. console.log(res.provider);
  865. console.log(this_.mixin_type + "来源");
  866. if (this_.mixin_type != "TOUTIAO") {
  867. ks.pay({
  868. serviceId: "1",
  869. orderInfo: val.res,
  870. success(res) {
  871. this_.$refs.uToast.show({
  872. title: "支付成功",
  873. type: "success ",
  874. });
  875. uni.navigateTo({
  876. url: "/pageA/orderSuccess/orderSuccess?id=" + val.id,
  877. });
  878. },
  879. fail(e) {
  880. console.log(e.errMsg + "fail");
  881. if (e.errMsg == "pay:fail request payment cancel") {
  882. this_.$refs.uToast.show({
  883. title: "支付取消",
  884. type: "error ",
  885. });
  886. } else {
  887. this_.$refs.uToast.show({
  888. title: "支付失败",
  889. type: "error ",
  890. });
  891. }
  892. },
  893. });
  894. } else {
  895. // 抖音支付
  896. // uni.requestPayment({
  897. // provider: res.provider[0],
  898. // orderInfo: val.res,
  899. // service: 5,
  900. // getOrderStatus: (res) =>
  901. // new Promise((resolve, reject) => {
  902. // console.log(res);
  903. // resolve(res);
  904. // }),
  905. // success(res) {
  906. // console.log(res);
  907. // // 支付成功
  908. // if (res.code == 0) {
  909. // this_.$refs.uToast.show({
  910. // title: "支付成功",
  911. // type: "success ",
  912. // });
  913. // uni.navigateTo({
  914. // url: "/pageA/orderSuccess/orderSuccess?id=" + val.id,
  915. // });
  916. // } else if (res.code == 4) {
  917. // this_.$refs.uToast.show({
  918. // title: "支付取消",
  919. // type: "error ",
  920. // });
  921. // } else if (res.code == 1) {
  922. // this_.$refs.uToast.show({
  923. // title: "支付超时",
  924. // type: "error ",
  925. // });
  926. // } else if (res.code == 2) {
  927. // this_.$refs.uToast.show({
  928. // title: "支付失败",
  929. // type: "error ",
  930. // });
  931. // } else if (res.code == 3) {
  932. // this_.$refs.uToast.show({
  933. // title: "支付关闭 ",
  934. // type: "error ",
  935. // });
  936. // } else {
  937. // }
  938. // },
  939. // fail(e) {
  940. // console.log(e);
  941. // },
  942. // });
  943. tt.requestOrder({
  944. data: val.data,
  945. byteAuthorization: val.byteAuthorization,
  946. success({ orderId }) {
  947. tt.getOrderPayment({
  948. orderId,
  949. success(res) {
  950. this_.$refs.uToast.show({
  951. title: "支付成功",
  952. type: "success ",
  953. });
  954. uni.navigateTo({
  955. url: "/pageA/orderSuccess/orderSuccess?id=" + val.id,
  956. });
  957. },
  958. fail(err) {
  959. console.log(err, "err");
  960. if (err.errMsg == "pay:fail request payment cancel") {
  961. this_.$refs.uToast.show({
  962. title: "支付取消",
  963. type: "error ",
  964. });
  965. } else {
  966. this_.$refs.uToast.show({
  967. title: "支付失败",
  968. type: "error ",
  969. });
  970. }
  971. },
  972. });
  973. },
  974. });
  975. }
  976. },
  977. });
  978. },
  979. // 获取短信
  980. getCode() {
  981. if (this.$refs.uCode.canGetCode) {
  982. if (this.form.phone == "") {
  983. this.$refs.uToast.show({
  984. title: "请输入手机号",
  985. type: "error ",
  986. });
  987. return;
  988. }
  989. if (!this.$check.checkMobile(this.form.phone)) {
  990. this.$refs.uToast.show({
  991. title: "请输入正确手机号的格式",
  992. type: "error ",
  993. });
  994. return;
  995. }
  996. // this.$u.toast('验证码已发送');
  997. // this.$refs.uCode.start();
  998. this.$http
  999. .send({ mobile: this.form.phone, event: "order" })
  1000. .then((res) => {
  1001. if (res.data.code == 1) {
  1002. this.$u.toast("验证码已发送");
  1003. this.$refs.uCode.start();
  1004. } else {
  1005. this.$refs.uToast.show({
  1006. title: res.data.msg,
  1007. type: "error ",
  1008. });
  1009. }
  1010. });
  1011. } else {
  1012. this.$u.toast("倒计时结束后再发送");
  1013. }
  1014. },
  1015. end() {
  1016. this.$u.toast("倒计时结束");
  1017. },
  1018. start() {
  1019. this.$u.toast("倒计时开始");
  1020. },
  1021. // 禁止滑动
  1022. stopTouchMove() {
  1023. return false;
  1024. },
  1025. // 获取本地经纬度
  1026. loca() {
  1027. let this_ = this;
  1028. if (this.mixin_type != "TOUTIAO" && this.mixin_type != "H5") {
  1029. ks.authorize({
  1030. scope: "scope.userLocation",
  1031. success() {
  1032. uni.getLocation({
  1033. type: "wgs84",
  1034. success: function (res) {
  1035. console.log(res);
  1036. console.log("当前位置的经度:" + res.longitude);
  1037. console.log("当前位置的纬度:" + res.latitude);
  1038. this_.loAcquire(res.longitude, res.latitude);
  1039. },
  1040. });
  1041. },
  1042. });
  1043. } else if (this_.mixin_type == "H5") {
  1044. this_
  1045. .jsonp("https://apis.map.qq.com/ws/location/v1/ip", {
  1046. key: "O7NBZ-PTTCG-OEPQF-I6MTS-YEKCJ-OCFVO",
  1047. output: "jsonp",
  1048. })
  1049. .then((res) => {
  1050. console.log(res.result.ad_info);
  1051. let adInfo = res.result.ad_info;
  1052. this_.cityId(adInfo.province, adInfo.city, adInfo.district);
  1053. });
  1054. } else {
  1055. uni.getLocation({
  1056. type: "gcj02",
  1057. highAccuracyExpireTime: 100,
  1058. success: function (res) {
  1059. console.log("当前位置的经度:" + res.longitude);
  1060. console.log("当前位置的纬度:" + res.latitude);
  1061. this_.loAcquire(res.longitude, res.latitude);
  1062. },
  1063. });
  1064. }
  1065. },
  1066. // 根据经纬度查询城市
  1067. loAcquire(longitude, latitude) {
  1068. let this_ = this;
  1069. this.myAmapFun.reverseGeocoder({
  1070. location: {
  1071. latitude: latitude,
  1072. longitude: longitude,
  1073. },
  1074. success: function (res) {
  1075. console.log("解析地址成功");
  1076. console.log(res);
  1077. // 根据名称筛选id
  1078. this_.cityId(
  1079. res.result.address_component.province,
  1080. res.result.address_component.city,
  1081. res.result.address_component.district
  1082. );
  1083. },
  1084. fail: function (res) {
  1085. uni.showToast({
  1086. title: "定位失败",
  1087. duration: 2000,
  1088. icon: "none",
  1089. });
  1090. console.log(res);
  1091. },
  1092. complete: function (res) {
  1093. console.log(res);
  1094. },
  1095. });
  1096. },
  1097. // 根据名称筛选id
  1098. cityId(province, city, district) {
  1099. this.selector.forEach((val, i) => {
  1100. if (
  1101. val.label.slice(0, 2) == province.slice(0, 2) ||
  1102. val.label == province
  1103. ) {
  1104. console.log(val.label);
  1105. console.log(val.value);
  1106. val.children.forEach((item, l) => {
  1107. if (
  1108. item.label.slice(0, 2) == city.slice(0, 2) ||
  1109. item.label == city
  1110. ) {
  1111. console.log(item.label);
  1112. console.log(item.value);
  1113. item.children.forEach((con, y) => {
  1114. if (
  1115. con.label.slice(0, 2) == district.slice(0, 2) ||
  1116. con.label == district
  1117. ) {
  1118. console.log(con.label);
  1119. console.log(con.value);
  1120. this.countyIndex = [i, l, y];
  1121. console.log(this.countyIndex);
  1122. this.countyName = val.label + item.label + con.label;
  1123. this.form.county = con.value;
  1124. }
  1125. });
  1126. }
  1127. });
  1128. }
  1129. });
  1130. },
  1131. },
  1132. };
  1133. </script>
  1134. <style lang="scss">
  1135. .order {
  1136. .agreement {
  1137. width: 700rpx;
  1138. max-height: 930rpx;
  1139. padding: 0 30rpx;
  1140. // box-sizing: border-box;
  1141. .label2 {
  1142. float: right;
  1143. width: 21rpx;
  1144. height: 21rpx;
  1145. margin-top: 18rpx;
  1146. }
  1147. .title {
  1148. font-size: 30rpx;
  1149. font-weight: 700;
  1150. margin: 40rpx 0;
  1151. text-align: center;
  1152. }
  1153. /deep/ .u-drawer__scroll-view {
  1154. position: relative;
  1155. }
  1156. .btn {
  1157. padding: 20rpx;
  1158. border-radius: 10rpx;
  1159. text-align: center;
  1160. border: 1rpx solid #d8d8d8;
  1161. font-size: 28rpx;
  1162. width: 100%;
  1163. margin-bottom: 10rpx;
  1164. background-color: $uni-color-BGC;
  1165. color: #fff;
  1166. }
  1167. }
  1168. .copeHide {
  1169. width: 650rpx;
  1170. overflow: hidden;
  1171. background-color: #f7f7f7;
  1172. .copyText {
  1173. color: $uni-color-BGC;
  1174. font-size: 30rpx;
  1175. margin-bottom: 20rpx;
  1176. font-weight: 700;
  1177. }
  1178. .title {
  1179. font-size: 30rpx;
  1180. margin-bottom: 30rpx;
  1181. }
  1182. .btn {
  1183. background-color: $uni-color-BGC;
  1184. width: 480rpx;
  1185. margin: 20rpx auto 10rpx;
  1186. padding: 20rpx 20rpx;
  1187. background-color: $uni-color-BGC;
  1188. color: #fff;
  1189. margin-bottom: 40rpx;
  1190. border-radius: 40rpx;
  1191. }
  1192. }
  1193. .page {
  1194. position: relative;
  1195. // width: 750rpx;
  1196. overflow: hidden;
  1197. display: flex;
  1198. flex-direction: column;
  1199. background-color: #f1f1f1;
  1200. padding-bottom: 90rpx;
  1201. }
  1202. .layer {
  1203. display: flex;
  1204. flex-direction: column;
  1205. // width: 750rpx;
  1206. position: relative;
  1207. }
  1208. .notice_bg {
  1209. position: relative;
  1210. margin: 20rpx 0rpx;
  1211. // padding: 16rpx 20rpx;
  1212. background: #fff;
  1213. border-radius: 20rpx;
  1214. display: flex;
  1215. align-items: center;
  1216. height: 60rpx;
  1217. overflow: hidden;
  1218. .noticeHide {
  1219. position: absolute;
  1220. width: 100%;
  1221. height: 100%;
  1222. background-color: transparent;
  1223. left: 0;
  1224. top: 0;
  1225. z-index: 1;
  1226. }
  1227. .icon {
  1228. width: 31rpx;
  1229. height: 31rpx;
  1230. margin-left: 62rpx;
  1231. margin-right: 20rpx;
  1232. }
  1233. .bar-swiper {
  1234. font-size: 26rpx;
  1235. font-family: PingFangSC-Regular, PingFang SC;
  1236. font-weight: 400;
  1237. color: $uni-color-BGC;
  1238. height: 80rpx;
  1239. display: flex;
  1240. align-items: center;
  1241. flex: 1;
  1242. margin-left: 12rpx;
  1243. }
  1244. .swiper-item {
  1245. display: flex;
  1246. align-items: center;
  1247. overflow: hidden;
  1248. }
  1249. .circle {
  1250. min-width: 10rpx;
  1251. width: 10rpx;
  1252. height: 10rpx;
  1253. border-radius: 50%;
  1254. background-color: rgba(34, 34, 34, 0.5);
  1255. margin-right: 10rpx;
  1256. }
  1257. .item_box {
  1258. font-size: 28rpx;
  1259. word-break: break-all; /* break-all(允许在单词内换行。) */
  1260. text-overflow: ellipsis; /* 超出部分省略号 */
  1261. display: -webkit-box; /** 对象作为伸缩盒子模型显示 **/
  1262. -webkit-box-orient: vertical; /** 设置或检索伸缩盒对象的子元素的排列方式 **/
  1263. -webkit-line-clamp: 1; /** 显示的行数 **/
  1264. }
  1265. }
  1266. .layerBox {
  1267. // width: 750rpx;
  1268. display: flex;
  1269. flex-direction: column;
  1270. }
  1271. .header {
  1272. background-color: $uni-color-BGC;
  1273. text-align: center;
  1274. display: flex;
  1275. // flex-direction: column;
  1276. // width: 750rpx;
  1277. }
  1278. .section2 {
  1279. width: 690rpx;
  1280. display: flex;
  1281. flex-direction: column;
  1282. margin: 30rpx 0 20rpx 30rpx;
  1283. }
  1284. .txt2 {
  1285. overflow-wrap: break-word;
  1286. color: rgba(255, 255, 255, 1);
  1287. font-size: 60rpx;
  1288. font-weight: 700;
  1289. font-family: PingFangSC-Semibold;
  1290. text-align: left;
  1291. white-space: nowrap;
  1292. line-height: 60rpx;
  1293. margin: 0 auto;
  1294. display: block;
  1295. }
  1296. .copy {
  1297. background-color: rgba(255, 246, 0, 1);
  1298. display: flex;
  1299. flex-direction: column;
  1300. margin: 30rpx auto 0;
  1301. padding: 16rpx 22rpx;
  1302. border-radius: 6rpx;
  1303. }
  1304. .info1 {
  1305. overflow-wrap: break-word;
  1306. color: rgba(213, 46, 76, 1);
  1307. font-size: 28rpx;
  1308. font-family: PingFangSC-Medium;
  1309. text-align: left;
  1310. white-space: nowrap;
  1311. line-height: 22rpx;
  1312. display: block;
  1313. }
  1314. .word1 {
  1315. height: 22rpx;
  1316. overflow-wrap: break-word;
  1317. color: rgba(234, 188, 204, 1);
  1318. font-size: 28rpx;
  1319. font-family: PingFangSC-Medium;
  1320. text-align: left;
  1321. white-space: nowrap;
  1322. line-height: 22rpx;
  1323. display: block;
  1324. margin: 0 auto;
  1325. text-align: center;
  1326. margin-bottom: 10rpx;
  1327. margin-top: 30rpx;
  1328. }
  1329. .icon1 {
  1330. width: 31rpx;
  1331. height: 31rpx;
  1332. }
  1333. .info2 {
  1334. width: 399rpx;
  1335. height: 24rpx;
  1336. overflow-wrap: break-word;
  1337. color: rgba(213, 46, 76, 1);
  1338. font-size: 26rpx;
  1339. font-family: PingFangSC-Light;
  1340. text-align: left;
  1341. white-space: nowrap;
  1342. line-height: 24rpx;
  1343. margin-top: 5rpx;
  1344. display: block;
  1345. }
  1346. .price {
  1347. z-index: 21;
  1348. // height: 385rpx;
  1349. background-color: #fff;
  1350. border-radius: 18rpx;
  1351. display: flex;
  1352. flex-direction: column;
  1353. width: 703rpx;
  1354. position: relative;
  1355. margin: 20rpx auto 30rpx;
  1356. box-shadow: 1rpx 1rpx 5rpx 0rpx rgba(129, 129, 129, 0.5);
  1357. }
  1358. .priceCon {
  1359. box-sizing: border-box;
  1360. padding: 30rpx;
  1361. display: flex;
  1362. flex-direction: column;
  1363. .priceNum {
  1364. display: flex;
  1365. flex-wrap: wrap;
  1366. justify-content: space-between;
  1367. padding-bottom: 30rpx;
  1368. border-bottom: 1rpx solid rgba(72, 72, 72, 0.4);
  1369. .li {
  1370. width: 33.3%;
  1371. text-align: center;
  1372. font-size: 26rpx;
  1373. box-sizing: border-box;
  1374. border-right: 1rpx solid rgba(72, 72, 72, 0.4);
  1375. .name {
  1376. color: #2b2b2b;
  1377. }
  1378. .numbers {
  1379. color: $uni-color-BGC;
  1380. margin-top: 10rpx;
  1381. font-size: 32rpx;
  1382. }
  1383. }
  1384. .li:nth-child(2) {
  1385. .numbers {
  1386. text-decoration: line-through;
  1387. }
  1388. }
  1389. .li:nth-child(3) {
  1390. border-right: 0;
  1391. }
  1392. }
  1393. }
  1394. .orderTit {
  1395. width: 100%;
  1396. height: 32rpx;
  1397. line-height: 32rpx;
  1398. display: block;
  1399. box-sizing: border-box;
  1400. border-left: 5rpx solid #d3363b;
  1401. padding-left: 20rpx;
  1402. margin-top: 30rpx;
  1403. margin-bottom: 20rpx;
  1404. font-size: 28rpx;
  1405. }
  1406. .infoBox1 {
  1407. width: 627rpx;
  1408. overflow-wrap: break-word;
  1409. color: rgba(105, 105, 105, 1);
  1410. font-size: 28rpx;
  1411. font-family: PingFangSC-Light;
  1412. text-align: left;
  1413. line-height: 32rpx;
  1414. // white-space: nowrap;
  1415. display: block;
  1416. // margin: 16rpx 0 0 5rpx;
  1417. }
  1418. .redBox {
  1419. width: 703rpx;
  1420. margin: 0 auto 30rpx;
  1421. padding: 30rpx 25rpx;
  1422. box-sizing: border-box;
  1423. // text-align: center;
  1424. font-size: 26rpx;
  1425. color: #fff;
  1426. border-radius: 20rpx;
  1427. background-color: $uni-color-BGC;
  1428. text {
  1429. display: inline-block;
  1430. margin-left: 6rpx;
  1431. }
  1432. }
  1433. .form {
  1434. width: 703rpx;
  1435. box-sizing: border-box;
  1436. padding: 30rpx;
  1437. position: relative;
  1438. margin: 20rpx auto 30rpx;
  1439. background-color: #fff;
  1440. box-shadow: 1rpx 1rpx 5rpx 0rpx rgba(129, 129, 129, 0.5);
  1441. border-radius: 12rpx;
  1442. /deep/ .u-checkbox__icon-wrap--checked {
  1443. font-size: 28rpx;
  1444. }
  1445. .orderTit {
  1446. text {
  1447. margin-left: 30rpx;
  1448. color: dimgray;
  1449. }
  1450. }
  1451. .pay {
  1452. font-size: 24rpx;
  1453. image {
  1454. width: 64rpx;
  1455. height: 64rpx;
  1456. vertical-align: middle;
  1457. margin-right: 20rpx;
  1458. }
  1459. .li {
  1460. padding: 20rpx;
  1461. border-bottom: 1px solid rgba(119, 119, 119, 0.3);
  1462. }
  1463. }
  1464. .formInput {
  1465. input {
  1466. font-weight: normal;
  1467. font-size: 28rpx;
  1468. width: 100%;
  1469. }
  1470. .u-form-item {
  1471. padding: 10rpx 0;
  1472. /deep/ .u-form-item--left__content__label {
  1473. position: relative;
  1474. padding-left: 30rpx;
  1475. font-size: 28rpx;
  1476. }
  1477. /deep/.u-form-item--left__content__label::after {
  1478. content: "*";
  1479. position: absolute;
  1480. left: 18rpx;
  1481. top: 0;
  1482. color: red;
  1483. }
  1484. }
  1485. .remark {
  1486. /deep/.u-form-item--left__content__label::after {
  1487. display: none;
  1488. }
  1489. }
  1490. .sendSMS {
  1491. position: relative;
  1492. width: 100%;
  1493. .sms {
  1494. position: absolute;
  1495. right: 0;
  1496. top: 50%;
  1497. transform: translateY(-50%);
  1498. z-index: 11;
  1499. }
  1500. }
  1501. .sms {
  1502. /deep/ .tips {
  1503. width: 168rpx;
  1504. height: 49rpx;
  1505. text-align: center;
  1506. line-height: 49rpx;
  1507. // border: 1rpx solid #D52E4C;
  1508. border-radius: 20rpx;
  1509. font-size: 26rpx;
  1510. color: #fff;
  1511. background-color: $uni-color-BGC;
  1512. margin-top: 4rpx;
  1513. }
  1514. /deep/ input {
  1515. flex: 1;
  1516. }
  1517. }
  1518. }
  1519. .ImageText1 {
  1520. text-align: center;
  1521. margin-top: 30rpx;
  1522. /deep/ .u-checkbox__icon-wrap--checked {
  1523. font-size: 28rpx;
  1524. }
  1525. .text {
  1526. display: inline-block;
  1527. font-size: 22rpx;
  1528. color: rgba(42, 42, 42, 0.6);
  1529. text {
  1530. font-weight: 700;
  1531. }
  1532. }
  1533. }
  1534. }
  1535. .section18 {
  1536. position: fixed;
  1537. width: 750rpx;
  1538. bottom: 0;
  1539. // left: 0;
  1540. z-index: 100;
  1541. text-align: center;
  1542. height: 87rpx;
  1543. line-height: 87rpx;
  1544. margin-top: 27rpx;
  1545. display: flex;
  1546. flex-direction: column;
  1547. // width: 750rpx;
  1548. }
  1549. .box4 {
  1550. height: 100%;
  1551. flex-direction: row;
  1552. display: flex;
  1553. justify-content: space-between;
  1554. text {
  1555. display: inline-block;
  1556. width: 50%;
  1557. text-align: center;
  1558. height: 100%;
  1559. background-color: #e4e4e4;
  1560. }
  1561. // margin: 29rpx 0 0 120rpx;
  1562. }
  1563. .word12 {
  1564. width: 76rpx;
  1565. overflow-wrap: break-word;
  1566. color: rgba(213, 46, 76, 1);
  1567. font-size: 30rpx;
  1568. font-family: PingFangSC-Medium;
  1569. text-align: left;
  1570. white-space: nowrap;
  1571. margin-top: 1rpx;
  1572. display: block;
  1573. }
  1574. .info8 {
  1575. width: 117rpx;
  1576. overflow-wrap: break-word;
  1577. color: rgba(241, 241, 241, 1);
  1578. font-size: 30rpx;
  1579. font-family: PingFangSC-Regular;
  1580. text-align: left;
  1581. white-space: nowrap;
  1582. display: block;
  1583. background-color: $uni-color-BGC !important;
  1584. }
  1585. .guide {
  1586. background-color: #e4494f;
  1587. .guideCon {
  1588. .p {
  1589. /deep/ p {
  1590. padding: 0;
  1591. margin: 0;
  1592. }
  1593. }
  1594. image {
  1595. width: 100%;
  1596. height: 980rpx;
  1597. }
  1598. text {
  1599. font-size: 30rpx;
  1600. color: #fff;
  1601. }
  1602. }
  1603. }
  1604. .Limited {
  1605. text-align: center;
  1606. width: 690rpx;
  1607. margin: 18rpx auto 18rpx;
  1608. border: 1rpx solid $uni-color-BGC;
  1609. border-radius: 15rpx;
  1610. padding: 12rpx 0;
  1611. font-size: 26rpx;
  1612. color: $uni-color-BGC;
  1613. // text-indent:40rpx;
  1614. text {
  1615. display: inline-block;
  1616. padding: 2rpx 4rpx;
  1617. text-align: center;
  1618. line-height: 30rpx;
  1619. // letter-spacing:8rpx;
  1620. }
  1621. text:nth-child(4),
  1622. text:nth-child(6),
  1623. text:nth-child(8),
  1624. text:nth-child(10) {
  1625. color: #fff;
  1626. background-color: $uni-color-BGC;
  1627. margin: 0 14rpx;
  1628. border-radius: 10rpx;
  1629. }
  1630. .text {
  1631. margin-left: 20rpx;
  1632. }
  1633. /deep/ .u-countdown-item {
  1634. margin: 0 14rpx;
  1635. }
  1636. // .u-countdown {
  1637. // margin-left: 30rpx;
  1638. // }
  1639. }
  1640. }
  1641. </style>