|
@@ -109,7 +109,7 @@
|
109
|
109
|
>
|
110
|
110
|
<el-table-column min-width="35" align="center">
|
111
|
111
|
<template slot="header" slot-scope="scope">
|
112
|
|
- <span>商品类型</span>
|
|
112
|
+ <span>耗材类型</span>
|
113
|
113
|
</template>
|
114
|
114
|
|
115
|
115
|
<template slot-scope="scope">
|
|
@@ -141,6 +141,22 @@
|
141
|
141
|
</el-form-item>
|
142
|
142
|
</template>
|
143
|
143
|
</el-table-column>
|
|
144
|
+
|
|
145
|
+ <el-table-column min-width="35" align="center">
|
|
146
|
+ <template slot="header" slot-scope="scope">
|
|
147
|
+ <span>单位<span style="color: red">*</span></span>
|
|
148
|
+ </template>
|
|
149
|
+ <template slot-scope="scope">
|
|
150
|
+ <el-select v-model="scope.row.good_unit" style="width:160px;" placeholder="请选择">
|
|
151
|
+ <el-option
|
|
152
|
+ v-for="(item,index) in propForm.goodUnit"
|
|
153
|
+ :key="index"
|
|
154
|
+ :label="item.name"
|
|
155
|
+ :value="item.id">
|
|
156
|
+ </el-option>
|
|
157
|
+ </el-select>
|
|
158
|
+ </template>
|
|
159
|
+ </el-table-column>
|
144
|
160
|
|
145
|
161
|
<el-table-column min-width="23" align="center">
|
146
|
162
|
<template slot="header" slot-scope="scope">
|
|
@@ -192,7 +208,7 @@
|
192
|
208
|
</template>
|
193
|
209
|
</el-table-column>
|
194
|
210
|
|
195
|
|
- <el-table-column label="操作" align="center" min-width="20">
|
|
211
|
+ <el-table-column label="操作" align="center" min-width="20" width="150">
|
196
|
212
|
<template slot-scope="scope">
|
197
|
213
|
<el-tooltip
|
198
|
214
|
class="item"
|
|
@@ -303,7 +319,7 @@ export default {
|
303
|
319
|
this.recordInfo.recordData[this.currentIndex].good_type_id = val.selectedGoodInfo[i].good_type_id
|
304
|
320
|
this.recordInfo.recordData[this.currentIndex].good_id = val.selectedGoodInfo[i].id
|
305
|
321
|
this.recordInfo.recordData[this.currentIndex].price = val.selectedGoodInfo[i].buy_price.toString()
|
306
|
|
-
|
|
322
|
+ this.recordInfo.recordData[this.currentIndex].good_unit = val.selectedGoodInfo[i].good_unit
|
307
|
323
|
} else {
|
308
|
324
|
const tempForm = {}
|
309
|
325
|
tempForm['good_type_id'] =val.selectedGoodInfo[i].good_type_id
|
|
@@ -311,6 +327,7 @@ export default {
|
311
|
327
|
tempForm['count'] = ''
|
312
|
328
|
tempForm['price'] = val.selectedGoodInfo[i].buy_price.toString()
|
313
|
329
|
tempForm['remark'] = ''
|
|
330
|
+ tempForm['good_unit'] = ''
|
314
|
331
|
this.recordInfo.recordData.splice(this.currentIndex + 1, 0, tempForm)
|
315
|
332
|
}
|
316
|
333
|
}
|
|
@@ -611,7 +628,7 @@ export default {
|
611
|
628
|
tempObj["return_count"] = 0;
|
612
|
629
|
tempObj["price"] = "";
|
613
|
630
|
tempObj["remark"] = "";
|
614
|
|
-
|
|
631
|
+ tempObj["good_unit"] = ""
|
615
|
632
|
this.recordInfo.recordData.push(tempObj);
|
616
|
633
|
this.GetConfigInfo();
|
617
|
634
|
this.propForm.goodUnit = this.$store.getters.good_unit;
|