projects/line-new-zhp #468

Merged
zhp merged 3 commits from projects/line-new-zhp into projects/line-new 2025-12-23 08:53:20 +08:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit ccfa73f3bc - Show all commits

BIN
dist.zip

Binary file not shown.

View File

@@ -64,7 +64,7 @@
<script>
import eqDetail from './eq-detail';
import { parseTime } from '../../mixins/code-filter';
import { getPdList } from '@/api/core/monitoring/auto';
import { getPLlistByFactory } from '@/api/core/monitoring/auto';
import { getNewCTNow, getNewCTCharts } from '@/api/core/analysis/index';
import { getFactoryPage } from '@/api/core/base/factory';
// import codeFilter from '../../mixins/code-filter'
@@ -235,9 +235,9 @@ export default {
return exportTableOut;
},
getPdLineList() {
getPdList().then((res) => {
this.formConfig[1].selectOptions = res.data || [];
});
// getPLlistByFactory().then((res) => {
// this.formConfig[1].selectOptions = res.data || [];
// });
const params = {
pageSize: 100,
pageNo: 1,
@@ -277,7 +277,7 @@ export default {
handleSearchBarChanged({ param, value }) {
this.listQuery.lineId = [];
this.$refs.searchBarForm.formInline.lineId = undefined;
getPdList(value).then((res) => {
getPLlistByFactory({ factoryIds: this.$refs.searchBarForm.formInline.factoryId }).then((res) => {
this.formConfig[1].selectOptions = res.data || [];
});
},