Commit aee01501 authored by hubaoshan's avatar hubaoshan

wcp

parent 942407cf
......@@ -47,3 +47,9 @@ export function delPd(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 @@
<el-table-column type="index" label="序号" width="50" />
<el-table-column label="orderSn">
<template slot-scope="scope">
<span>{{ scope.row.orderSn || '-' }}</span>
</template>
</el-table-column>
<el-table-column label="人员">
<template slot-scope="scope">
<span>{{ scope.row.name || '-' }}</span>
<span>{{ scope.row.orderSn || '-' }}({{ scope.row.name || '-' }})</span>
</template>
</el-table-column>
<el-table-column label="操作">
......@@ -54,7 +49,8 @@ export default {
this.$router.push({
path: '/setup/inventory',
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