cesi.vue 996 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <view class="content">
  3. </view>
  4. </template>
  5. <script>
  6. import { Search, Reports, Research } from "@/config/api.js";
  7. export default {
  8. data() {
  9. return {
  10. ListHz: [],
  11. ListYx: [],
  12. };
  13. },
  14. methods: {
  15. getDataList() {
  16. Reports.getReportSearchReport({
  17. KeyWord: "科技",
  18. }).then((res) => {
  19. if (res.Ret === 200) {
  20. this.ListHz = res.Data.ListHz || [];
  21. this.ListYx = res.Data.ListYx || [];
  22. }
  23. });
  24. },
  25. onLoad() {
  26. this.getDataList();
  27. },
  28. },
  29. };
  30. </script>
  31. <style lang="scss" scoped>
  32. .content {
  33. .content-list {
  34. .resource {
  35. padding: 0 30rpx;
  36. background-color: #fff;
  37. margin-top: 4rpx;
  38. height: 91rpx;
  39. width: 100%;
  40. display: flex;
  41. align-items: center;
  42. justify-content: center;
  43. color: #333333;
  44. font-size: 30rpx;
  45. image {
  46. width: 34rpx;
  47. height: 36rpx;
  48. margin-right: 10rpx;
  49. }
  50. }
  51. }
  52. }
  53. </style>