|
@@ -11,8 +11,8 @@
|
11
|
11
|
</div>
|
12
|
12
|
|
13
|
13
|
<div class="cell clearfix">
|
14
|
|
- <span style="width: 300px;color: #606266">商品类型: {{userList[0].type.type_name}} </span>
|
15
|
|
- <span style="width: 300px;color: #606266">规格名称: {{userList[0].info.specification_name}}</span>
|
|
14
|
+ <span style="width: 300px;color: #606266">商品类型: {{userList[0].drug.drug_name}} </span>
|
|
15
|
+ <span style="width: 300px;color: #606266">规格名称: {{userList[0].drug.drug_spec}}</span>
|
16
|
16
|
</div>
|
17
|
17
|
|
18
|
18
|
<el-row :gutter="12" style="margin-top: 10px">
|
|
@@ -64,8 +64,8 @@
|
64
|
64
|
|
65
|
65
|
<script>
|
66
|
66
|
import { uParseTime } from '@/utils/tools'
|
67
|
|
- import { getWarehouseOutUser } from '@/api/stock'
|
68
|
|
- import BreadCrumb from '../components/bread-crumb'
|
|
67
|
+ import { getDrugWarehouseOutUser } from '@/api/drug/drug_stock'
|
|
68
|
+ import BreadCrumb from '../../components/bread-crumb'
|
69
|
69
|
|
70
|
70
|
export default {
|
71
|
71
|
name: 'stockInOrderDetail',
|
|
@@ -88,27 +88,11 @@
|
88
|
88
|
}
|
89
|
89
|
},
|
90
|
90
|
methods: {
|
91
|
|
- getSpecificationName: function(id) {
|
92
|
|
- let name = ''
|
93
|
|
- for (let i = 0; i < this.goodInfo.length; i++) {
|
94
|
|
- if (this.goodInfo[i].id == id) {
|
95
|
|
- name = this.goodInfo[i].specification_name
|
96
|
|
- }
|
97
|
|
- }
|
98
|
|
- return name
|
99
|
|
- }, getTypeName: function(id) {
|
100
|
|
- let name = ''
|
101
|
|
- for (let i = 0; i < this.goodType.length; i++) {
|
102
|
|
- if (this.goodType[i].id == id) {
|
103
|
|
- name = this.goodType[i].type_name
|
104
|
|
- }
|
105
|
|
- }
|
106
|
|
- return name
|
107
|
|
- }, GetOrderDetail: function(order_id) {
|
|
91
|
+ GetOrderDetail: function(order_id) {
|
108
|
92
|
const params = {
|
109
|
93
|
'id': order_id
|
110
|
94
|
}
|
111
|
|
- getWarehouseOutUser(params).then(response => {
|
|
95
|
+ getDrugWarehouseOutUser(params).then(response => {
|
112
|
96
|
if (response.data.state == 0) {
|
113
|
97
|
this.$message.error(response.data.msg)
|
114
|
98
|
return false
|