|  | @@ -231,15 +231,13 @@
 | 
	
		
			
				|  |  |          >
 | 
	
		
			
				|  |  |        </el-col>
 | 
	
		
			
				|  |  |        <el-col :span="1.5">
 | 
	
		
			
				|  |  | -<!--        <el-button size="mini" @click="handleQuery(null)">全 部</el-button>-->
 | 
	
		
			
				|  |  | +        <!--        <el-button size="mini" @click="handleQuery(null)">全 部</el-button>-->
 | 
	
		
			
				|  |  |          <el-badge
 | 
	
		
			
				|  |  |            :value="buttonValue.quantity"
 | 
	
		
			
				|  |  |            type="warning"
 | 
	
		
			
				|  |  |            style="margin-right: 10px"
 | 
	
		
			
				|  |  |          >
 | 
	
		
			
				|  |  | -          <el-button size="mini" @click="handleQuery()"
 | 
	
		
			
				|  |  | -          >全 部</el-button
 | 
	
		
			
				|  |  | -          >
 | 
	
		
			
				|  |  | +          <el-button size="mini" @click="handleQuery()">全 部</el-button>
 | 
	
		
			
				|  |  |          </el-badge>
 | 
	
		
			
				|  |  |        </el-col>
 | 
	
		
			
				|  |  |        <el-col :span="1.5">
 | 
	
	
		
			
				|  | @@ -411,7 +409,7 @@
 | 
	
		
			
				|  |  |          fixed="left"
 | 
	
		
			
				|  |  |        >
 | 
	
		
			
				|  |  |          <template slot-scope="scope">
 | 
	
		
			
				|  |  | -            <el-link :underline="false" type="primary"
 | 
	
		
			
				|  |  | +          <el-link :underline="false" type="primary"
 | 
	
		
			
				|  |  |              ><div @click="handleUpdate(scope.row)">
 | 
	
		
			
				|  |  |                {{ scope.row.mblno }}
 | 
	
		
			
				|  |  |              </div></el-link
 | 
	
	
		
			
				|  | @@ -860,6 +858,19 @@ export default {
 | 
	
		
			
				|  |  |        this.fMblnoOptions = response.rows;
 | 
	
		
			
				|  |  |      });
 | 
	
		
			
				|  |  |      this.getRow();
 | 
	
		
			
				|  |  | +    if (this.$route.query.id) {
 | 
	
		
			
				|  |  | +      this.reset();
 | 
	
		
			
				|  |  | +      const data = { id: this.$route.query.id, billStatus: 1060 };
 | 
	
		
			
				|  |  | +      selectDriverFtmsorderbillscars(data).then((response) => {
 | 
	
		
			
				|  |  | +        if (response.data.cars.billType) {
 | 
	
		
			
				|  |  | +          response.data.cars.billType = response.data.cars.billType.toString();
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        this.title = "查看详情页";
 | 
	
		
			
				|  |  | +        this.form = response.data.cars;
 | 
	
		
			
				|  |  | +        this.relevantAttachments = response.data.attachs;
 | 
	
		
			
				|  |  | +        this.addOrUpdateVisible = !this.addOrUpdateVisible;
 | 
	
		
			
				|  |  | +      });
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  |    },
 | 
	
		
			
				|  |  |    methods: {
 | 
	
		
			
				|  |  |      //列设置全选
 |