My SMM panel
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

transaction-endpoint.vue 717 B

12345678910111213141516171819202122232425262728
  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>