Update paging disable style + Fix bug line chart + Fix paging function hide grid
This commit is contained in:
@ -635,15 +635,15 @@ export default {
|
||||
this.setChart04Data(chart04Dat);
|
||||
|
||||
let chartOption2 = getLineChartOption({
|
||||
xAxisData: this.$store.state.pageData[myPrgmId][this.chart_02].xAxisData,
|
||||
seriesData: this.$store.state.pageData[myPrgmId][this.chart_02].seriesData,
|
||||
xAxisData: this.$store.state.pageData[myPrgmId][this.chart_02].xAxis.data,
|
||||
seriesData: this.$store.state.pageData[myPrgmId][this.chart_02].series,
|
||||
isDarkMode: this.isDarkMode,
|
||||
});
|
||||
this.$store.state.pageData[myPrgmId][this.chart_02] = chartOption2
|
||||
|
||||
let chartOption5 = getLineChartOption({
|
||||
xAxisData: this.$store.state.pageData[myPrgmId][this.chart_05].xAxisData,
|
||||
seriesData: this.$store.state.pageData[myPrgmId][this.chart_05].seriesData,
|
||||
xAxisData: this.$store.state.pageData[myPrgmId][this.chart_05].xAxis.data,
|
||||
seriesData: this.$store.state.pageData[myPrgmId][this.chart_05].series,
|
||||
isDarkMode: this.isDarkMode,
|
||||
});
|
||||
this.$store.state.pageData[myPrgmId][this.chart_05] = chartOption5
|
||||
@ -754,7 +754,7 @@ export default {
|
||||
changeGrid: async function (pageNum, limit) {
|
||||
this.page = pageNum;
|
||||
this.limit = limit;
|
||||
await this.getGridData();
|
||||
await this.getGridData(true);
|
||||
},
|
||||
async search() {
|
||||
await new Promise((resolve) => setTimeout(resolve, 1500));
|
||||
@ -766,7 +766,7 @@ export default {
|
||||
await this.getTodayEfficiencyStatus();
|
||||
await this.getTodayNgTopTen();
|
||||
await this.getCompareEqpmTGdChart();
|
||||
await this.getGridData();
|
||||
await this.getGridData(false);
|
||||
}
|
||||
},
|
||||
async gridInit() {
|
||||
@ -944,8 +944,13 @@ export default {
|
||||
this.loadGrid = true;
|
||||
// this.getGridData();
|
||||
},
|
||||
async getGridData() {
|
||||
this.loadGrid = false;
|
||||
async getGridData(isPaging) {
|
||||
|
||||
// Do not hide grid when trigger paging function
|
||||
if (!isPaging) {
|
||||
this.loadGrid = false;
|
||||
}
|
||||
|
||||
// Get total records of grid
|
||||
const totalRes = await this.postApiReturn({
|
||||
apiKey: "selectIssueGdIdxDataPageTotal",
|
||||
|
Reference in New Issue
Block a user