index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. <template>
  2. <div class="container">
  3. <top-bar :theme="topBarTheme"
  4. :title="topBarTitle"
  5. :backAction="'goHome'"
  6. @goHome="goHome">
  7. </top-bar>
  8. <van-popup v-model="exchangePopup" round closeable>
  9. <div class="panel">
  10. <p class="p-title">兑换颜豆</p>
  11. <p class="p-text">本次兑换将消耗<span style="color: #F74C31;">{{exchangeNum/10}}元</span>,兑换后不可反悔</p>
  12. <div class="p-exc">
  13. <div class="pe-pirce-box">
  14. <p class="pe-num">{{exchangeNum/10}}</p>
  15. <p class="pe-unit">元</p>
  16. </div>
  17. <img class="pe-exchange" src="~@/assets/wallet/exchange.png">
  18. <div class="pe-pirce-box">
  19. <img src="~@/assets/wallet/yd.png" class="pe-yd">
  20. <p class="pe-unit" style="font-weight: bolder;">{{exchangeNum}}颜豆</p>
  21. </div>
  22. </div>
  23. <div class="p-btn" @click="exchange">确认兑换</div>
  24. <div class="p-tip">
  25. 点击“确认兑换”将进行面容识别,
  26. </div>
  27. <div class="p-tip">
  28. 以确保余额安全。
  29. </div>
  30. </div>
  31. </van-popup>
  32. <div class="top-box">
  33. <img src="~@/assets/wallet/exchange_bg.png" class="top_bg">
  34. <div class="top-info">
  35. <div class="top-label">
  36. 可兑换金额(元)
  37. </div>
  38. <div class="top-price-box">
  39. <img src="~@/assets/wallet/unit.png" class="tpb-unit">
  40. <span class="tpb-num">{{totalMoney}}</span>
  41. <span class="rule">1元=10颜豆</span>
  42. </div>
  43. </div>
  44. </div>
  45. <div class="form-box">
  46. <div class="form-title">兑换颜豆</div>
  47. <div class="form-input-box">
  48. <div class="fib-left">
  49. <img src="~@/assets/wallet/yd.png" class="fib-img">
  50. <input v-model="exchangeNum"
  51. type="number"
  52. class="fib-input"
  53. maxlength="5"
  54. v-on:keyup="numInput($event)"
  55. :style="{'color':`${inputError?'#FF6A6A':''}`}"
  56. placeholder="请输入要兑换的颜豆数量" />
  57. </div>
  58. </div>
  59. <div class="tip-box">
  60. <div class="tip" :style="{'color':`${inputError?'#FF6A6A':'#999999'}`}">
  61. {{inputErrorText}}
  62. </div>
  63. <div class="all" @click="allEx">
  64. 全部兑换
  65. </div>
  66. </div>
  67. <div class="btn-box" @click="showExchangePopup" :style="{'background':`${!inputError&&exchangeNum>0?'#FFC107':'#FFE699'}`}">
  68. 立即兑换
  69. </div>
  70. <div class="prot-box">
  71. <span class="prot-text">点击“立即兑换”代表你同意<span style="color:#9580FF;text-decoration: underline;" @click="toLink('https://h5.sugarpark.cn/agreement/jx/yanbean-buy.html')">《颜豆购买协议》</span></span>
  72. </div>
  73. </div>
  74. <div class="null-box">
  75. </div>
  76. </div>
  77. </template>
  78. <script>
  79. import topBar from "@/views/wallet/components/topBar.vue";
  80. import {getBiztoken,getFaceResult} from '@/util/faceAuth.js'
  81. import {isMobile,isIphoneX,isSafari,toDecimal2,dataURLtoFile} from '@/util/index.js';
  82. export default {
  83. name: "exchange",
  84. components:{topBar},
  85. data() {
  86. return{
  87. topBarTitle:'兑换颜豆',
  88. topBarTheme:'white',
  89. exchangePopup:false,
  90. topBarActionText:'遇到问题',
  91. exchangeNum:null,//颜豆数量
  92. inputErrorText:'',
  93. inputError:false,
  94. totalMoney:0,
  95. }
  96. },
  97. created() {
  98. if(location.href.indexOf('result_id')!==-1&&localStorage.exResultOrderId!==localStorage.createIncomeOrderId){//获取活体检测结果
  99. this.getResult();
  100. }
  101. },
  102. mounted() {
  103. this.totalMoney=parseInt(this.$store.state.withdrawMyInfo.canAmountFen);
  104. this.$nextTick(() => {
  105. // 监听滚动条
  106. window.addEventListener("scroll", this.handleScroll);
  107. });
  108. if(this.totalMoney===0){
  109. this.inputErrorText=`暂无可兑换颜豆`;
  110. this.inputError=true;
  111. return
  112. }
  113. this.inputErrorText=`当前最多可兑换颜豆${this.totalMoney*10}个`;
  114. },
  115. computed:{
  116. withdrawMyInfo(){
  117. return this.$store.state.withdrawMyInfo;
  118. }
  119. },
  120. methods:{
  121. goHome(){
  122. this.$router.replace({name:'walletHome'});
  123. },
  124. toLink(url){
  125. window.open(url,'_blank');
  126. },
  127. numInput(e){
  128. if(Number(e.target.value)%10>0){
  129. this.inputError=true;
  130. this.inputErrorText=`只能输入10的整数倍`;
  131. return;
  132. }
  133. let value=Number(e.target.value/10);
  134. if(this.totalMoney===0){
  135. this.inputErrorText=`暂无可兑换颜豆`;
  136. this.inputError=true;
  137. return
  138. }
  139. if(value===0){
  140. this.inputError=false;
  141. this.inputErrorText=`当前最多可兑换颜豆${this.totalMoney*10}个`;
  142. return;
  143. }
  144. if(value>this.totalMoney){
  145. this.inputError=true;
  146. this.inputErrorText='当前超出可兑换数量'
  147. return;
  148. }
  149. this.inputError=false;
  150. this.inputErrorText=`当前最多可兑换颜豆${this.totalMoney*10}个`;
  151. },
  152. allEx(){
  153. if(parseInt(this.totalMoney*10)===0){return;}
  154. this.exchangeNum=parseInt(this.totalMoney*10);
  155. },
  156. showExchangePopup(){
  157. if(this.exchangeNum===null||this.exchangeNum===''||this.inputError){
  158. return;
  159. }
  160. this.exchangePopup=true;
  161. },
  162. handleScroll(){
  163. let scrollTop =window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop;
  164. if(scrollTop>30){
  165. this.topBarTheme='black';
  166. }else{
  167. this.topBarTheme='white';
  168. }
  169. },
  170. getResult(){
  171. let locationHref=location.href;
  172. let str=locationHref.substr(locationHref.indexOf("?")+1);
  173. let arr=str.split("&");
  174. let bizToken="",resultId="";
  175. for(let i=0;i<arr.length;i++){
  176. let name=arr[i].substring(0,arr[i].indexOf("="));
  177. let value=arr[i].substr(arr[i].indexOf("=")+1);
  178. if(name==='biztoken'){
  179. bizToken=value;
  180. }
  181. if(name==='result_id'){
  182. resultId=value;
  183. }
  184. }
  185. if(bizToken!==''&&resultId!==''){
  186. this.$toast.loading({
  187. message: '加载中...',
  188. forbidClick: true,
  189. duration:0
  190. });
  191. getFaceResult(bizToken,resultId).then(result=>{
  192. if(result.passed===true){//识别通过
  193. this.$api.faceAuth.checkRealManFace({}).then(checkResult=>{//检查是否存有人脸照
  194. if(checkResult.data.hasFace){//有人脸
  195. this.$api.faceAuth.upload({//上传base64到oss
  196. originalFilename:result.request_id+'.jpg',
  197. faceImagStr:result.base64_liveness_face_image
  198. }).then(media=>{
  199. if(media.code===0){
  200. this.$toast.loading({
  201. message: '人脸比对中...',
  202. forbidClick: true,
  203. duration:0
  204. });
  205. this.$api.faceAuth.compareFace({
  206. imgUrl:media.data,
  207. scene:'IncomeExchangeCoin',
  208. completeUser:this.$store.state.withdrawUserInfo,
  209. }).then(compare=>{//进行人脸比对
  210. if(compare.data.succ){//人脸比对成功
  211. this.$toast.loading({
  212. message: '兑换中...',
  213. forbidClick: true,
  214. duration:0
  215. });
  216. this.$api.bag.submitIncomeOrder({//提交兑换颜豆订单
  217. completeUser:this.$store.state.withdrawUserInfo,
  218. faceToken:compare.data.succToken,
  219. orderId:localStorage.createIncomeOrderId,
  220. }).then(res=>{
  221. this.$toast.clear();
  222. if(res.data.succ){
  223. this.$router.replace({name:'exchangeSuccess',params:{id:localStorage.createIncomeOrderId}});
  224. }
  225. else{
  226. if(res.data.needDone){
  227. this.$dialog.alert({
  228. message: res.data.needDone,
  229. });
  230. }
  231. else{
  232. this.$dialog.alert({
  233. message: res.data.msg,
  234. });
  235. }
  236. }
  237. }).catch(err=>{
  238. this.$toast.clear();
  239. this.$dialog.alert({
  240. message: err.msg
  241. });
  242. })
  243. }else{//比对失败
  244. this.$toast.clear();
  245. this.$dialog.alert({
  246. message: compare.msg
  247. });
  248. }
  249. }).catch(err=>{
  250. this.$toast.clear();
  251. this.$dialog.alert({
  252. message: err.msg
  253. });
  254. })
  255. }
  256. else{
  257. this.$toast.clear();
  258. this.$dialog.alert({
  259. message: media.msg
  260. });
  261. }
  262. }).catch(err=>{
  263. this.$toast.clear();
  264. this.$dialog.alert({
  265. message: err.msg
  266. });
  267. })
  268. }
  269. else{//无人脸直接兑换
  270. this.$toast.loading({
  271. message: '兑换中...',
  272. forbidClick: true,
  273. duration:0
  274. });
  275. this.$api.bag.submitIncomeOrder({//提交兑换颜豆订单
  276. completeUser:this.$store.state.withdrawUserInfo,
  277. faceToken:'faceToken',
  278. orderId:localStorage.createIncomeOrderId,
  279. }).then(res=>{
  280. this.$toast.clear();
  281. if(res.data.succ){
  282. this.$router.replace({name:'exchangeSuccess'});
  283. }
  284. else{
  285. if(res.data.needDone){
  286. this.$dialog.alert({
  287. message: res.data.needDone,
  288. });
  289. }
  290. else{
  291. this.$dialog.alert({
  292. message: res.data.msg,
  293. });
  294. }
  295. }
  296. }).catch(err=>{
  297. this.$toast.clear();
  298. this.$dialog.alert({
  299. message: err.msg
  300. });
  301. })
  302. }
  303. }).catch(err=>{//人脸检查失败
  304. this.$toast.clear();
  305. this.$dialog.alert({
  306. message: err.msg
  307. });
  308. })
  309. }else{//识别失败
  310. this.$toast.clear();
  311. this.$dialog.alert({
  312. message: result,
  313. });
  314. }
  315. });
  316. }
  317. },
  318. exchange(){
  319. this.$toast.loading({
  320. message: '加载中...',
  321. forbidClick: true,
  322. duration:0
  323. });
  324. this.$api.bag.createIncomeOrder({coin:this.exchangeNum,completeUser:this.$store.state.withdrawUserInfo}).then(res=>{
  325. if(res.status==='Succ'){
  326. localStorage.setItem('createIncomeOrderId',res.data.orderId);//兑换颜豆订单保存本地
  327. localStorage.setItem('exchangeNum',this.exchangeNum);//保存兑换颜豆数量
  328. if(res.data.succ===true){
  329. getBiztoken(`${window.location.origin}/exchange`).then(result=>{
  330. window.location.href=result;
  331. }).catch(err=>{
  332. this.$toast.clear();
  333. this.$toast.fail(err.msg);
  334. });
  335. }
  336. else{
  337. this.$toast.clear();
  338. this.$dialog.alert({
  339. message: res.data.msg,
  340. });
  341. }
  342. }
  343. else{
  344. this.$toast.clear();
  345. this.$dialog.alert({
  346. message: res.msg,
  347. });
  348. }
  349. }).catch(err=>{
  350. this.$toast.clear();
  351. this.$toast.fail(err.msg);
  352. });
  353. }
  354. }
  355. }
  356. </script>
  357. <style lang="scss" scoped>
  358. @import './index.scss';
  359. </style>