|
|
@ -209,6 +209,11 @@ |
|
|
|
<el-form-item label="内部编码"> |
|
|
|
<el-input v-model="listQuery.params.insideCode" placeholder="" clearable class="addinputw"/> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="所属分公司"> |
|
|
|
<el-select v-model="listQuery.params.orgSid" class="addinputw" clearable placeholder=""> |
|
|
|
<el-option v-for="item in org_list" :key="item.sid" :label="item.name" :value="item.sid"/> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="厂家入库日期"> |
|
|
|
<el-date-picker value-format="yyyy-MM-dd" v-model="listQuery.params.applicationDateStart" clearable type="date" placeholder="开始日期"/> |
|
|
|
<span style="padding: 0 8px">至</span> |
|
|
@ -408,7 +413,7 @@ |
|
|
|
|
|
|
|
<script> |
|
|
|
import { fetchByUseOrgSid, getUseOrgByUserSid, selectCarTransferListAll, pagerListByOrgSidPath } from '@/api/cheliang/basevehicle' |
|
|
|
import { typeValues, brandDown } from '@/api/cheliang/dictcommons' |
|
|
|
import { typeValues, brandDown, selectOrgByLevel } from '@/api/cheliang/dictcommons' |
|
|
|
import Pagination from '@/components/pagination' |
|
|
|
import ButtonBar from '@/components/ButtonBar' |
|
|
|
import pageye from '@/components/pagination/pageye' |
|
|
@ -500,7 +505,8 @@ export default { |
|
|
|
tireSizeKey: '', |
|
|
|
wheelbaseKey: '', |
|
|
|
orgSidPath: '', |
|
|
|
insideCode: '' |
|
|
|
insideCode: '', |
|
|
|
orgSid: '' |
|
|
|
}, |
|
|
|
current: 1, |
|
|
|
size: 5, |
|
|
@ -530,6 +536,7 @@ export default { |
|
|
|
certificateState_list: [], |
|
|
|
manPurOrderType_list: [], |
|
|
|
settlementStatus_list: [], |
|
|
|
org_list: [], |
|
|
|
// 车型查询 |
|
|
|
carBrand_list: [], // 品牌 |
|
|
|
vehicleFunction_list: [], // 功能 |
|
|
@ -607,6 +614,12 @@ export default { |
|
|
|
} |
|
|
|
}, |
|
|
|
setDater() { |
|
|
|
// 所属分公司 |
|
|
|
selectOrgByLevel({ orgSidPath: window.sessionStorage.getItem('orgSidPath') }).then((resp) => { |
|
|
|
if (resp.success) { |
|
|
|
this.org_list = resp.data |
|
|
|
} |
|
|
|
}) |
|
|
|
// 采购订单 |
|
|
|
typeValues({ type: 'purchaseOrderType' }).then((res) => { |
|
|
|
if (res.success) { |
|
|
@ -1000,7 +1013,8 @@ export default { |
|
|
|
tireSizeKey: '', |
|
|
|
wheelbaseKey: '', |
|
|
|
orgSidPath: '', |
|
|
|
insideCode: '' |
|
|
|
insideCode: '', |
|
|
|
orgSid: '', |
|
|
|
}, |
|
|
|
current: 1, |
|
|
|
size: 5, |
|
|
|