detail.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <view class="content">
  3. <view class="title">{{pageData.title}}</view>
  4. <view class="container">
  5. <u-parse :content="pageData.content"></u-parse>
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. var that = ""
  11. import $api from '@/static/js/api.js'
  12. export default {
  13. data() {
  14. return{
  15. pageData: {
  16. },
  17. id: '',
  18. }
  19. },
  20. onLoad(options) {
  21. that = this
  22. that.id = options.id
  23. that.getData()
  24. },
  25. methods: {
  26. getData() {
  27. $api.req({
  28. url: '/data/api.business.User/message_details',
  29. method: 'POST',
  30. data: {
  31. id: that.id
  32. }
  33. }, function(res) {
  34. if(res.code == 1) {
  35. console.log(res);
  36. that.pageData = res.data
  37. }
  38. })
  39. }
  40. }
  41. }
  42. </script>
  43. <style scoped lang="scss">
  44. .content {
  45. background-color: #fff;
  46. padding: 0 30rpx;
  47. .title {
  48. width: 100%;
  49. margin: 40rpx 0 24rpx;
  50. font-size: 40rpx;
  51. line-height: 56rpx;
  52. color: #222;
  53. font-weight: 600;
  54. }
  55. .container {
  56. font-size: 36rpx;
  57. color: #444;
  58. line-height: 50rpx;
  59. padding-top: 20rpx;
  60. }
  61. }
  62. </style>