123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <!-- 现场检查 -->
- <template>
- <view class="planDetail">
- <scroll-view scroll-y @scrolltolower="scrollGet" class="info-max-box">
- <view class="college">请选择学院单位
-
- </view>
- </scroll-view>
- </view>
- </template>
- <script>
- import {
- config
- } from '@/api/request/config.js'
- import {} from '@/pages/api/index.js'
- export default {
- name: "planDetail",
- components: {
- },
- data() {
- return {
- baseUrl: config.base_url,
- pageType: 0,
- }
- },
- onLoad(option) {
- },
- onShow() {
- },
- mounted() {
- },
- methods: {
- //滚动事件
- scrollGet() {},
- }
- }
- </script>
- <style lang="stylus" scoped>
- .planDetail {
- height: 100%;
- display flex;
- box-sizing: border-box;
- #fontColor-A {
- color: #0040C1;
- }
- #fontColor-B {
- color: #009519;
- }
- #bgColor-A {
- color: #0183FA;
- background: rgba(1, 131, 250, 0.2);
- }
- #bgColor-B {
- color: #16B531;
- background: rgba(22, 181, 49, 0.2);
- }
- }
- </style>
|