yitisheng-mini-app/pages/zyb/other/updateLogs.vue

41 lines
862 B
Vue

<script>
export default {
components: {},
data() {
return {
colors:'#fa436a',
//模拟后台返回的数据
stepData: [
{
name: '本科专业更新',
time: '2024-02-12 10:01:49',
isNow: 0,
type: 1,
desc: '艺术类'
},
{
name: '专科专业更新',
time: '2024-02-12 12:05:30',
isNow: 1,
type: 1,
desc: '艺术类'
}
]
}
},
onLoad() {
// 步骤数组数据反序
/*this.stepData.reverse()*/
},
}
</script>
<template>
<image src="https://mp-7a4eecb1-2a04-4d36-b050-1c4a78cc31a4.cdn.bspapp.com/images/oneByOne.png" style="width: 100%;height: 500%"/>
<!-- <cc-defineStep :colors="colors" :stepData="stepData"></cc-defineStep>-->
</template>
<style scoped lang="scss">
</style>