1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <view class="content">
- </view>
- </template>
- <script>
- import { Search, Reports, Research } from "@/config/api.js";
- export default {
- data() {
- return {
- ListHz: [],
- ListYx: [],
- };
- },
- methods: {
- getDataList() {
- Reports.getReportSearchReport({
- KeyWord: "科技",
- }).then((res) => {
- if (res.Ret === 200) {
- this.ListHz = res.Data.ListHz || [];
- this.ListYx = res.Data.ListYx || [];
- }
- });
- },
- onLoad() {
- this.getDataList();
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .content {
- .content-list {
- .resource {
- padding: 0 30rpx;
- background-color: #fff;
- margin-top: 4rpx;
- height: 91rpx;
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #333333;
- font-size: 30rpx;
- image {
- width: 34rpx;
- height: 36rpx;
- margin-right: 10rpx;
- }
- }
- }
- }
- </style>
|