|
|
|
@ -78,28 +78,6 @@
|
|
|
|
|
></el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</template>
|
|
|
|
|
<el-form-item prop="workPlaceCode" class="query-form-item" label="当前工位:">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="filterQuery.workPlaceCode"
|
|
|
|
|
placeholder="当前工位"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
disabled
|
|
|
|
|
filterable
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in curWorkPlaces"
|
|
|
|
|
:key="item.workplaceId"
|
|
|
|
|
:label="item.workplaceName"
|
|
|
|
|
:value="item.workplaceId"
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left">{{ item.workplaceName }}</span>
|
|
|
|
|
<span style="float: right; color: #8492a6; font-size: 13px">{{
|
|
|
|
|
item.workplaceId
|
|
|
|
|
}}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div class="top-right-btn">
|
|
|
|
@ -707,6 +685,10 @@ export default {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
viewType: {
|
|
|
|
|
type: Object,
|
|
|
|
|
required: true,
|
|
|
|
|
},
|
|
|
|
|
closeChooseDialog: {
|
|
|
|
|
type: Function,
|
|
|
|
|
required: true
|
|
|
|
@ -740,6 +722,7 @@ export default {
|
|
|
|
|
getInvList: [],
|
|
|
|
|
getDeptList: [],
|
|
|
|
|
getBusType: [],
|
|
|
|
|
getWorkPlaceList: []
|
|
|
|
|
},
|
|
|
|
|
//界面配置---------------------end
|
|
|
|
|
|
|
|
|
@ -1190,8 +1173,8 @@ export default {
|
|
|
|
|
this.closeChooseDialog()
|
|
|
|
|
this.handleChoose(this.currentRow)
|
|
|
|
|
},
|
|
|
|
|
//获取当前货位
|
|
|
|
|
findCurWorkPlaces(val) {
|
|
|
|
|
//获取当前工位
|
|
|
|
|
findCurWorkPlaces(_this,val) {
|
|
|
|
|
let query = {
|
|
|
|
|
key: val,
|
|
|
|
|
status: 1,
|
|
|
|
@ -1200,9 +1183,15 @@ export default {
|
|
|
|
|
limit: 100,
|
|
|
|
|
}
|
|
|
|
|
listPage(query).then((res) => {
|
|
|
|
|
this.curWorkPlaces = res.data.list || [];
|
|
|
|
|
if (this.curWorkPlaces.length == 1) {
|
|
|
|
|
this.orderFormData.workPlaceCode = this.curWorkPlaces[0].workplaceId;
|
|
|
|
|
let list = res.data.list || []
|
|
|
|
|
_this.options.getWorkPlaceList = list.map(item => {
|
|
|
|
|
return {
|
|
|
|
|
code: item.workplaceId,
|
|
|
|
|
label: item.workplaceName
|
|
|
|
|
};
|
|
|
|
|
})
|
|
|
|
|
if (_this.options.getWorkPlaceList .length == 1){
|
|
|
|
|
_this.filterQuery.workPlaceCode = _this.options.getWorkPlaceList[0].code;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
@ -1217,7 +1206,7 @@ export default {
|
|
|
|
|
created() {
|
|
|
|
|
this.getInvList(this);
|
|
|
|
|
this.getBusType(this);
|
|
|
|
|
this.findCurWorkPlaces();
|
|
|
|
|
this.findCurWorkPlaces(this,"");
|
|
|
|
|
|
|
|
|
|
this.splitType = this.$route.query.splitType;
|
|
|
|
|
if (this.splitType == "search") {
|
|
|
|
|