Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

48 řádky
847 B

  1. <template>
  2. <view>
  3. <tki-qrcode
  4. style="display: flex;justify-content: center;margin-top: 18px;"
  5. ref="qrcode"
  6. val="http://localhost:8080/#/pages/onlienpay/payqrcode?id=15641654"
  7. :size="300"
  8. :onval="true"
  9. :loadMake="true"
  10. />
  11. <view class="btn" @click="submit">查询结果</view>
  12. <view class="btn bg-white" @click="cancel">取消</view>
  13. </view>
  14. </template>
  15. <script>
  16. export default {
  17. data() {
  18. return {
  19. payData:"",
  20. }
  21. },
  22. methods: {
  23. getPayData(id){
  24. this.LOADING();
  25. this.HTTP_GET('StuInfoFresh/saveStuInfoFresh', {id},).then(res => {
  26. this.HIDE_LOADING();
  27. if (res) {
  28. this.payData = res
  29. }
  30. });
  31. },
  32. cancel(){
  33. this.NAV_BACK()
  34. }
  35. },
  36. onLoad({id}) {
  37. this.getPayData(id)
  38. }
  39. }
  40. </script>
  41. <style scoped lang="scss">
  42. .bg-white{
  43. background-color: gray;
  44. }
  45. </style>