天波用户运营管理后台系统
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

44 行
963B

  1. <!--
  2. * @Date: 2022-09-08 15:55:10
  3. * @LastEditors: JinxChen
  4. * @LastEditTime: 2022-09-08 16:11:22
  5. * @FilePath: \TelpoUserManageAdmin\src\views\traffic-statistics\main\ssjl-statistics\index.vue
  6. * @description:
  7. -->
  8. <template>
  9. <div class="app-container">
  10. <div class="home-container">
  11. <p>账号: <el-input v-model="account" ></el-input></p>
  12. <p>密码: <el-input v-model="password" ></el-input></p>
  13. <el-button type="success" icon="el-icon-paperclip" @click="onJumpBaidu">点击跳转百度统计平台</el-button>
  14. </div>
  15. </div>
  16. </template>
  17. <script>
  18. export default {
  19. name: 'ssjl-statistics',
  20. data(){
  21. return {
  22. hrefUrl: 'https://tongji.baidu.com/web5/welcome/login',
  23. account: 'ssjlai',
  24. password: 'Ssjlai_123456'
  25. }
  26. },
  27. methods: {
  28. onJumpBaidu() {
  29. window.open(this.hrefUrl);
  30. }
  31. }
  32. }
  33. </script>
  34. <style scoped lang="scss">
  35. .home-container {
  36. .el-input {
  37. width: 200px;
  38. }
  39. }
  40. </style>