123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- <template>
- <view class="uni-column container" >
- <scroll-view class="scroll-container" scroll-y>
- <view v-for="(item, index) in listData" :key="index" class="list-item" @click="handleToreportingForWork">
- <view class="title-container uni-row">
- <view class="title uni-row">
- <text class="label">批次号:</text>
- <text class="label code">{{ item['productionPlanNo'] }}</text>
- </view>
- <view class=" uni-row" style="margin-left: 16rpx;">
- <view v-if="item['status'] == 1" class="tag"><text class="label">进行中</text></view>
- <view v-else-if="item['status'] == 2" class="tag turnover "><text class="label">周转中</text></view>
- <view v-else-if="item['status'] == 0" class="tag turnover "><text class="label">未开始</text></view>
- <view v-else type="default" class="tag finished"><text class="label">已完成</text></view>
- </view>
- </view>
- <view class="item-info uni-row">
- <text class="label">箱号</text>
- <text class="label right">{{ item['caseNumber'] }}</text>
- </view>
- <view class="item-info uni-row">
- <text class="label">总工时</text>
- <text class="label right">{{ item['totalWorkingHours']}}h</text>
- </view>
- <view class="item-info uni-row">
- <text class="label">合格数/投入数</text>
- <text class="label right">{{ item['qualifiedQuantity'] }}/{{item['invest']}}</text>
- </view>
- <view class="item-info uni-row">
- <text class="label">上道工序</text>
- <text class="label right">{{ item['previousProcess'] }}</text>
- </view>
- <view class="item-info uni-row">
- <text class="label">当前工序</text>
- <text class="label right">{{ item['currentProcess']}}</text>
- </view>
- <view class="item-info uni-row">
- <text class="label">下道工序</text>
- <text class="label right">{{ item['NextProcess'] }}</text>
- </view>
- <view class="status-btn uni-row">
- <view v-if="item['status'] == 1" class=" uni-row">
- <!-- <button class="turnover-tag" size="mini" @click="handleShowTurnoverApplication(null)">周转申请</button> -->
- <button class="reporting-tag" size="mini" @click="handleToreportingForWork" >去报工</button>
- </view>
- <view v-else-if="item['status'] == 2" class=" uni-row">
- <button class="turnover-tag" size="mini">取消周转</button>
- </view>
- </view>
- </view>
- </scroll-view>
- <view class="bottom uni-row">
- <button class="start-batch-btn" @click="handleShowLotDialog(listData)">开始新批次</button>
- </view>
- <dialog-lot ref="lotDialog"/>
- <dialog-turnoverApplication ref="turnoverApplicationDialog" />
- </view>
-
- </template>
- <script setup>
- import { reactive, ref } from 'vue'
- import { onLoad, onReady } from '@dcloudio/uni-app'
- import { getDayWorkList } from '@/api/business/dayWork.js'
-
- const turnoverApplicationDialog = ref(null)
- const lotDialog = ref(null)
- const listData = ref([])
- const bizDayworkObj = ref({})
-
- onLoad((options) => {
- init(options.id);
- })
- const handleShowTurnoverApplication = (data) => {
- let _data = data ?? {}
- // 调用子组件中的方法
- turnoverApplicationDialog.value.open(_data)
- }
- const handleShowLotDialog = (data) => {
- // if(data){
- // lotDialog.value.open(data)
- // }else{
- uni.navigateTo({
- url:"/pages/addNewBatch/index"
- })
- // }
- // let _data = data ?? {}
- // 调用子组件中的方法
- }
- function init(id){
- uni.showLoading({
- title: '加载中'
- });
- let reqData = {};
- reqData.productionPlanDetailSubDetailId = id;
- console.log(reqData)
- getDayWorkList(reqData).then(res => {
- listData.value = res.rows;
- uni.hideLoading();
- })
- }
- function handleToreportingForWork(){
- uni.navigateTo({
- url:"/pages/reportingForWork/index"
- })
- }
- </script>
- <style lang="scss">
- .container {
- height: 100%;
- background-color: #f5f5f5;
- }
- .scroll-container {
- width: 92%;
- margin: 24rpx auto 0 auto;
- height: 90%;
- }
- .list-item {
- background-color: #fff;
- position: relative;
- padding: 16rpx;
- padding-bottom: 24rpx;
- margin-bottom: 24rpx;
- border-radius: 10rpx;
- .title-container {
- justify-content: flex-start;
- margin-top: 8rpx;
- margin-bottom: 16rpx;
- .title {
- height: 48rpx;
- align-items: center;
- .label {
- font-size: 32rpx;
- font-weight: bold;
- &.code {
- margin-left: 8rpx;
- }
- }
- }
- .tag {
- border: 1px solid #1CE5B0;
- background-color: #F6FFFD;
- padding: 8rpx;
- border-radius: 8rpx;
- .label {
- color: #1CE5B0;
- font-size: 24rpx;
- }
- &.finished {
- border: 1px solid #BBBBBB;
- background-color: #F5F5F5;
- .label {
- color: #BBBBBB;
- }
- }
- &.turnover {
- border: 1px solid #FF7901;
- background-color: #F6FFFD;
- .label {
- color: #FF7901;
- }
- }
- }
- }
- .item-info {
- margin-bottom: 8rpx;
- .label {
- font-size: 28rpx;
- width: 220rpx;
- color: #808080;
- &.right {
- flex: 1;
- color: #000000;
- }
- }
- }
- .status-btn {
- justify-content: flex-end;
- align-items: center;
- .turnover-tag {
- padding-right: 12rpx;
- padding-left: 12rpx;
- border-radius: 8rpx;
- border: 1rpx solid #FF7901;
- background-color: #FF7901;
- font-size: 28rpx;
- color: #FFFFFF;
- }
- .reporting-tag {
- padding-right: 12rpx;
- padding-left: 12rpx;
- border-radius: 8rpx;
- margin-left: 16rpx;
- border: 1rpx solid #1684fc;
- background-color: #1684fc;
- font-size: 28rpx;
- color: #FFFFFF;
- }
- }
- }
- .bottom {
- height: 10%;
- position: fixed;
- right: 0;
- bottom: 0;
- left: 0;
- height: 80rpx;
- border-top: 1px solid #999999;
- padding: 16rpx 32rpx;
- align-items: center;
- background-color: #fff;
- .start-batch-btn {
- flex: 1;
- background-color: #1684fc;
- height: 100%;
- justify-content: center;
- align-items: center;
- border-radius: 8rpx;
- color: #FFFFFF;
- font-size: 28rpx;
- }
- }
- </style>
|