AI销管
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

73 lines
1.4 KiB

  1. <template>
  2. <view class="help-box">
  3. <view class="top-box">
  4. <view class="title">{{questions.name}}</view>
  5. <view class="date">{{questions.date}}</view>
  6. <view class="answer">{{questions.answer}}</view>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. let domain = require("@/utils/domain")
  12. export default {
  13. data() {
  14. return {
  15. questions:{
  16. name: '如何查看设备是否有电',
  17. date: '2020-05-07 12:24:20',
  18. answer: '1、打开小程序查看设备管理查看设备电量;2、通过PC设备监控查看设备电量。'
  19. },
  20. };
  21. },
  22. onShow() {
  23. },
  24. methods: {
  25. },
  26. }
  27. </script>
  28. <style lang="scss">
  29. .help-box{
  30. width: 100%;
  31. min-height: 100vh;
  32. overflow: hidden;
  33. background: #F8F8F8;
  34. padding-top: 20rpx;
  35. display: flex;
  36. flex-direction: column;
  37. .top-box{
  38. flex: 1;
  39. background: #fff;
  40. padding: 30rpx;
  41. .title{
  42. height: 45rpx;
  43. font-size: 32rpx;
  44. font-family: PingFangSC-Semibold, PingFang SC;
  45. font-weight: 600;
  46. color: #333333;
  47. line-height: 45rpx;
  48. margin-bottom: 16rpx;
  49. }
  50. .date{
  51. height: 32rpx;
  52. font-size: 24rpx;
  53. font-family: PingFangSC-Regular, PingFang SC;
  54. font-weight: 400;
  55. color: #303030;
  56. line-height: 32rpx;
  57. margin-bottom: 24rpx;
  58. }
  59. .answer{
  60. font-size: 30rpx;
  61. font-family: PingFangSC-Regular, PingFang SC;
  62. font-weight: 400;
  63. color: #333333;
  64. line-height: 46rpx;
  65. }
  66. }
  67. }
  68. </style>