This commit is contained in:
2025-02-06 09:48:22 +08:00
parent f290d848a4
commit e563eebf91

View File

@@ -7,30 +7,28 @@
<table>
<thead>
<tr>
<th>任务编码</th>
<th>状态</th>
<th>工单编码</th>
<th>序号</th>
<th>物料编码</th>
<th>物料名称</th>
<th>产线</th>
<th>站点编码</th>
<th>物料重量</th>
<th>配料桶数</th>
<th>剩余桶数</th>
<th>物料重量</th>
<th>状态</th>
<th>站点编码</th>
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.work_code === pkId}">
<td>{{e.work_code}}</td>
<td>{{ e.status }}</td>
<td>{{ e.mfg_order_name }}</td>
<td>{{ e.seq_no }}</td>
<td>{{ e.material_code }}</td>
<td>{{ e.material_name }}</td>
<td>{{ e.resource_name }}</td>
<td>{{ e.point_code }}</td>
<td>{{ e.qty }}</td>
<td>{{ e.require_num }}</td>
<td>{{ e.remain_num }}</td>
<td>{{ e.qty }}</td>
<td>{{ e.status }}</td>
<td>{{ e.resource_name }}</td>
</tr>
</tbody>
</table>
@@ -47,7 +45,7 @@
<script>
import NavBar from '@/components/NavBar.vue'
import SearchBox from '@/components/SearchBox.vue'
import {queryWorks, handConfirm} from '@/utils/mork2.js'
import {queryWorks, handConfirm} from '@/utils/getData2.js'
export default {
components: {
NavBar,