rev:修改仓库
This commit is contained in:
@@ -53,10 +53,10 @@
|
||||
style="width: 210px"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in addressList2"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
v-for="item in storlist"
|
||||
:key="item.stor_name"
|
||||
:label="item.stor_name"
|
||||
:value="item.stor_name"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
@@ -77,10 +77,10 @@
|
||||
style="width: 210px"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in addressList"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
v-for="item in storlist"
|
||||
:key="item.stor_name"
|
||||
:label="item.stor_name"
|
||||
:value="item.stor_name"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
@@ -193,6 +193,7 @@
|
||||
import CRUD, { crud } from '@crud/crud'
|
||||
import checkoutbill from '@/views/wms/st/outbill/checkoutbill'
|
||||
import crudTransportationbase from '@/views/wms/basedata/master/transport/transportationbase'
|
||||
import crudUserStor from '@/views/wms/basedata/st/userStor/userStor'
|
||||
|
||||
export default {
|
||||
name: 'SunShowDialog',
|
||||
@@ -217,7 +218,7 @@ export default {
|
||||
data() {
|
||||
return {
|
||||
transportaList: [],
|
||||
addressList: [
|
||||
/* addressList: [
|
||||
{ 'value': '甘肃海亮兰州仓', 'label': '甘肃海亮兰州仓' },
|
||||
{ 'value': '塘厦外仓', 'label': '塘厦外仓' },
|
||||
{ 'value': '宁德四川外仓', 'label': '宁德四川外仓' },
|
||||
@@ -228,7 +229,7 @@ export default {
|
||||
{ 'value': '塘厦', 'label': '塘厦' },
|
||||
{ 'value': '宁德四川', 'label': '宁德四川' },
|
||||
{ 'value': '宁德蕉城', 'label': '宁德蕉城' },
|
||||
{ 'value': '宁德江苏', 'label': '宁德江苏' }],
|
||||
{ 'value': '宁德江苏', 'label': '宁德江苏' }],*/
|
||||
carList: [
|
||||
{ 'value': '4.2米', 'label': '4.2米' },
|
||||
{ 'value': '6.8米', 'label': '6.8米' },
|
||||
@@ -239,6 +240,7 @@ export default {
|
||||
{ 'value': '17.5米', 'label': '17.5米' }
|
||||
],
|
||||
formMst: {},
|
||||
storlist: [],
|
||||
dialogVisible: false
|
||||
}
|
||||
},
|
||||
@@ -246,6 +248,9 @@ export default {
|
||||
crudTransportationbase.getTransporta().then(res => {
|
||||
this.transportaList = res
|
||||
})
|
||||
crudUserStor.getUserStor().then(res => {
|
||||
this.storlist = res
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
handleClose(done) {
|
||||
|
||||
Reference in New Issue
Block a user