|
@@ -18,26 +18,6 @@
|
|
|
</el-form>
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="success"
|
|
|
- icon="el-icon-edit"
|
|
|
- size="mini"
|
|
|
- :disabled="single"
|
|
|
- @click="handleUpdate"
|
|
|
- v-hasPermi="['production:s0501:edit']"
|
|
|
- >修改</el-button>
|
|
|
- </el-col>
|
|
|
- <el-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="danger"
|
|
|
- icon="el-icon-delete"
|
|
|
- size="mini"
|
|
|
- :disabled="multiple"
|
|
|
- @click="handleDelete"
|
|
|
- v-hasPermi="['production:s0501:remove']"
|
|
|
- >删除</el-button>
|
|
|
- </el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
|
type="info"
|
|
@@ -45,7 +25,7 @@
|
|
|
size="mini"
|
|
|
@click="handleImport"
|
|
|
v-hasPermi="['production:s0501:edit']"
|
|
|
- >导入</el-button>
|
|
|
+ >批量导入</el-button>
|
|
|
</el-col>
|
|
|
<el-col :span="1.5">
|
|
|
<el-button
|
|
@@ -54,21 +34,20 @@
|
|
|
size="mini"
|
|
|
@click="handleExport"
|
|
|
v-hasPermi="['production:s0501:export']"
|
|
|
- >导出</el-button>
|
|
|
+ >导出当前页数据</el-button>
|
|
|
</el-col>
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s0501List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS0501" :data="s0501List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="正构烷烃" align="center" prop="p" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="异构烷烃" align="center" prop="i" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="烯烃" align="center" prop="o" :show-overflow-tooltip="true"/>
|
|
@@ -106,16 +85,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s1301List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS1301" :data="s1301List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="非芳烃" align="center" prop="na" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="苯" align="center" prop="benzene" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="甲苯" align="center" prop="toluene" :show-overflow-tooltip="true"/>
|
|
@@ -149,16 +127,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s2002List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS2002" :data="s2002List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="化学需氧量" align="center" prop="cod" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="pH值" align="center" prop="ph" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="操作" align="center" fixed="right" width="120" class-name="small-padding fixed-width">
|
|
@@ -181,16 +158,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s2005List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS2005" :data="s2005List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="pH值" align="center" prop="ph" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="油层比例" align="center" prop="oilRatio" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="操作" align="center" fixed="right" width="120" class-name="small-padding fixed-width">
|
|
@@ -213,16 +189,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s2007List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS2007" :data="s2007List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="运动粘度,50℃" align="center" prop="viscosity" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="操作" align="center" fixed="right" width="120" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
@@ -244,16 +219,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s2011List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS2011" :data="s2011List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="密度" align="center" prop="density1" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="初馏点" align="center" prop="ibp" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="终馏点" align="center" prop="fbp" :show-overflow-tooltip="true"/>
|
|
@@ -277,16 +251,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s2400List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS2400" :data="s2400List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="化学需氧量" align="center" prop="cod" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="pH值" align="center" prop="ph" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="操作" align="center" fixed="right" width="120" class-name="small-padding fixed-width">
|
|
@@ -309,16 +282,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s3004List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS3004" :data="s3004List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="氢氧化钠" align="center" prop="naOh" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="碳酸钠" align="center" prop="na2Co3" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="硫化钠" align="center" prop="na2S" :show-overflow-tooltip="true"/>
|
|
@@ -342,16 +314,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s3009List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS3009" :data="s3009List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="一氧化碳含量" align="center" prop="carbonMonoxide" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="甲烷" align="center" prop="methane" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="乙烷" align="center" prop="ethane" :show-overflow-tooltip="true"/>
|
|
@@ -382,16 +353,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s3010List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS3010" :data="s3010List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="乙炔含量 " align="center" prop="acetylene" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="一氧化碳含量" align="center" prop="carbonMonoxide" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="甲烷 " align="center" prop="methane" :show-overflow-tooltip="true"/>
|
|
@@ -422,16 +392,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s3011List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS3011" :data="s3011List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="一氧化碳含量" align="center" prop="carbonMonoxide" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="甲烷 " align="center" prop="methane" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="乙烷" align="center" prop="ethane" :show-overflow-tooltip="true"/>
|
|
@@ -462,16 +431,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s3012List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS3012" :data="s3012List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="乙炔含量" align="center" prop="acetylene" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="一氧化碳含量" align="center" prop="carbonMonoxide" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="甲烷" align="center" prop="methane" :show-overflow-tooltip="true"/>
|
|
@@ -502,16 +470,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s3022List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS3022" :data="s3022List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="氢氧化钠" align="center" prop="naoh" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="碳酸钠" align="center" prop="na2co3" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="硫化钠" align="center" prop="na2s" :show-overflow-tooltip="true"/>
|
|
@@ -535,16 +502,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s4012List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS4012" :data="s4012List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="甲烷" align="center" prop="methane" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="乙烷" align="center" prop="ethane" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="乙烯" align="center" prop="ethylene" :show-overflow-tooltip="true"/>
|
|
@@ -570,16 +536,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s4013List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS4013" :data="s4013List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="乙烷" align="center" prop="ethane" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="甲烷和乙烷含量" align="center" prop="methaneEthane" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="乙烯含量" align="center" prop="ethylene" :show-overflow-tooltip="true"/>
|
|
@@ -606,16 +571,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s4501List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS4501" :data="s4501List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="苯" align="center" prop="benzene" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="甲苯" align="center" prop="toluene" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="乙苯" align="center" prop="ethylbenzene" :show-overflow-tooltip="true"/>
|
|
@@ -651,16 +615,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s5001List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS5001" :data="s5001List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="丙烷" align="center" prop="propane" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="环丙烷" align="center" prop="cycPropane" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="丙烯" align="center" prop="propylene" :show-overflow-tooltip="true"/>
|
|
@@ -686,16 +649,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s5003List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS5003" :data="s5003List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="甲烷" align="center" prop="methane" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="乙烷" align="center" prop="ethane" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="乙烯含量" align="center" prop="ethylene" :show-overflow-tooltip="true"/>
|
|
@@ -728,16 +690,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s5010List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS5010" :data="s5010List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="丙烯" align="center" prop="propylene" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="丙二烯" align="center" prop="propadiene" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="乙炔" align="center" prop="acetylene" :show-overflow-tooltip="true"/>
|
|
@@ -764,16 +725,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s5012List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS5012" :data="s5012List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="丙烯" align="center" prop="propylene" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="丙二烯" align="center" prop="propadiene" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="乙炔" align="center" prop="acetylene" :show-overflow-tooltip="true"/>
|
|
@@ -800,16 +760,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s6101List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS6101" :data="s6101List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="苯" align="center" prop="benzene" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="甲苯" align="center" prop="toluene" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="双环戊二烯" align="center" prop="dcpd" :show-overflow-tooltip="true"/>
|
|
@@ -851,16 +810,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s6107List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS6107" :data="s6107List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="化学需氧量" align="center" prop="cod" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="pH值" align="center" prop="ph" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="操作" align="center" fixed="right" width="120" class-name="small-padding fixed-width">
|
|
@@ -883,16 +841,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="s6301List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingS6301" :data="s6301List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="异戊二烯" align="center" prop="ic5" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="双环戊二烯" align="center" prop="dcpd" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="C5总量" align="center" prop="c5" :show-overflow-tooltip="true"/>
|
|
@@ -921,16 +878,15 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-table v-loading="loading" :data="z404List" @selection-change="handleSelectionChange" border>
|
|
|
- <el-table-column type="selection" width="55" align="center" />
|
|
|
- <el-table-column label="装置名称" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
- <el-table-column label="采样点" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table v-loading="loadingZ404" :data="z404List" @selection-change="handleSelectionChange" border>
|
|
|
+ <el-table-column label="装置名称" width="100" align="center" prop="locationName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="采样点" width="100" align="center" prop="samplePoint" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="采样日期" align="center" prop="sampleDate" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ parseTime(scope.row.sampleDate, '{y}-{m}-{d}') }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="样品名称" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
+ <el-table-column label="样品名称" width="100" align="center" prop="sampleName" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="甲烷" align="center" prop="methane" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="乙烷" align="center" prop="ethane" :show-overflow-tooltip="true"/>
|
|
|
<el-table-column label="乙烯" align="center" prop="ethylene" :show-overflow-tooltip="true"/>
|
|
@@ -1117,7 +1073,30 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
// 遮罩层
|
|
|
- loading: true,
|
|
|
+ loadingS0501: true,
|
|
|
+ loadingS1301: true,
|
|
|
+ loadingS2002: true,
|
|
|
+ loadingS2005: true,
|
|
|
+ loadingS2007: true,
|
|
|
+ loadingS2011: true,
|
|
|
+ loadingS2400: true,
|
|
|
+ loadingS3004: true,
|
|
|
+ loadingS3009: true,
|
|
|
+ loadingS3010: true,
|
|
|
+ loadingS3011: true,
|
|
|
+ loadingS3012: true,
|
|
|
+ loadingS3022: true,
|
|
|
+ loadingS4012: true,
|
|
|
+ loadingS4013: true,
|
|
|
+ loadingS4501: true,
|
|
|
+ loadingS5001: true,
|
|
|
+ loadingS5003: true,
|
|
|
+ loadingS5010: true,
|
|
|
+ loadingS5012: true,
|
|
|
+ loadingS6101: true,
|
|
|
+ loadingS6107: true,
|
|
|
+ loadingS6301: true,
|
|
|
+ loadingZ404: true,
|
|
|
// 选中数组
|
|
|
ids: [],
|
|
|
// 非单个禁用
|
|
@@ -1207,127 +1186,197 @@ export default {
|
|
|
methods: {
|
|
|
/** 查询质量月报列表 */
|
|
|
getList() {
|
|
|
- this.loading = true;
|
|
|
- console.log(this.queryParams)
|
|
|
+ this.getListS0501();
|
|
|
+ this.getListS1301();
|
|
|
+ this.getListS2002();
|
|
|
+ this.getListS2005();
|
|
|
+ this.getListS2007();
|
|
|
+ this.getListS2011();
|
|
|
+ this.getListS2400();
|
|
|
+ this.getListS3004();
|
|
|
+ this.getListS3009();
|
|
|
+ this.getListS3010();
|
|
|
+ this.getListS3011();
|
|
|
+ this.getListS3012();
|
|
|
+ this.getListS3022();
|
|
|
+ this.getListS4012();
|
|
|
+ this.getListS4013();
|
|
|
+ this.getListS4501();
|
|
|
+ this.getListS5001();
|
|
|
+ this.getListS5003();
|
|
|
+ this.getListS5010();
|
|
|
+ this.getListS5012();
|
|
|
+ this.getListS6101();
|
|
|
+ this.getListS6107();
|
|
|
+ this.getListS6301();
|
|
|
+ this.getListZ404();
|
|
|
+ },
|
|
|
+ getListS0501() {
|
|
|
+ this.loadingS0501 = true;
|
|
|
listS0501(this.queryParams).then(response => {
|
|
|
this.s0501List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS0501 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS1301() {
|
|
|
+ this.loadingS1301 = true;
|
|
|
listS1301(this.queryParams).then(response => {
|
|
|
this.s1301List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS1301 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS2002() {
|
|
|
+ this.loadingS2002 = true;
|
|
|
listS2002(this.queryParams).then(response => {
|
|
|
this.s2002List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS2002 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS2005() {
|
|
|
+ this.loadingS2005 = true;
|
|
|
listS2005(this.queryParams).then(response => {
|
|
|
this.s2005List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS2005 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS2007() {
|
|
|
+ this.loadingS2007 = true;
|
|
|
listS2007(this.queryParams).then(response => {
|
|
|
this.s2007List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS2007 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS2011() {
|
|
|
+ this.loadingS2011 = true;
|
|
|
listS2011(this.queryParams).then(response => {
|
|
|
this.s2011List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS2011 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS2400() {
|
|
|
+ this.loadingS2400 = true;
|
|
|
listS2400(this.queryParams).then(response => {
|
|
|
this.s2400List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS2400 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS3004() {
|
|
|
+ this.loadingS3004 = true;
|
|
|
listS3004(this.queryParams).then(response => {
|
|
|
this.s3004List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS3004 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS3009() {
|
|
|
+ this.loadingS3009 = true;
|
|
|
listS3009(this.queryParams).then(response => {
|
|
|
this.s3009List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS3009 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS3010() {
|
|
|
+ this.loadingS3010 = true;
|
|
|
listS3010(this.queryParams).then(response => {
|
|
|
this.s3010List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS3010 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS3011() {
|
|
|
+ this.loadingS3011 = true;
|
|
|
listS3011(this.queryParams).then(response => {
|
|
|
this.s3011List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS3011 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS3012() {
|
|
|
+ this.loadingS3012 = true;
|
|
|
listS3012(this.queryParams).then(response => {
|
|
|
this.s3012List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS3012 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS3022() {
|
|
|
+ this.loadingS3022 = true;
|
|
|
listS3022(this.queryParams).then(response => {
|
|
|
this.s3022List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS3022 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS4012() {
|
|
|
+ this.loadingS4012 = true;
|
|
|
listS4012(this.queryParams).then(response => {
|
|
|
this.s4012List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS4012 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS4013() {
|
|
|
+ this.loadingS4013 = true;
|
|
|
listS4013(this.queryParams).then(response => {
|
|
|
this.s4013List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS4013 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS4501() {
|
|
|
+ this.loadingS4501 = true;
|
|
|
listS4501(this.queryParams).then(response => {
|
|
|
this.s4501List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS4501 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS5001() {
|
|
|
+ this.loadingS5001 = true;
|
|
|
listS5001(this.queryParams).then(response => {
|
|
|
this.s5001List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS5001 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS5003() {
|
|
|
+ this.loadingS5003 = true;
|
|
|
listS5003(this.queryParams).then(response => {
|
|
|
this.s5003List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS5003 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS5010() {
|
|
|
+ this.loadingS5010 = true;
|
|
|
listS5010(this.queryParams).then(response => {
|
|
|
this.s5010List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS5010 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS5012() {
|
|
|
+ this.loadingS5012 = true;
|
|
|
listS5012(this.queryParams).then(response => {
|
|
|
this.s5012List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS5012 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS6101() {
|
|
|
+ this.loadingS6101 = true;
|
|
|
listS6101(this.queryParams).then(response => {
|
|
|
this.s6101List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS6101 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS6107() {
|
|
|
+ this.loadingS6107 = true;
|
|
|
listS6107(this.queryParams).then(response => {
|
|
|
this.s6107List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS6107 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListS6301() {
|
|
|
+ this.loadingS6301 = true;
|
|
|
listS6301(this.queryParams).then(response => {
|
|
|
this.s6301List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingS6301 = false;
|
|
|
});
|
|
|
+ },
|
|
|
+ getListZ404() {
|
|
|
+ this.loadingZ404 = true;
|
|
|
listZ404(this.queryParams).then(response => {
|
|
|
this.z404List = response.rows;
|
|
|
- this.total = response.total;
|
|
|
- this.loading = false;
|
|
|
+ this.loadingZ404 = false;
|
|
|
});
|
|
|
},
|
|
|
/** 查询部门下拉树结构 */
|
|
@@ -1426,18 +1475,112 @@ export default {
|
|
|
},
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|
|
|
- alert("功能开发中")
|
|
|
- // const ids = row.id || this.ids;
|
|
|
- // this.$confirm('是否确认删除?', "警告", {
|
|
|
- // confirmButtonText: "确定",
|
|
|
- // cancelButtonText: "取消",
|
|
|
- // type: "warning"
|
|
|
- // }).then(function() {
|
|
|
- // return delS0501(ids);
|
|
|
- // }).then(() => {
|
|
|
- // this.getList();
|
|
|
- // this.msgSuccess("删除成功");
|
|
|
- // })
|
|
|
+ this.$confirm('是否确认删除?', "警告", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ }).then(function() {
|
|
|
+ if (row.samplePoint == 'S0501') {
|
|
|
+ return delS0501(row.id);
|
|
|
+ } else if (row.samplePoint == 'S1301') {
|
|
|
+ return delS1301(row.id);
|
|
|
+ } else if (row.samplePoint == 'S2002') {
|
|
|
+ return delS2002(row.id);
|
|
|
+ } else if (row.samplePoint == 'S2005') {
|
|
|
+ return delS2005(row.id);
|
|
|
+ } else if (row.samplePoint == 'S2007') {
|
|
|
+ return delS2007(row.id);
|
|
|
+ } else if (row.samplePoint == 'S2011') {
|
|
|
+ return delS2011(row.id);
|
|
|
+ } else if (row.samplePoint == 'S2400') {
|
|
|
+ return delS2400(row.id);
|
|
|
+ } else if (row.samplePoint == 'S3004') {
|
|
|
+ return delS3004(row.id);
|
|
|
+ } else if (row.samplePoint == 'S3009') {
|
|
|
+ return delS3009(row.id);
|
|
|
+ } else if (row.samplePoint == 'S3010') {
|
|
|
+ return delS3010(row.id);
|
|
|
+ } else if (row.samplePoint == 'S3011') {
|
|
|
+ return delS3011(row.id);
|
|
|
+ } else if (row.samplePoint == 'S3012') {
|
|
|
+ return delS3012(row.id);
|
|
|
+ } else if (row.samplePoint == 'S3022') {
|
|
|
+ return delS3022(row.id);
|
|
|
+ } else if (row.samplePoint == 'S4012') {
|
|
|
+ return delS4012(row.id);
|
|
|
+ } else if (row.samplePoint == 'S4013') {
|
|
|
+ return delS4013(row.id);
|
|
|
+ } else if (row.samplePoint == 'S4501') {
|
|
|
+ return delS4501(row.id);
|
|
|
+ } else if (row.samplePoint == 'S5001') {
|
|
|
+ return delS5001(row.id);
|
|
|
+ } else if (row.samplePoint == 'S5003') {
|
|
|
+ return delS5003(row.id);
|
|
|
+ } else if (row.samplePoint == 'S5010') {
|
|
|
+ return delS5010(row.id);
|
|
|
+ } else if (row.samplePoint == 'S5012') {
|
|
|
+ return delS5012(row.id);
|
|
|
+ } else if (row.samplePoint == 'S6101') {
|
|
|
+ return delS6101(row.id);
|
|
|
+ } else if (row.samplePoint == 'S6107') {
|
|
|
+ return delS6107(row.id);
|
|
|
+ } else if (row.samplePoint == 'S6301') {
|
|
|
+ return delS6301(row.id);
|
|
|
+ } else if (row.samplePoint == 'Z404') {
|
|
|
+ return delZ404(row.id);
|
|
|
+ }
|
|
|
+ }).then(() => {
|
|
|
+ if (row.samplePoint == 'S0501') {
|
|
|
+ this.getListS0501();
|
|
|
+ } else if (row.samplePoint == 'S1301') {
|
|
|
+ this.getListS1301();
|
|
|
+ } else if (row.samplePoint == 'S2002') {
|
|
|
+ this.getListS2002();
|
|
|
+ } else if (row.samplePoint == 'S2005') {
|
|
|
+ this.getListS2005();
|
|
|
+ } else if (row.samplePoint == 'S2007') {
|
|
|
+ this.getListS2007();
|
|
|
+ } else if (row.samplePoint == 'S2011') {
|
|
|
+ this.getListS2011();
|
|
|
+ } else if (row.samplePoint == 'S2400') {
|
|
|
+ this.getListS2400();
|
|
|
+ } else if (row.samplePoint == 'S3004') {
|
|
|
+ this.getListS3004();
|
|
|
+ } else if (row.samplePoint == 'S3009') {
|
|
|
+ this.getListS3009();
|
|
|
+ } else if (row.samplePoint == 'S3010') {
|
|
|
+ this.getListS3010();
|
|
|
+ } else if (row.samplePoint == 'S3011') {
|
|
|
+ this.getListS3011();
|
|
|
+ } else if (row.samplePoint == 'S3012') {
|
|
|
+ this.getListS3012();
|
|
|
+ } else if (row.samplePoint == 'S3022') {
|
|
|
+ this.getListS3022();
|
|
|
+ } else if (row.samplePoint == 'S4012') {
|
|
|
+ this.getListS4012();
|
|
|
+ } else if (row.samplePoint == 'S4013') {
|
|
|
+ this.getListS4013();
|
|
|
+ } else if (row.samplePoint == 'S4501') {
|
|
|
+ this.getListS4501();
|
|
|
+ } else if (row.samplePoint == 'S5001') {
|
|
|
+ this.getListS5001();
|
|
|
+ } else if (row.samplePoint == 'S5003') {
|
|
|
+ this.getListS5003();
|
|
|
+ } else if (row.samplePoint == 'S5010') {
|
|
|
+ this.getListS5010();
|
|
|
+ } else if (row.samplePoint == 'S5012') {
|
|
|
+ this.getListS5012();
|
|
|
+ } else if (row.samplePoint == 'S6101') {
|
|
|
+ this.getListS6101();
|
|
|
+ } else if (row.samplePoint == 'S6107') {
|
|
|
+ this.getListS6107();
|
|
|
+ } else if (row.samplePoint == 'S6301') {
|
|
|
+ this.getListS6301();
|
|
|
+ } else if (row.samplePoint == 'Z404') {
|
|
|
+ this.getListZ404();
|
|
|
+ }
|
|
|
+ this.msgSuccess("删除成功");
|
|
|
+ })
|
|
|
},
|
|
|
/** 导出按钮操作 */
|
|
|
handleExport() {
|