代码更新
This commit is contained in:
@@ -145,16 +145,15 @@
|
||||
<el-select
|
||||
v-model="form2.point_code"
|
||||
clearable
|
||||
filterable
|
||||
size="mini"
|
||||
placeholder="业务类型"
|
||||
placeholder="站点"
|
||||
class="filter-item"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in pointList"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
:key="item.point_code"
|
||||
:label="item.point_name"
|
||||
:value="item.point_code"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
@@ -230,6 +229,7 @@ import checkoutbill from '@/views/wms/st/outbill/checkoutbill'
|
||||
import StructIvt from '@/views/wms/st/outbill/StructIvt'
|
||||
import PointDialog from '@/views/wms/pub/PointDialog'
|
||||
import crudSectattr from '@/views/wms/basedata/st/sect/sectattr'
|
||||
import crudPoint from '@/views/wms/sch/point/point'
|
||||
|
||||
export default {
|
||||
name: 'DivDialog',
|
||||
@@ -277,10 +277,7 @@ export default {
|
||||
},
|
||||
sects: [],
|
||||
invtypelist: [],
|
||||
pointList: [
|
||||
{ 'label': '出入库站点1', 'value': 'IVN001' },
|
||||
{ 'label': '出入库站点2', 'value': 'IVN002' }
|
||||
],
|
||||
pointList: [],
|
||||
rules: {
|
||||
}
|
||||
}
|
||||
@@ -310,6 +307,11 @@ export default {
|
||||
checkoutbill.getInvTypes().then(res => {
|
||||
this.invtypelist = res
|
||||
})
|
||||
const area_type = '1585167595403874304'
|
||||
|
||||
crudPoint.getPoint({ 'area_type': area_type }).then(res => {
|
||||
this.pointlist = res
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
close() {
|
||||
|
||||
Reference in New Issue
Block a user