My SMM panel
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

29 строки
717 B

  1. <template>
  2. <div id="main">
  3. <div v-once v-if="active == '#transaction-complete' && user.paying" class="status-dialog">
  4. <img class="icon" src="../../images/checked2.svg" alt=""/>
  5. <h3>Purchase complete.</h3>
  6. </div>
  7. <div v-once v-if="active == '#transaction-failed' && user.paying" class="status-dialog">
  8. <img class="icon" src="../../images/warning-colored.svg" alt=""/>
  9. <h3>Purchase failed.</h3>
  10. </div>
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. props: ['token', 'user', 'active'],
  16. //Should check that user is actualling in the paying state. If so, send get
  17. //request to panel/transaction-end. It's then() should emit a payment
  18. //complete to panel for a user state refresh.
  19. mounted() {
  20. }
  21. }
  22. </script>