代码更新
This commit is contained in:
@@ -90,7 +90,21 @@
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
<el-form-item label="物流公司编码:">
|
||||
<el-input v-model="formMst.trans_code" size="mini" style="width: 210px" />
|
||||
<el-select
|
||||
v-model="formMst.trans_code"
|
||||
clearable
|
||||
size="mini"
|
||||
placeholder="请选择"
|
||||
class="filter-item"
|
||||
style="width: 210px"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in transportaList"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="8">
|
||||
@@ -120,6 +134,8 @@
|
||||
|
||||
import CRUD, { crud } from '@crud/crud'
|
||||
import checkoutbill from '@/views/wms/st/outbill/checkoutbill'
|
||||
import crudTransportationbase from '@/views/wms/basedata/master/transport/transportationbase'
|
||||
|
||||
export default {
|
||||
name: 'SunShowDialog',
|
||||
mixins: [crud()],
|
||||
@@ -142,10 +158,16 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
transportaList: [],
|
||||
formMst: {},
|
||||
dialogVisible: false
|
||||
}
|
||||
},
|
||||
created() {
|
||||
crudTransportationbase.getTransporta().then(res => {
|
||||
this.transportaList = res
|
||||
})
|
||||
},
|
||||
methods: {
|
||||
handleClose(done) {
|
||||
this.$confirm('确认关闭?')
|
||||
|
||||
@@ -281,7 +281,7 @@ export default {
|
||||
}
|
||||
},
|
||||
created() {
|
||||
crudStorattr.getStor({ 'is_materialstore': '1' }).then(res => {
|
||||
crudStorattr.getStor({ 'is_productstore': '1' }).then(res => {
|
||||
this.storlist = res.content
|
||||
})
|
||||
crudRawAssist.getType({ 'io_code': '0101', 'io_flag': '01' }).then(res => {
|
||||
|
||||
Reference in New Issue
Block a user