geng_duo.vue 679 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <view>
  3. <u-navbar :autoBack="true" title="民俗宗教" bgColor="rgba(255,255,255,0)" :placeholder="true" titleStyle="font-weight:bold;color:#121212"></u-navbar>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {};
  10. },
  11. onLoad(o) {
  12. console.log(o);
  13. this.getContentList(o);
  14. },
  15. methods: {
  16. // 栏目内容列表查看更多
  17. getContentList(o) {
  18. this.$api.getContentList(
  19. {
  20. model_id: o.id,
  21. main_body_id: o.main_body_id,
  22. main_body_column_id: o.main_body_column_id,
  23. page: '1',
  24. pageSize: '10'
  25. },
  26. function (res) {
  27. console.log(res, '内容列表全部');
  28. }
  29. );
  30. }
  31. }
  32. };
  33. </script>
  34. <style></style>