|
|
@@ -453,7 +453,7 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<el-table :data="orderList" style="width: 100%">
|
|
|
- <el-table-column v-if="hasOrderCode()" prop="orderCode" label="工单编号" :style="{ width: changeWidth() * 2 + '%' }" header-align="center" align="center"></el-table-column>
|
|
|
+ <el-table-column v-if="hasOrderCode()" prop="orderCode" label="工单编码" :style="{ width: changeWidth() * 2 + '%' }" header-align="center" align="center"></el-table-column>
|
|
|
<el-table-column v-if="queryParams.code" prop="code" label="风机编号" :style="{ width: changeWidth() * 1.5 + '%' }" header-align="center" align="center"></el-table-column>
|
|
|
<el-table-column v-if="queryParams.brand" prop="brand" label="品牌" :style="{ width: changeWidth() + '%' }" header-align="center" align="center"></el-table-column>
|
|
|
<el-table-column v-if="queryParams.model" prop="model" label="机型" :style="{ width: changeWidth() * 2 + '%' }" header-align="center" align="center"></el-table-column>
|
|
|
@@ -1456,6 +1456,9 @@ export default {
|
|
|
return parseFloat(rounded).toString();
|
|
|
},
|
|
|
handleExport() {
|
|
|
+ if (this.queryParams.workOrder || this.queryParams.repairOrder) {
|
|
|
+ this.queryParams.orderType = true;
|
|
|
+ }
|
|
|
this.download("gxt/order/exportHomePageOrderList", this.queryParams, `homePageOrderList_${new Date().getTime()}.xlsx`);
|
|
|
},
|
|
|
// 加载首页统计数据
|