From ea220d6bba2fefd738acce188607e327f13bfced Mon Sep 17 00:00:00 2001
From: xyc <jc_xiong@hotmail.com>
Date: 星期四, 07 三月 2024 21:58:06 +0800
Subject: [PATCH] 能解析5种模型(串联、并联、旁联、表决、桥联)的版本
---
web/src/views/modules/basicInfo/ParamDataExpect.vue | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/web/src/views/modules/basicInfo/ParamDataExpect.vue b/web/src/views/modules/basicInfo/ParamDataExpect.vue
index 557f4a0..371f0a8 100644
--- a/web/src/views/modules/basicInfo/ParamDataExpect.vue
+++ b/web/src/views/modules/basicInfo/ParamDataExpect.vue
@@ -200,7 +200,7 @@
<!-- <zt-table-column-dict v-if="dataForm.nodeType==='2'" :key="27" prop="reliabDistribType" label="鍙潬鎬у垎甯冪被鍨�"
width="160"/>-->
- <el-table-column prop="reliabDistribType" label="鍙潬鎬у垎甯冪被鍨�" :key="27" width="160">
+ <el-table-column v-if="dataForm.nodeType==='2'" prop="reliabDistribType" label="鍙潬鎬у垎甯冪被鍨�" :key="27" width="160">
<template v-slot="{ row }">
<el-select v-if="row.isEdit" v-model="row.reliabDistribType"
placeholder="褰撳墠鐘舵��">
@@ -314,7 +314,7 @@
async handleSaveRows() {
this.dataForm.dataThreeList = this.$refs.tableObj.dataList
console.log(this.dataForm, 'this.dataForm this.dataForm')
- let res = await this.$http.post('/basicInfo/ParamDataExpect/', this.dataForm)
+ let res = await this.$http.post('/basicInfo/ParamDataExpect/save', this.dataForm)
if (res.success) {
console.log(res.data)
await this.$tip.success()
--
Gitblit v1.9.1