|
@@ -1,11 +1,19 @@
|
|
<template>
|
|
<template>
|
|
<view class="sop">
|
|
<view class="sop">
|
|
|
|
+ <view class="status-bar">
|
|
|
|
+ <!-- 这里是状态栏 -->
|
|
|
|
+ </view>
|
|
|
|
+ <div class="custom-navigation">
|
|
|
|
+ <UserSpace></UserSpace>
|
|
|
|
+ </div>
|
|
<u-tabs :list="tabList" :is-scroll="true" :current="current" @change="tabChange"></u-tabs>
|
|
<u-tabs :list="tabList" :is-scroll="true" :current="current" @change="tabChange"></u-tabs>
|
|
- <SopList v-if="current == 0" type="OFFICE_SOP_FLOW"></SopList>
|
|
|
|
- <SopList v-if="current == 1" type="CLOUD_MARK_SOP_FLOW"></SopList>
|
|
|
|
- <ProjectChangeReport v-if="current == 2"></ProjectChangeReport>
|
|
|
|
- <DelayWarning v-if="current == 3"></DelayWarning>
|
|
|
|
- <ViolationRegistration v-if="current == 4"></ViolationRegistration>
|
|
|
|
|
|
+ <view style="height: calc(100% - 25px - 180rpx)">
|
|
|
|
+ <SopList v-if="current == 0" type="OFFICE_SOP_FLOW"></SopList>
|
|
|
|
+ <SopList v-if="current == 1" type="CLOUD_MARK_SOP_FLOW"></SopList>
|
|
|
|
+ <ProjectChangeReport v-if="current == 2"></ProjectChangeReport>
|
|
|
|
+ <DelayWarning v-if="current == 3"></DelayWarning>
|
|
|
|
+ <ViolationRegistration v-if="current == 4"></ViolationRegistration>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
|
|
|
|
@@ -14,10 +22,10 @@
|
|
import ProjectChangeReport from './project-change-report/index.vue'
|
|
import ProjectChangeReport from './project-change-report/index.vue'
|
|
import DelayWarning from './delay-warning/index.vue'
|
|
import DelayWarning from './delay-warning/index.vue'
|
|
import ViolationRegistration from './violation-registration/index.vue'
|
|
import ViolationRegistration from './violation-registration/index.vue'
|
|
-
|
|
|
|
|
|
+ import UserSpace from '@/components/user-space.vue'
|
|
export default {
|
|
export default {
|
|
name: 'Sop',
|
|
name: 'Sop',
|
|
- components: { SopList, ProjectChangeReport, DelayWarning, ViolationRegistration },
|
|
|
|
|
|
+ components: { SopList, ProjectChangeReport, DelayWarning, ViolationRegistration, UserSpace },
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
tabList: [{ name: '教务处SOP' }, { name: '研究生SOP' }, { name: '项目计划变更' }, { name: '延期预警' }, { name: '违规登记' }],
|
|
tabList: [{ name: '教务处SOP' }, { name: '研究生SOP' }, { name: '项目计划变更' }, { name: '延期预警' }, { name: '违规登记' }],
|