pastDue.vue 879 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <el-dialog :close-on-click-modal="false" :visible.sync="$store.state.user.pastDue" width="400px" append-to-body class="pastDue" @close="pastDueclose">
  3. <p style="font-size:21px;">系统已到期</p>
  4. <p style="margin:0;">请在功道云积分服务群中联系专属客服或微信扫码添加功道云客服进行续费</p>
  5. <img src="static/images/lADPDhmOve9UdT3NAa7NAa4_430_430.jpg" style="width:100%">
  6. <p style="font-size:20px;">电话咨询:400-6877-880</p>
  7. </el-dialog>
  8. </template>
  9. <script>
  10. export default {
  11. data(){
  12. return{}
  13. },
  14. methods: {
  15. pastDueclose(){
  16. this.$store.dispatch('LogOut');
  17. this.$store.state.user.pastDue = false;
  18. },
  19. },
  20. }
  21. </script>
  22. <style scoped>
  23. .pastDue p{
  24. text-align: center;
  25. }
  26. /deep/ .el-dialog__body{
  27. padding: 20px 80px 15px;
  28. }
  29. </style>