mes_mobile/pages/index/schedule.vue

64 lines
1.4 KiB
Vue
Raw Normal View History

2024-02-19 16:53:38 +08:00
<template>
2024-04-11 18:54:43 +08:00
<!-- 工单进度管理 -->
<view class="page_padding">
2024-03-13 16:07:11 +08:00
<view class="detail_list contentboxsty font13">
2024-02-19 16:53:38 +08:00
<view class="list_top">
<view class="top_left">
工单号:
</view>
<view class="top_right">
工单详情
</view>
</view>
<view class="list_content">
<view class="list_row">
<view class="row_left">
<view class="">开始时间</view>
2024-03-13 16:07:11 +08:00
<view class="">24-01-12 08:00</view>
2024-02-19 16:53:38 +08:00
</view>
<view class="row_right">
生产中
</view>
</view>
<view class="list_row padd_top12">
<view class="">计划完成</view>
2024-03-13 16:07:11 +08:00
<view class="">24-01-12 08:00</view>
2024-02-19 16:53:38 +08:00
</view>
<view class="padd_top12">
<progressBar :total="100" :val="20" title="" />
</view>
</view>
2024-03-13 16:07:11 +08:00
<!-- <annularProgressBar :progress_txt="20" :width="84" :height="69" title="出材率"/> -->
2024-04-11 18:54:43 +08:00
</view>
</view>
</template>
2024-02-19 16:53:38 +08:00
<script>
import progressBar from '/components/progressBar.vue'
2024-04-11 18:54:43 +08:00
import annularProgressBar from '/components/chocolate-progress-bar/chocolate-progress-bar.vue'
2024-02-19 16:53:38 +08:00
export default {
components: {
"progressBar":progressBar,
"annularProgressBar":annularProgressBar,
2024-04-11 18:54:43 +08:00
},
data() {
return {
list:[{name:''}]
}
},
methods: {
}
}
</script>
<style lang="scss">
2024-02-19 16:53:38 +08:00
.detail_list{
.list_content{
2024-03-13 16:07:11 +08:00
.list_row{display: flex;
.row_left{display: flex;}
}
2024-02-19 16:53:38 +08:00
}
2024-04-11 18:54:43 +08:00
}
</style>