|
@@ -471,9 +471,6 @@
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
-
|
|
|
|
- </el-row>
|
|
|
|
- <el-row>
|
|
|
|
<el-col :span="8">
|
|
<el-col :span="8">
|
|
<el-form-item label="单据编号" prop="fBillno">
|
|
<el-form-item label="单据编号" prop="fBillno">
|
|
<el-input
|
|
<el-input
|
|
@@ -639,11 +636,13 @@
|
|
<el-select
|
|
<el-select
|
|
style="width: 80%"
|
|
style="width: 80%"
|
|
v-model="form.fLabour"
|
|
v-model="form.fLabour"
|
|
|
|
+ @keyup.enter.native="handleQuery"
|
|
:remote-method="flabourRemoteMethod"
|
|
:remote-method="flabourRemoteMethod"
|
|
- filterable
|
|
|
|
remote
|
|
remote
|
|
|
|
+ filterable
|
|
:disabled="contrOl"
|
|
:disabled="contrOl"
|
|
- placeholder="请输入劳务公司">
|
|
|
|
|
|
+ placeholder="请输入劳务公司"
|
|
|
|
+ >
|
|
<el-option
|
|
<el-option
|
|
v-for="(dict, index) in fCompanyOptIons"
|
|
v-for="(dict, index) in fCompanyOptIons"
|
|
:key="index.fId"
|
|
:key="index.fId"
|
|
@@ -2685,7 +2684,6 @@ export default {
|
|
this.fleetOptions = response.data;
|
|
this.fleetOptions = response.data;
|
|
});
|
|
});
|
|
treeselect().then(response => {
|
|
treeselect().then(response => {
|
|
- console.log(response)
|
|
|
|
this.warehouseOptions = response.data
|
|
this.warehouseOptions = response.data
|
|
})
|
|
})
|
|
this.warehousesssMethod()
|
|
this.warehousesssMethod()
|
|
@@ -3373,6 +3371,15 @@ export default {
|
|
},
|
|
},
|
|
/** 查询仓库主(出入库)列表 */
|
|
/** 查询仓库主(出入库)列表 */
|
|
getList() {
|
|
getList() {
|
|
|
|
+ let queryParams = { pageNum: 1, pageSize: 10, fTypeid: 6}
|
|
|
|
+ listCorps(queryParams).then((response) => {
|
|
|
|
+ this.fCompanyOptIons = response.rows;
|
|
|
|
+ });
|
|
|
|
+ let params = { pageNum: 1, pageSize: 10, fTypeid: 2}
|
|
|
|
+ listCorps(params).then((response) => {
|
|
|
|
+ console.log(response)
|
|
|
|
+ this.fleetOptions = response.rows;
|
|
|
|
+ });
|
|
this.loading = true;
|
|
this.loading = true;
|
|
getStockTransferList(this.queryParams).then((response) => {
|
|
getStockTransferList(this.queryParams).then((response) => {
|
|
this.warehousebillsList = response.rows;
|
|
this.warehousebillsList = response.rows;
|