|
@@ -29,7 +29,10 @@
|
|
|
style="width: 100px"
|
|
|
></el-input>
|
|
|
</div>
|
|
|
- <div class="input_box" style="width:225px;margin-left:30px;margin-top:20px">
|
|
|
+ <div
|
|
|
+ class="input_box"
|
|
|
+ style="width: 225px; margin-left: 30px; margin-top: 20px"
|
|
|
+ >
|
|
|
<el-input placeholder="请输入车牌号/出厂门岗" v-model="input" clearable>
|
|
|
</el-input>
|
|
|
<el-button type="primary" class="btn" @click="onclick">
|
|
@@ -37,7 +40,11 @@
|
|
|
</el-button>
|
|
|
</div>
|
|
|
<div class="table">
|
|
|
- <dilTable ref="excelDom" v-bind.sync="option" @func="func"></dilTable>
|
|
|
+ <mergeRowTable
|
|
|
+ ref="excelDom"
|
|
|
+ v-bind.sync="option"
|
|
|
+ @func="func"
|
|
|
+ ></mergeRowTable>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -52,11 +59,14 @@ export default {
|
|
|
totalCapacity: null,
|
|
|
startTime: null,
|
|
|
endTime: null,
|
|
|
+
|
|
|
input: "",
|
|
|
tableTitle: "汽车抽查报表",
|
|
|
option: {
|
|
|
// 表格请求数据的地址
|
|
|
requestUrl: "api/v1/tms/getCapacityByDefend?apiId=474",
|
|
|
+ comparison: "orderNumber",
|
|
|
+ columnIndexs: [0, 1, 2,7],
|
|
|
},
|
|
|
};
|
|
|
},
|