systemInfo.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <view class="">
  3. <navBar name="系统消息"/>
  4. <view class="info-title">{{systemInfo.title}}</view>
  5. <view class="info-time">{{tools.formatTime(systemInfo.ctime)}}</view>
  6. <view class="nodes">
  7. <rich-text v-if="systemInfo.content" :nodes="systemInfo.content"></rich-text>
  8. </view>
  9. </view>
  10. </template>
  11. <script module="tools" lang="wxs" src="@/pages/common/wxs/tools.wxs"></script>
  12. <script module="tools" lang="sjs" src="@/pages/common/wxs/tools.sjs"></script>
  13. <script>
  14. const config = require('@/common/config.js');
  15. const http = require('@/common/http.js');
  16. const request = require('@/common/request.js');
  17. const common = require('@/common/common.js');
  18. export default {
  19. data() {
  20. return {
  21. systemInfo:{},
  22. id:''
  23. }
  24. },
  25. onLoad(options){
  26. this.id = options.id || ''
  27. this.querySystemMsg()
  28. },
  29. methods: {
  30. querySystemMsg() {
  31. const pData={
  32. id:this.id,
  33. type:'PLAT'
  34. }
  35. http.postApi(config.API_MESSAGE_DTL, pData, res => {
  36. if (res.succeed) {
  37. this.systemInfo = res.body.data
  38. }
  39. })
  40. },
  41. }
  42. }
  43. </script>
  44. <style>
  45. .info-title{
  46. font-family: PingFangSC, PingFang SC;
  47. font-weight: 600;
  48. font-size: 36rpx;
  49. color: #060809;
  50. padding: 20rpx 32rpx;
  51. }
  52. .info-time{
  53. font-family: Futura, Futura;
  54. font-weight: 500;
  55. font-size: 24rpx;
  56. color: #060809;
  57. opacity: 0.4;
  58. padding: 20rpx 32rpx;
  59. }
  60. .nodes{
  61. color: #333;
  62. font-size: 28rpx;
  63. padding: 34rpx 32rpx 32rpx;
  64. }
  65. </style>