App.vue 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <script>
  2. export default {
  3. globalData: {
  4. appid: "03768224",
  5. appsecret: "zSwNIBwbKeUzKC7sKGFloo5ID",
  6. services: {
  7. accessTokenUrl: 'https://23060001.zhimakaifa.com:8777/api/get_token.php',
  8. loginUrl: "https://23060001.zhimakaifa.com:8777/api/login.php",
  9. createInterviewUrl:"https://23060001.zhimakaifa.com:8777/api/create_interview.php",
  10. getInterviewHistory:"https://23060001.zhimakaifa.com:8777/api/get_interview_history.php",
  11. interviewdetail:"https://23060001.zhimakaifa.com:8777/api/get_interviewdetail.php",
  12. chatInterviewUrl:"https://23060001.zhimakaifa.com:8777/api/chat_interview.php"
  13. }
  14. },
  15. onLaunch: function() {
  16. },
  17. onShow: function() {
  18. },
  19. onHide: function() {
  20. }
  21. }
  22. </script>
  23. <style lang="scss">
  24. @import "uview-ui/index.scss";
  25. html,
  26. body,
  27. page {
  28. background-color: $uni-bg-color-grey;
  29. }
  30. .select-hover-class {
  31. //首页导航栏按钮
  32. background-color: $uni-color-subtitle !important;
  33. }
  34. .message-hover-class {
  35. //评论区 点击
  36. background-color: $uni-bg-color-hover !important;
  37. }
  38. .contentType2-hover-class {
  39. //语音信息点击
  40. background-color: #c7c6c6 !important;
  41. }
  42. image {
  43. will-change: transform;
  44. }
  45. .u-actionsheet-cancel,
  46. .u-action-sheet-itemz {
  47. font-size: 28rpx !important;
  48. }
  49. </style>