24 lines
304 B
Vue
24 lines
304 B
Vue
<template>
|
|
<view class="teacher-orders">
|
|
<view class="order-item">
|
|
<text>教师订单管理页</text>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
orderList: []
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.teacher-orders {
|
|
padding: 20rpx;
|
|
}
|
|
</style>
|