Commit aee01501 authored by hubaoshan's avatar hubaoshan

wcp

parent 942407cf
...@@ -47,3 +47,9 @@ export function delPd(data) { ...@@ -47,3 +47,9 @@ export function delPd(data) {
params: data params: data
}) })
} }
export function getDicts(dictType) {
return request({
url: '/system/dict/data/type/' + dictType,
method: 'get'
})
}
This diff is collapsed.
...@@ -5,12 +5,7 @@ ...@@ -5,12 +5,7 @@
<el-table-column type="index" label="序号" width="50" /> <el-table-column type="index" label="序号" width="50" />
<el-table-column label="orderSn"> <el-table-column label="orderSn">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.orderSn || '-' }}</span> <span>{{ scope.row.orderSn || '-' }}({{ scope.row.name || '-' }})</span>
</template>
</el-table-column>
<el-table-column label="人员">
<template slot-scope="scope">
<span>{{ scope.row.name || '-' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作"> <el-table-column label="操作">
...@@ -54,7 +49,8 @@ export default { ...@@ -54,7 +49,8 @@ export default {
this.$router.push({ this.$router.push({
path: '/setup/inventory', path: '/setup/inventory',
query: { query: {
businessId: item.businessId businessId: item.businessId,
orderSn: item.orderSn
} }
}) })
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment