|
@@ -5,6 +5,14 @@
|
|
|
<el-row>
|
|
|
<el-col :span="24">
|
|
|
<div class="top">
|
|
|
+ <el-select v-model="formList.companyName" placeholder="请输入公司名称">
|
|
|
+ <el-option
|
|
|
+ v-for="item in companyList"
|
|
|
+ :key="item.companyName"
|
|
|
+ :label="item.companyName"
|
|
|
+ :value="item.companyName">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
<el-input placeholder="请输入车牌号码" class="input-demo" v-model="carNum"></el-input>
|
|
|
<el-button type="success" style="margin-left: 1%;" @click="firstLoadData">查询</el-button>
|
|
|
</div>
|
|
@@ -79,6 +87,7 @@ export default{
|
|
|
carNum: '',
|
|
|
hightt:'0px',
|
|
|
roleId: '',
|
|
|
+ companyList:[],
|
|
|
formList: {
|
|
|
"companyName": "",
|
|
|
"customerName": ""
|
|
@@ -87,13 +96,14 @@ export default{
|
|
|
},
|
|
|
created() {
|
|
|
this.heightt = tableHeight;
|
|
|
+ this.initCompanyList();
|
|
|
this.loadData();
|
|
|
},
|
|
|
methods: {
|
|
|
firstLoadData(){
|
|
|
this.current = 1;
|
|
|
this.pagesize = 8;
|
|
|
- this.queryLook();
|
|
|
+ this.loadData();
|
|
|
},
|
|
|
//数据加载
|
|
|
async loadData() {
|
|
@@ -102,7 +112,8 @@ export default{
|
|
|
formData.append('current', this.current);
|
|
|
formData.append('size', this.pagesize);
|
|
|
formData.append('customerName', this.formList.customerName);
|
|
|
- formData.append('recStatus', 2);
|
|
|
+ formData.append('companyName', this.formList.companyName);
|
|
|
+ formData.append('carNum', this.carNum);
|
|
|
formData.append('businessType',0);
|
|
|
const response = await this.$http.post(`noCar/findCarRec`, formData);
|
|
|
if (response.data.code === 0) {
|
|
@@ -118,7 +129,6 @@ export default{
|
|
|
formData.append('size', this.pagesize);
|
|
|
formData.append('customerName', this.formList.customerName);
|
|
|
formData.append('carNum', this.carNum);
|
|
|
- formData.append('recStatus', 2);
|
|
|
formData.append('businessType',0);
|
|
|
const response = await this.$http.post(`noCar/findCarRec`, formData);
|
|
|
if (response.data.code === 0) {
|
|
@@ -127,23 +137,24 @@ export default{
|
|
|
this.total = response.data.data.total;
|
|
|
};
|
|
|
},
|
|
|
+ async initCompanyList(){
|
|
|
+ const response = await this.$http.post(`lowerService/customeRecQueryList`, {"customerName":sessionStorage.getItem('userName'),"bussinessType":"0"});
|
|
|
+ if (response.data.code === 0) {
|
|
|
+ this.companyList = response.data.data;
|
|
|
+ } if(this.companyList == null || typeof this.companyList == 'undefined' || this.companyList =='' || this.companyList.length==0){
|
|
|
+ this.companyList = [{'companyName':'.'}];
|
|
|
+ }
|
|
|
+ this.formList.companyName = this.companyList[0]['companyName'];
|
|
|
+ },
|
|
|
// 分页方法
|
|
|
handleSizeChange(val) {
|
|
|
this.pagesize = val;
|
|
|
- if(this.carNum !== '') {
|
|
|
- this.queryLook();
|
|
|
- }else{
|
|
|
- this.loadData();
|
|
|
- };
|
|
|
+ this.loadData();
|
|
|
console.log(`每页 ${val} 条`);
|
|
|
},
|
|
|
handleCurrentChange(val) {
|
|
|
this.current = val;
|
|
|
- if(this.carNum !== '') {
|
|
|
- this.queryLook();
|
|
|
- }else{
|
|
|
- this.loadData();
|
|
|
- };
|
|
|
+ this.loadData();
|
|
|
console.log(`当前页: ${val}`);
|
|
|
},
|
|
|
}
|