This commit is contained in:
2023-07-23 12:56:58 +08:00
parent 60dc9ffe70
commit abb822ed9f
26 changed files with 156 additions and 106 deletions

View File

@@ -54,10 +54,10 @@
<tr v-for="e in dataList" :key="e.task_id" :class="{'selected_icon': pkId === e.task_id}" @click="toRadio(e)">
<td>{{ e.sep_on }}</td>
<td>{{ e.create_time }}</td>
<td>{{e.task_id}}</td>
<td>{{e.task_code}}</td>
<td>{{e.material_code}}</td>
<td>{{e.material_spec}}</td>
<td>{{e.material_qty | numeric(3)}}</td>
<td>{{e.material_qty | unitskg}}</td>
<td>{{ e.material_name }}</td>
</tr>
</tbody>
@@ -109,6 +109,7 @@ export default {
let res = await dictAll()
if (res.code === 200) {
this.options1 = [...res.content]
this.value1 = this.options1[0].value
}
},
// grid
@@ -163,7 +164,7 @@ export default {
},
async __washWashFinish () {
try {
let res = await washWashFinish(this.pkId)
let res = await washWashFinish(this.pkId, this.weight, this.vechile_code)
if (res.code === 200) {
this.toast(res.msg)
this._washWashTasks()
@@ -263,5 +264,5 @@ export default {
<style lang="stylus" scoped>
.grid_wraper
height calc(100% - 95px)
height calc(100% - 1.1rem)
</style>