| | |
| | | <!-- 中间状态部分,上下结构 --> |
| | | <view class="middle-section"> |
| | | <view class="item" style="height: 100px;"> |
| | | <h4>说明:多工单模式时调机送检是统一的</h4> |
| | | <h4>说明:调机开始时间需要手动确认</h4> |
| | | </view> |
| | | <view class="item" v-if="!maStartTime"> |
| | | <button class="btn-blue" @click="setStartTime">调机开始(=换模完成)</button> |
| | | <button class="btn-blue" @click="setMaStartTime">调机开始(=换模完成)</button> |
| | | <input class="txt-inp" v-model="maStartTime" placeholder="点击按钮带出时间" disabled="true" /> |
| | | </view> |
| | | <view class="item" v-else> |
| | |
| | | this.findByOrderId(); |
| | | }, |
| | | methods: { |
| | | setStartTime() { |
| | | setMaStartTime() { |
| | | this.maStartTime = this.$getDate('yyyy-mm-dd hh24:mi:ss'); |
| | | }, |
| | | refresh() { |
| | |
| | | this.$post({ |
| | | url: "/MesOrderSta/ChangeMachineTime", |
| | | data: { |
| | | maStartTime: this.maStartTime, // 新增调机时间 |
| | | maShoutTime: this.maShoutTime, |
| | | id: this.statusForm.id, |
| | | orderId: this.orderId, |