盘点管理

This commit is contained in:
2022-11-17 15:00:46 +08:00
parent 12e025ab10
commit 3b06619ac6
3 changed files with 6 additions and 5 deletions

View File

@@ -58,7 +58,7 @@
created () {
},
onLoad (option) {
this.checkCode = option.check_code
this.checkCode = option.checkcode
this._checkQueryDtl()
},
methods: {

View File

@@ -1,6 +1,6 @@
<template>
<view class="zd_container">
<nav-bar title="盘点"></nav-bar>
<nav-bar title="盘点管理"></nav-bar>
<view class="zd_content">
<view class="zd_wrapper">
<view class="filter_item">
@@ -27,7 +27,7 @@
</tr>
</thead>
<tbody>
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.bill_code === pkId}">
<tr v-for="(e, i) in dataList" :key="i" @click="toCheck(e)" :class="{'checked': e.check_code === pkId}">
<td>{{e.check_code}}</td>
<td>{{e.check_type}}</td>
<td>{{e.stor_name}}</td>
@@ -67,6 +67,7 @@
};
},
created () {
this._checkQuery()
},
methods: {
/** 初始化查询 */
@@ -77,7 +78,7 @@
toPandian () {
if (this.pkId) {
uni.navigateTo({
url: '/pages/WarehouseManage/CheckDtl?billcode=' + this.pkObj.check_code
url: '/pages/WarehouseManage/CheckDtl?checkcode=' + this.pkObj.check_code
})
}
},