盘点管理
This commit is contained in:
@@ -58,7 +58,7 @@
|
||||
created () {
|
||||
},
|
||||
onLoad (option) {
|
||||
this.checkCode = option.check_code
|
||||
this.checkCode = option.checkcode
|
||||
this._checkQueryDtl()
|
||||
},
|
||||
methods: {
|
||||
|
||||
@@ -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
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user