index.vue 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <template>
  2. <div class="app-container">
  3. <el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
  4. <el-form-item label="日期" style="width: 308px">
  5. <el-date-picker
  6. v-model="daterangeTestDate"
  7. value-format="YYYY/MM/DD"
  8. type="daterange"
  9. range-separator="-"
  10. start-placeholder="开始日期"
  11. end-placeholder="结束日期"
  12. ></el-date-picker>
  13. </el-form-item>
  14. <el-form-item>
  15. <el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
  16. <el-button icon="Refresh" @click="resetQuery">重置</el-button>
  17. </el-form-item>
  18. </el-form>
  19. <el-row :gutter="10" class="mb8">
  20. <right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
  21. </el-row>
  22. <el-table v-loading="loading" :data="calculateList" @selection-change="handleSelectionChange">
  23. <el-table-column label="化验时间" align="center" prop="testTime" />
  24. <el-table-column label="进水碳氮比" align="center" prop="jsTdb" />
  25. <el-table-column label="进水碳磷比" align="center" prop="jsTlb" />
  26. <el-table-column label="进水BOD与COD比值(生化性)" align="center" prop="jsBodBCod" />
  27. <el-table-column label="厌氧区停留时间" align="center" prop="yyqHrt" />
  28. <el-table-column label="缺氧区停留时间" align="center" prop="qyqHrt" />
  29. <el-table-column label="好氧区停留时间" align="center" prop="hyqHrt" />
  30. <el-table-column label="挥发性污泥浓度占比" align="center" prop="HFXWNNDZB" />
  31. <el-table-column label="F/M" align="center" prop="fM" />
  32. <el-table-column label="过栅流速" align="center" prop="GSLS" />
  33. <el-table-column label="第1道粗格栅过栅流速" align="center" prop="gslsOne" />
  34. <el-table-column label="第2道粗格栅过栅流速" align="center" prop="gslsTwo" />
  35. <el-table-column label="细格栅过栅流速" align="center" prop="xgsGsls" />
  36. <el-table-column label="旋流沉砂池表面负荷" align="center" prop="xlcscBmfh" />
  37. <el-table-column label="旋流沉砂池停留时间" align="center" prop="xlcscHrt" />
  38. <el-table-column label="初次沉淀池表面负荷" align="center" prop="cccdcBmfh" />
  39. <el-table-column label="初次沉淀池停留时间" align="center" prop="cccdcHrt" />
  40. <el-table-column label="二沉池表面负荷" align="center" prop="eccBmfh" />
  41. <el-table-column label="二沉池停留时间" align="center" prop="eccHrt" />
  42. <el-table-column label="二沉池固体负荷" align="center" prop="eccGtfh" />
  43. <el-table-column label="次氯酸钠接触时间" align="center" prop="clsnJcsj" />
  44. <el-table-column label="斜管沉淀池清水区上升流速" align="center" prop="xgcdcQsqSsls" />
  45. <el-table-column label="外回流比" align="center" prop="WHLB" />
  46. <el-table-column label="外回流比,新的计算方式" align="center" prop="whlRN" />
  47. <el-table-column label="内回流比" align="center" prop="NHLB" />
  48. <el-table-column label="万吨水产泥率" align="center" prop="WDSCNL" />
  49. <el-table-column label="生化池气水比" align="center" prop="QSB" />
  50. <el-table-column label="反冲洗水量" align="center" prop="FCXSL" />
  51. <el-table-column label="反冲洗水量比例" align="center" prop="FCXSLBL" />
  52. <el-table-column label="备注" align="center" prop="remark" />
  53. </el-table>
  54. <pagination
  55. v-show="total>0"
  56. :total="total"
  57. v-model:page="queryParams.pageNum"
  58. v-model:limit="queryParams.pageSize"
  59. @pagination="getList"
  60. />
  61. <!-- 添加或修改信义计算数据对话框 -->
  62. <el-dialog :title="title" v-model="open" width="500px" append-to-body>
  63. <el-form ref="calculateRef" :model="form" :rules="rules" label-width="80px">
  64. </el-form>
  65. <template #footer>
  66. <div class="dialog-footer">
  67. <el-button type="primary" @click="submitForm">确 定</el-button>
  68. <el-button @click="cancel">取 消</el-button>
  69. </div>
  70. </template>
  71. </el-dialog>
  72. </div>
  73. </template>
  74. <script setup name="Calculate">
  75. import { listCalculate, getCalculate, delCalculate, addCalculate, updateCalculate } from "@/api/business/calculate";
  76. const { proxy } = getCurrentInstance();
  77. const calculateList = ref([]);
  78. const open = ref(false);
  79. const loading = ref(true);
  80. const showSearch = ref(true);
  81. const ids = ref([]);
  82. const single = ref(true);
  83. const multiple = ref(true);
  84. const total = ref(0);
  85. const title = ref("");
  86. const daterangeTestDate = ref([]);
  87. const data = reactive({
  88. form: {},
  89. queryParams: {
  90. pageNum: 1,
  91. pageSize: 10,
  92. testDate: null,
  93. },
  94. rules: {
  95. }
  96. });
  97. const { queryParams, form, rules } = toRefs(data);
  98. /** 查询信义计算数据列表 */
  99. function getList() {
  100. loading.value = true;
  101. queryParams.value.params = {};
  102. if (null != daterangeTestDate && '' != daterangeTestDate) {
  103. queryParams.value["timeBegin"] = daterangeTestDate.value[0];
  104. queryParams.value["timeEnd"] = daterangeTestDate.value[1];
  105. }
  106. listCalculate(queryParams.value).then(response => {
  107. calculateList.value = response.rows;
  108. total.value = response.total;
  109. loading.value = false;
  110. });
  111. }
  112. // 取消按钮
  113. function cancel() {
  114. open.value = false;
  115. reset();
  116. }
  117. // 表单重置
  118. function reset() {
  119. form.value = {
  120. id: null,
  121. testDate: null,
  122. testHour: null,
  123. testTime: null,
  124. jsTdb: null,
  125. jsTlb: null,
  126. jsBodBCod: null,
  127. yyqHrt: null,
  128. qyqHrt: null,
  129. hyqHrt: null,
  130. HFXWNNDZB: null,
  131. fM: null,
  132. GSLS: null,
  133. gslsOne: null,
  134. gslsTwo: null,
  135. xgsGsls: null,
  136. xlcscBmfh: null,
  137. xlcscHrt: null,
  138. cccdcBmfh: null,
  139. cccdcHrt: null,
  140. eccBmfh: null,
  141. eccHrt: null,
  142. eccGtfh: null,
  143. clsnJcsj: null,
  144. xgcdcQsqSsls: null,
  145. WHLB: null,
  146. whlRN: null,
  147. NHLB: null,
  148. WDSCNL: null,
  149. QSB: null,
  150. FCXSL: null,
  151. FCXSLBL: null,
  152. delFlag: null,
  153. revision: null,
  154. createBy: null,
  155. createTime: null,
  156. updateBy: null,
  157. updateTime: null,
  158. remark: null
  159. };
  160. proxy.resetForm("calculateRef");
  161. }
  162. /** 搜索按钮操作 */
  163. function handleQuery() {
  164. queryParams.value.pageNum = 1;
  165. getList();
  166. }
  167. /** 重置按钮操作 */
  168. function resetQuery() {
  169. daterangeTestDate.value = [];
  170. proxy.resetForm("queryRef");
  171. handleQuery();
  172. }
  173. // 多选框选中数据
  174. function handleSelectionChange(selection) {
  175. ids.value = selection.map(item => item.id);
  176. single.value = selection.length != 1;
  177. multiple.value = !selection.length;
  178. }
  179. /** 新增按钮操作 */
  180. function handleAdd() {
  181. reset();
  182. open.value = true;
  183. title.value = "添加信义计算数据";
  184. }
  185. /** 修改按钮操作 */
  186. function handleUpdate(row) {
  187. reset();
  188. const _id = row.id || ids.value
  189. getCalculate(_id).then(response => {
  190. form.value = response.data;
  191. open.value = true;
  192. title.value = "修改信义计算数据";
  193. });
  194. }
  195. /** 提交按钮 */
  196. function submitForm() {
  197. proxy.$refs["calculateRef"].validate(valid => {
  198. if (valid) {
  199. if (form.value.id != null) {
  200. updateCalculate(form.value).then(response => {
  201. proxy.$modal.msgSuccess("修改成功");
  202. open.value = false;
  203. getList();
  204. });
  205. } else {
  206. addCalculate(form.value).then(response => {
  207. proxy.$modal.msgSuccess("新增成功");
  208. open.value = false;
  209. getList();
  210. });
  211. }
  212. }
  213. });
  214. }
  215. /** 删除按钮操作 */
  216. function handleDelete(row) {
  217. const _ids = row.id || ids.value;
  218. proxy.$modal.confirm('是否确认删除信义计算数据编号为"' + _ids + '"的数据项?').then(function() {
  219. return delCalculate(_ids);
  220. }).then(() => {
  221. getList();
  222. proxy.$modal.msgSuccess("删除成功");
  223. }).catch(() => {});
  224. }
  225. /** 导出按钮操作 */
  226. function handleExport() {
  227. proxy.download('business/calculate/export', {
  228. ...queryParams.value
  229. }, `calculate_${new Date().getTime()}.xlsx`)
  230. }
  231. getList();
  232. </script>