|
@@ -209,47 +209,45 @@
|
|
|
>导出</el-button
|
|
|
>
|
|
|
</el-col>
|
|
|
- <el-col :span="1.5"
|
|
|
- ><el-button type="primary" size="mini" @click="handleQuery(null)"
|
|
|
- >全 部</el-button
|
|
|
- ></el-col
|
|
|
- >
|
|
|
- <el-col :span="1.5"
|
|
|
- ><el-button
|
|
|
- type="primary"
|
|
|
- size="mini"
|
|
|
- @click="handleQuery('acceptDate')"
|
|
|
- >接 单</el-button
|
|
|
- ></el-col
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-badge :value="buttonValue.acceptDate" style="margin-right:10px">
|
|
|
+ <el-button size="mini" @click="handleQuery(null)">全 部</el-button>
|
|
|
+ </el-badge>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-badge :value="buttonValue.acceptDate" style="margin-right:10px">
|
|
|
+ <el-button size="mini" @click="handleQuery('acceptDate')"
|
|
|
+ >接 单</el-button
|
|
|
+ >
|
|
|
+ </el-badge></el-col
|
|
|
>
|
|
|
<el-col :span="1.5"
|
|
|
- ><el-button type="primary" size="mini" @click="handleQuery('loadDate')"
|
|
|
- >提 箱</el-button
|
|
|
+ ><el-badge :value="buttonValue.loadDate" style="margin-right:10px"
|
|
|
+ ><el-button size="mini" @click="handleQuery('loadDate')"
|
|
|
+ >提 箱</el-button
|
|
|
+ ></el-badge
|
|
|
></el-col
|
|
|
>
|
|
|
|
|
|
<el-col :span="1.5"
|
|
|
- ><el-button
|
|
|
- type="primary"
|
|
|
- size="mini"
|
|
|
- @click="handleQuery('mdLoadDate')"
|
|
|
- >还卸货</el-button
|
|
|
- ></el-col
|
|
|
- >
|
|
|
+ ><el-badge :value="buttonValue.mdLoadDate" style="margin-right:10px">
|
|
|
+ <el-button size="mini" @click="handleQuery('mdLoadDate')"
|
|
|
+ >还卸货</el-button
|
|
|
+ ></el-badge
|
|
|
+ >
|
|
|
+ </el-col>
|
|
|
<el-col :span="1.5"
|
|
|
- ><el-button
|
|
|
- type="primary"
|
|
|
- size="mini"
|
|
|
- @click="handleQuery('unLoadDate')"
|
|
|
- >还卸柜</el-button
|
|
|
+ ><el-badge :value="buttonValue.unLoadDate" style="margin-right:10px"
|
|
|
+ ><el-button size="mini" @click="handleQuery('unLoadDate')"
|
|
|
+ >还卸柜</el-button
|
|
|
+ ></el-badge
|
|
|
></el-col
|
|
|
>
|
|
|
<el-col :span="1.5"
|
|
|
- ><el-button
|
|
|
- type="primary"
|
|
|
- size="mini"
|
|
|
- @click="handleQuery('waybillDate')"
|
|
|
- >回 单</el-button
|
|
|
+ ><el-badge :value="buttonValue.waybillDate"
|
|
|
+ ><el-button size="mini" @click="handleQuery('waybillDate')"
|
|
|
+ >回 单</el-button
|
|
|
+ ></el-badge
|
|
|
></el-col
|
|
|
>
|
|
|
<div class="tabSetting">
|
|
@@ -739,6 +737,7 @@ export default {
|
|
|
transTypeList: [],
|
|
|
billTypeList: [],
|
|
|
show: false,
|
|
|
+ buttonValue: {},
|
|
|
};
|
|
|
},
|
|
|
// 使用子组件
|
|
@@ -887,6 +886,7 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
this.ftmsorderbillscarsList = response.dataTable.rows;
|
|
|
+ this.buttonValue = response.buttonValue;
|
|
|
this.total = response.dataTable.total;
|
|
|
this.loading = false;
|
|
|
});
|