| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <script>
- export default {
- globalData: {
- appid: "03768224",
- appsecret: "zSwNIBwbKeUzKC7sKGFloo5ID",
- services: {
- accessTokenUrl: 'https://23060001.zhimakaifa.com:8777/api/get_token.php',
- loginUrl: "https://23060001.zhimakaifa.com:8777/api/login.php",
- createInterviewUrl:"https://23060001.zhimakaifa.com:8777/api/create_interview.php",
- getInterviewHistory:"https://23060001.zhimakaifa.com:8777/api/get_interview_history.php",
- interviewdetail:"https://23060001.zhimakaifa.com:8777/api/get_interviewdetail.php",
- chatInterviewUrl:"https://23060001.zhimakaifa.com:8777/api/chat_interview.php"
- }
- },
- onLaunch: function() {
- },
- onShow: function() {
- },
- onHide: function() {
- }
- }
- </script>
- <style lang="scss">
- @import "uview-ui/index.scss";
- html,
- body,
- page {
- background-color: $uni-bg-color-grey;
- }
- .select-hover-class {
- //首页导航栏按钮
- background-color: $uni-color-subtitle !important;
- }
- .message-hover-class {
- //评论区 点击
- background-color: $uni-bg-color-hover !important;
- }
- .contentType2-hover-class {
- //语音信息点击
- background-color: #c7c6c6 !important;
- }
- image {
- will-change: transform;
- }
- .u-actionsheet-cancel,
- .u-action-sheet-itemz {
- font-size: 28rpx !important;
- }
- </style>
|