修改
This commit is contained in:
@@ -38,10 +38,10 @@
|
|||||||
<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>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@@ -49,10 +49,10 @@
|
|||||||
<td>{{e.struct_code}}</td>
|
<td>{{e.struct_code}}</td>
|
||||||
<td>{{e.storagevehicle_code}}</td>
|
<td>{{e.storagevehicle_code}}</td>
|
||||||
<td>{{e.material_name}}</td>
|
<td>{{e.material_name}}</td>
|
||||||
<td>{{e.qty}}</td>
|
|
||||||
<td>{{e.material_spec}}</td>
|
<td>{{e.material_spec}}</td>
|
||||||
<td>{{e.material_code}}</td>
|
<td>{{e.material_code}}</td>
|
||||||
<td>{{e.pcsn}}</td>
|
<td>{{e.qty}}</td>
|
||||||
|
<td>{{e.qty_unit_name}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
<view class="zd_wrapper">
|
<view class="zd_wrapper">
|
||||||
<view class="zd-row border-bottom">
|
<view class="zd-row border-bottom">
|
||||||
<view class="zd-col-7">
|
<view class="zd-col-7">
|
||||||
<span class="filter_label">站点信息</span>
|
<span class="filter_label">起点站点</span>
|
||||||
</view>
|
</view>
|
||||||
<view class="zd-col-17">
|
<view class="zd-col-17">
|
||||||
<search-box
|
<search-box
|
||||||
|
|||||||
@@ -59,13 +59,13 @@ const request = (params) => {
|
|||||||
reject('request:fail')
|
reject('request:fail')
|
||||||
} else if (res[1] && res[1].statusCode === 400) {
|
} else if (res[1] && res[1].statusCode === 400) {
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
content: res[1].errMsg,
|
content: res[1].data.message || res[1].errMsg,
|
||||||
showCancel: false
|
showCancel: false
|
||||||
})
|
})
|
||||||
reject(res[1].errMsg)
|
reject(res[1].errMsg)
|
||||||
} else if (res[1] && res[1].statusCode === 401) {
|
} else if (res[1] && res[1].statusCode === 401) {
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
content: res[1].errMsg,
|
content: res[1].data.message || res[1].errMsg,
|
||||||
showCancel: false
|
showCancel: false
|
||||||
})
|
})
|
||||||
store.dispatch('delUserInfo', '')
|
store.dispatch('delUserInfo', '')
|
||||||
|
|||||||
Reference in New Issue
Block a user