|
@@ -11,6 +11,7 @@
|
|
<el-date-picker style="margin: 0px 10px;"
|
|
<el-date-picker style="margin: 0px 10px;"
|
|
v-model="dateRangeCreatedDate"
|
|
v-model="dateRangeCreatedDate"
|
|
type="datetimerange"
|
|
type="datetimerange"
|
|
|
|
+ value-format="yyyy-MM-dd HH:mm:ss"
|
|
size="mini"
|
|
size="mini"
|
|
range-separator="至"
|
|
range-separator="至"
|
|
start-placeholder="开始日期"
|
|
start-placeholder="开始日期"
|
|
@@ -193,7 +194,7 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
- import { listSum,listOilType,listViewData,listCZData,listXFData,listHYData,listJRHYData } from "@/api/dataSource/saleReport";
|
|
|
|
|
|
+ import { listSum,listOilType,listCZXFData,listViewData,listHYData,listJRHYData } from "@/api/dataSource/saleReport";
|
|
|
|
|
|
export default {
|
|
export default {
|
|
name: "sourceI",
|
|
name: "sourceI",
|
|
@@ -341,24 +342,21 @@ export default {
|
|
this.queryParams.stationId=this.$store.selectDeptId;
|
|
this.queryParams.stationId=this.$store.selectDeptId;
|
|
this.getList();
|
|
this.getList();
|
|
console.log("this.queryParams",this.queryParams);
|
|
console.log("this.queryParams",this.queryParams);
|
|
- listCZData(this.queryParams).then(response => {
|
|
|
|
|
|
+ listCZXFData(this.queryParams).then(response => {
|
|
if(response.hasOwnProperty('data')){
|
|
if(response.hasOwnProperty('data')){
|
|
- if(response.data.amt){
|
|
|
|
- this.infoFrom.czAmt = response.data.amt;
|
|
|
|
|
|
+ if(response.data.czAmt){
|
|
|
|
+ this.infoFrom.czAmt = response.data.czAmt;
|
|
}else{
|
|
}else{
|
|
this.infoFrom.czAmt = 0;
|
|
this.infoFrom.czAmt = 0;
|
|
}
|
|
}
|
|
- }
|
|
|
|
- });
|
|
|
|
- listXFData(this.queryParams).then(response => {
|
|
|
|
- if(response.hasOwnProperty('data')){
|
|
|
|
- if(response.data.amt){
|
|
|
|
- this.infoFrom.xfAmt = response.data.amt;
|
|
|
|
|
|
+ if(response.data.xfAmt){
|
|
|
|
+ this.infoFrom.xfAmt = response.data.xfAmt;
|
|
}else{
|
|
}else{
|
|
this.infoFrom.xfAmt = 0;
|
|
this.infoFrom.xfAmt = 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
+
|
|
this.queryInfo.stationId =this.queryParams.stationId;
|
|
this.queryInfo.stationId =this.queryParams.stationId;
|
|
listHYData(this.queryInfo).then(response => {
|
|
listHYData(this.queryInfo).then(response => {
|
|
if(response.hasOwnProperty('data')){
|
|
if(response.hasOwnProperty('data')){
|