From eaff2fbd473362115c8c45e22b86b2ecb73e5a97 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期四, 10 九月 2026 15:17:12 +0800
Subject: [PATCH] 新疆——新聚lims 1.标准库层级需要修改层级,行业-标准,总共两级;实验室换成行业 2.每个标准下的检验项列表加一个搜索查询功能
---
src/views/standard/standardLibrary/index.vue | 503 ++++++++++++++++---------------------------------------
1 files changed, 144 insertions(+), 359 deletions(-)
diff --git a/src/views/standard/standardLibrary/index.vue b/src/views/standard/standardLibrary/index.vue
index 448fd21..7f57755 100644
--- a/src/views/standard/standardLibrary/index.vue
+++ b/src/views/standard/standardLibrary/index.vue
@@ -8,44 +8,41 @@
<div class="head-container addButton">
<el-input v-model="search" clearable placeholder="杈撳叆鍏抽敭瀛楄繘琛屾悳绱�" size="small" style="margin-bottom: 5px"
suffix-icon="el-icon-search" @keydown.enter.native="searchFilter" @blur="searchFilter" @clear="searchFilter"></el-input>
- <el-button circle icon="el-icon-plus" size="mini" type="primary" @click="addDia = true"></el-button>
+ <el-button circle icon="el-icon-plus" size="mini" type="primary" @click="openAddDia"></el-button>
</div>
<div class="head-container">
- <el-tree ref="tree" v-loading="treeLoad" :allow-drop="allowDrop" :data="list"
- :default-expanded-keys="expandedKeys" :draggable="true" :filter-node-method="filterNode"
+ <el-tree ref="tree" v-loading="treeLoad" :data="list"
+ :default-expanded-keys="expandedKeys" :filter-node-method="filterNode"
:props="{ children: 'children', label: 'label' }" highlight-current node-key="label"
style="
height: calc(100vh - 173px);
overflow-y: scroll;
scrollbar-width: none;"
- @node-click="handleNodeClick"
- @node-drop="handleDrop">
+ @node-click="handleNodeClick">
<div slot-scope="{ node, data }" class="custom-tree-node">
<el-row style="width: 100%">
- <el-col :class="{ sort: node.level > 3 }" :span="19" :title="data.label" style="text-align: left">
+ <el-col :span="19" :title="data.label" style="text-align: left">
<span>
- <i :class="`node_i ${data.children != undefined
- ? data.code === '[1]'
+ <i :class="`node_i ${isLeaf(data)
+ ? 'el-icon-tickets'
+ : node.level === 1
? 'el-icon-folder-opened'
: 'el-icon-folder'
- : 'el-icon-tickets'
}`"></i>
{{ data.label }}
</span>
</el-col>
<el-col v-if="
checkPermi(['standard:standardLibrary:delStandardTree']) &&
- (node.data.children === null ||
- node.data.children === undefined)
+ isLeaf(node.data)
" :span="2" style="text-align: right">
- <el-button size="mini" type="text" @click.stop="editTreeName(node.data)">
+ <el-button size="mini" type="text" @click.stop="editTreeName(node)">
<i class="el-icon-edit"></i>
</el-button>
</el-col>
<el-col v-if="
checkPermi(['standard:standardLibrary:delStandardTree']) &&
- (node.data.children === null ||
- node.data.children === undefined)
+ isLeaf(node.data)
" :span="2" style="text-align: right">
<el-button size="mini" type="text" @click.stop="remove(node, data)">
<i class="el-icon-delete"></i>
@@ -64,6 +61,9 @@
<p style="font-size: 14px; color: #999;margin-left: 10px">{{ selectTree }}</p>
</div>
<div class="options_button">
+ <el-input v-model="productKeyword" :disabled="!selected.isLeaf" clearable placeholder="鎼滅储妫�楠岄」/妫�楠岄」瀛愰」"
+ size="small" style="width: 240px" suffix-icon="el-icon-search"
+ @keyup.enter.native="searchProduct" @clear="searchProduct"></el-input>
<el-button v-if="isShowCopy" size="small" style="position: absolute; right: 20px; top: 1px" type="primary"
@click="openCopyDia">鎵归噺澶嶅埗</el-button>
</div>
@@ -198,12 +198,17 @@
<el-dialog :visible.sync="addDia" title="鍒嗙被娣诲姞" width="400px">
<div class="body">
+ <el-row style="line-height: 30px">
+ <el-col :span="24" style="color: #999; font-size: 13px">
+ 鏂板鍒帮細{{ selected.tree || '鏍圭洰褰�' }}
+ </el-col>
+ </el-row>
<el-row style="line-height: 50px">
<el-col :span="6" style="text-align: right">
- <span class="required-span">* </span>鍨嬪彿锛�
+ <span class="required-span">* </span>鍚嶇О锛�
</el-col>
<el-col :offset="1" :span="16">
- <el-input v-model="addOb.model" clearable placeholder="璇疯緭鍏ュ瀷鍙�" size="small"
+ <el-input v-model="addOb.name" clearable placeholder="璇疯緭鍏ュ悕绉�" size="small"
@keyup.enter.native="addStandardTree"></el-input>
</el-col>
</el-row>
@@ -217,10 +222,10 @@
<div class="body">
<el-row style="line-height: 50px">
<el-col :span="6" style="text-align: right">
- <span class="required-span">* </span>鍨嬪彿锛�
+ <span class="required-span">* </span>鍚嶇О锛�
</el-col>
<el-col :offset="1" :span="16">
- <el-input v-model="addOb.model" clearable placeholder="璇疯緭鍏ュ瀷鍙�" size="small"
+ <el-input v-model="addOb.name" clearable placeholder="璇疯緭鍏ュ悕绉�" size="small"
@keyup.enter.native="updateStandardTree"></el-input>
</el-col>
</el-row>
@@ -302,9 +307,7 @@
<script>
import Sortable from "sortablejs";
-import draggable from "vuedraggable";
import {
- updateTreeSort,
resetTreeDragBatch,
delStandardTree,
selectStandardTreeList,
@@ -317,13 +320,16 @@
upStandardProductList,
selectStandardProductListByMethodId,
updateSection,
- upStandardProducts,
getStandardTemplate,
- selectStandardProductByMethodId,
- selectStandardProductEnumByMethodId,
} from "@/api/standard/standardLibrary";
import bindSupplierDensityDialogAsk from "./components/bindSupplierDensityDialogAsk.vue";
import BatchCopy from "./components/BatchCopy.vue";
+import {
+ isLeaf,
+ buildSelectTree,
+ getAncestorLabels,
+ dropLastLabel,
+} from "@/utils/standardTree";
import { Splitpanes, Pane } from "splitpanes";
import "splitpanes/dist/splitpanes.css";
@@ -332,7 +338,6 @@
components: {
BatchCopy,
bindSupplierDensityDialogAsk,
- draggable,
Splitpanes,
Pane
},
@@ -346,13 +351,18 @@
factory: [],
addDia: false,
updateDia: false, // 淇敼鏍戝悕瀛楀脊妗�
- oldModel: "",
+ oldLabel: "",
+ editTree: "",
+ // 褰撳墠閫変腑鐨勮妭鐐癸細label / 瀹屾暣璺緞 / 鏄惁鍙跺瓙(鏍囧噯)
+ selected: {
+ label: "",
+ tree: "",
+ isLeaf: false,
+ },
+ // 妫�楠岄」鎼滅储鍏抽敭瀛楋紝璧板悗绔繃婊わ紙妫�楠岄」 + 妫�楠岄」瀛愰」锛�
+ productKeyword: "",
addOb: {
- factory: null,
- laboratory: null,
- sampleType: null,
- sample: null,
- model: null,
+ name: "",
},
laboratory: [],
addLoad: false,
@@ -384,29 +394,17 @@
total: 0,
currentPage: 1,
standardId: 0,
- total0: 0,
- currentPage0: 1,
- productList0: [],
methodList: [],
- productTableLoading0: false,
- filters0: [],
- filters1: [],
- pages: 1,
- inspectionItem: null,
- inspectionItemSubclass: null,
- sonLaboratory: null,
token: null,
fileList: [],
uploading: false,
isEquipment: true,
- isHaveChildren: {},
sortTable: null,
currentSupplierDensityRow: {}, // 閫夋嫨闆朵欢缁戝畾鏈潯鏁版嵁鐨勪俊鎭�
bindSupplierDensityDialog: false,
isShowCopy: false,
batchCopyDia: false,
VUE_APP_BASE_API: process.env.VUE_APP_BASE_API,
- moreSelects: [],
};
},
mounted() {
@@ -424,40 +422,18 @@
};
},
methods: {
- // 淇敼鏈�瀛愮骇鍚嶅瓧
- editTreeName(info) {
+ isLeaf,
+ // 鎵撳紑鏂板寮规锛氬湪褰撳墠閫変腑鑺傜偣涓嬫柊澧炲瓙绾э紙鏈�変腑鍒欐柊澧炴牴绾э級
+ openAddDia() {
+ this.addOb.name = "";
+ this.addDia = true;
+ },
+ // 淇敼鑺傜偣鍚嶅瓧
+ editTreeName(node) {
this.updateDia = true;
- this.oldModel = info.label;
- },
- // 鎷栨嫿鏃跺垽瀹氱洰鏍囪妭鐐硅兘鍚﹁鏀剧疆
- // 'prev'銆�'inner' 鍜� 'next'锛屽墠銆佹彃鍏ャ�佸悗
- allowDrop(draggingNode, dropNode, type) {
- if (draggingNode.level !== 3) return;
- if (draggingNode.data.level === dropNode.data.level) {
- if (draggingNode.data.parentId === dropNode.data.parentId) {
- return type === "prev" || type === "next";
- } else {
- return false;
- }
- } else {
- // 涓嶅悓绾ц繘琛屽鐞�
- return false;
- }
- },
- // tree鎷栨嫿鎴愬姛瀹屾垚鏃惰Е鍙戠殑浜嬩欢
- handleDrop(draggingNode, dropNode, dropType, ev) {
- try {
- this.treeLoad = true;
- updateTreeSort(this.list).then((res) => {
- if (res.code === 200) {
- this.$message.success("鎿嶄綔鎴愬姛");
- }
- this.treeLoad = false;
- });
- } catch (e) {
- this.treeLoad = false;
- console.log("e----", e);
- }
+ this.oldLabel = node.label;
+ this.editTree = buildSelectTree(node, "null");
+ this.addOb.name = node.label;
},
rowDrop(methodId) {
const that = this;
@@ -497,54 +473,12 @@
});
}
},
- hasChildWithId(nodes, name) {
- for (let node of nodes) {
- const comName = node.label + node.code;
- if (comName == name) {
- //鍒ゆ柇閫掑綊缁撴潫鏉′欢
- this.isHaveChildren = node;
- return node;
- } else if (node.children && node.children.length > 0) {
- //鍒ゆ柇children鏄惁鏈夋暟鎹�
- this.hasChildWithId(node.children, name); //閫掑綊璋冪敤
- }
- }
- },
// 璋冪敤tree杩囨护鏂规硶 涓枃鑻辫繃婊�
filterNode (value, data, node) {
if (!value) {銆�銆�銆�銆�//濡傛灉鏁版嵁涓虹┖锛屽垯杩斿洖true,鏄剧ず鎵�鏈夌殑鏁版嵁椤�
return true
}
return data.label.indexOf(value) !== -1;
- // 鏌ヨ鍒楄〃鏄惁鏈夊尮閰嶆暟鎹紝灏嗗�煎皬鍐欙紝鍖归厤鑻辨枃鏁版嵁
- // let val = value.toLowerCase()
- // return this.chooseNode(val, data, node) // 璋冪敤杩囨护浜屽眰鏂规硶
- },
- // 杩囨护鐖惰妭鐐� / 瀛愯妭鐐� (濡傛灉杈撳叆鐨勫弬鏁版槸鐖惰妭鐐逛笖鑳藉尮閰嶏紝鍒欒繑鍥炶鑺傜偣浠ュ強鍏朵笅鐨勬墍鏈夊瓙鑺傜偣锛涘鏋滃弬鏁版槸瀛愯妭鐐癸紝鍒欒繑鍥炶鑺傜偣鐨勭埗鑺傜偣銆俷ame鏄腑鏂囧瓧绗︼紝enName鏄嫳鏂囧瓧绗�.
- chooseNode (value, data, node) {
- if (data.label.indexOf(value) !== -1) {
- return true
- }
- const level = node.level
- // 濡傛灉浼犲叆鐨勮妭鐐规湰韬氨鏄竴绾ц妭鐐瑰氨涓嶇敤鏍¢獙浜�
- if (level === 1) {
- return false
- }
- // 鍏堝彇褰撳墠鑺傜偣鐨勭埗鑺傜偣
- let parentData = node.parent
- // 閬嶅巻褰撳墠鑺傜偣鐨勭埗鑺傜偣
- let index = 0
- while (index < level - 1) {
- // 濡傛灉鍖归厤鍒扮洿鎺ヨ繑鍥烇紝姝ゅname鍊兼槸涓枃瀛楃锛宔nName鏄嫳鏂囧瓧绗︺�傚垽鏂尮閰嶄腑鑻辨枃杩囨护
- if (parentData.data.label.indexOf(value) !== -1) {
- return true
- }
- // 鍚﹀垯鐨勮瘽鍐嶅線涓婁竴灞傚仛鍖归厤
- parentData = parentData.parent
- index++
- }
- // 娌″尮閰嶅埌杩斿洖false
- return false
},
searchFilter() {
@@ -554,40 +488,26 @@
this.upIndex++;
},
handleNodeClick(val, node, el) {
- //鏍戠殑鍊�
- if (node.childNodes.length === 0) {
- this.isShowCopy = true;
- } else {
- this.isShowCopy = false;
- }
+ const leaf = isLeaf(val);
+ // 鍙跺瓙鑺傜偣鍗虫爣鍑嗭紝鎵嶆樉绀烘壒閲忓鍒躲�佹墠鏌ヨ妫�楠岄」
+ this.isShowCopy = leaf;
this.total = 0;
this.currentPage = 1;
- this.selectTree = "";
- this.getNodeParent(node);
- this.selectTree = this.selectTree.replace(" - ", "");
- let data = this.selectTree.split(" - ");
- let data2 = "";
- for (let index = data.length - 1; index >= 0; index--) {
- data2 += " - " + data[index];
- }
- this.selectTree = data2.replace(" - ", "");
- if (node.childNodes.length === 0) {
+ this.selectTree = buildSelectTree(node, "null");
+ this.selected = {
+ label: val.label,
+ tree: this.selectTree,
+ isLeaf: leaf,
+ };
+ // 鍒囨崲鑺傜偣鏃舵竻绌烘悳绱笌鍒楄〃锛涢潪鏍囧噯鑺傜偣杩樿娓呯┖ standardId锛岄伩鍏嶆悳绱㈡煡鍒颁笂涓�涓爣鍑�
+ this.productKeyword = "";
+ this.standardList = [];
+ this.productList = [];
+ if (leaf) {
this.selectsStandardMethodByFLSSM();
- }
- let trees = this.selectTree.split(" - ");
- this.addOb.factory = trees[0];
- this.addOb.laboratory = trees[1];
- this.addOb.sampleType = trees[2];
- this.addOb.sample = trees[3];
- },
- getNodeParent(val) {
- if (val.parent != null) {
- if (val.data.children === null) {
- this.selectTree += " - " + val.label + " - " + "null";
- } else {
- this.selectTree += " - " + val.label;
- }
- this.getNodeParent(val.parent);
+ } else {
+ this.standardId = 0;
+ this.syncSortable();
}
},
remove(node, data) {
@@ -595,23 +515,20 @@
type: "error",
})
.then(() => {
- // this.treeLoad = true
- this.selectTree = "";
- this.getNodeParent(node);
- this.selectTree = this.selectTree.replace(" - ", "");
- let data = this.selectTree.split(" - ");
- let data2 = "";
- for (let index = data.length - 1; index >= 0; index--) {
- data2 += " - " + data[index];
- }
- this.selectTree = data2.replace(" - ", "");
- delStandardTree({ tree: this.selectTree }).then((res) => {
+ const tree = buildSelectTree(node, "null");
+ delStandardTree({ tree }).then((res) => {
this.$message.success("宸插垹闄�");
- let arr = this.selectTree.split(" - ");
- this.deleteStandard(this.list, arr[arr.length - 1]);
+ const labels = getAncestorLabels(node);
+ this.deleteStandard(this.list, labels[labels.length - 1]);
this.selectTree = "";
+ this.selected = { label: "", tree: "", isLeaf: false };
this.standardList = [];
this.productList = [];
+ this.standardId = 0;
+ this.isShowCopy = false;
+ this.productKeyword = "";
+ this.total = 0;
+ this.syncSortable();
});
})
.catch((e) => { });
@@ -651,6 +568,7 @@
this.treeLoad = true;
selectStandardTreeList().then((res) => {
this.list = res.data;
+ this.expandedKeys = [];
this.list.forEach((a) => {
this.expandedKeys.push(a.label);
});
@@ -693,31 +611,23 @@
this.standardEnum = data;
});
},
- // 鎻愪氦鍒嗙被娣诲姞
+ // 鎻愪氦鍒嗙被娣诲姞锛氬湪閫変腑鑺傜偣涓嬫柊澧炲瓙绾э紝鏈�変腑鍒欐柊澧炴牴绾�
addStandardTree() {
- if (this.addOb.sampleType == null || this.addOb.sampleType == "") {
- this.$message.error("瀵硅薄涓嶅瓨鍦�");
- return;
- }
- if (this.addOb.model == null || this.addOb.model == "") {
- this.$message.error("璇峰~鍐欏瀷鍙�");
+ const name = (this.addOb.name || "").trim();
+ if (!name) {
+ this.$message.error("璇峰~鍐欏悕绉�");
return;
}
this.addLoad = true;
- addStandardTree(this.addOb)
+ addStandardTree({
+ parentTree: this.selected.tree || "",
+ name,
+ })
.then((res) => {
this.$message.success("娣诲姞鎴愬姛");
this.addDia = false;
- this.list
- .find((a) => a.label == this.addOb.factory)
- .children.find((a) => a.label == this.addOb.laboratory)
- .children.find((a) => a.label == this.addOb.sampleType)
- .children.find((a) => a.label == this.addOb.sample)
- .children.push({
- code: "[5]",
- label: this.addOb.model,
- value: this.addOb.model,
- });
+ this.addOb.name = "";
+ this.selectStandardTreeList();
this.addLoad = false;
})
.catch((e) => {
@@ -725,24 +635,24 @@
this.addLoad = false;
});
},
- // 淇敼鍨嬪彿
+ // 淇敼鑺傜偣鍚嶅瓧
updateStandardTree() {
- if (this.addOb.sampleType == null || this.addOb.sampleType == "") {
- this.$message.error("瀵硅薄涓嶅瓨鍦�");
+ const name = (this.addOb.name || "").trim();
+ if (!name) {
+ this.$message.error("璇峰~鍐欏悕绉�");
return;
}
- if (this.addOb.model == null || this.addOb.model == "") {
- this.$message.error("璇峰~鍐欏瀷鍙�");
- return;
- }
- this.addOb.oldModel = this.oldModel;
this.updateLoad = true;
- updateStandardTree(this.addOb)
+ updateStandardTree({
+ parentTree: dropLastLabel(this.editTree),
+ oldLabel: this.oldLabel,
+ name,
+ })
.then((res) => {
- this.$message.success("娣诲姞鎴愬姛");
- this.$tab.refreshPage();
- // this.selectStandardTreeList();
+ this.$message.success("淇敼鎴愬姛");
this.updateDia = false;
+ this.addOb.name = "";
+ this.selectStandardTreeList();
this.updateLoad = false;
})
.catch((e) => {
@@ -756,12 +666,14 @@
tree: this.selectTree,
}).then((res) => {
this.tableLoad = false;
- this.standardList = res.data.standardMethodList;
- if (this.standardList && this.standardList.length > 0) {
+ const data = res.data || {};
+ this.standardList = data.standardMethodList || [];
+ if (this.standardList.length > 0) {
this.$refs.standard.setCurrentRow(this.standardList[0]);
this.rowClick(this.standardList[0]);
} else {
this.productList = [];
+ this.syncSortable();
}
});
},
@@ -853,6 +765,22 @@
this.rowClick(this.standardList[index]);
}
},
+ // 妫�楠岄」鎼滅储锛氳蛋鍚庣杩囨护锛堝尮閰嶆楠岄」 + 妫�楠岄」瀛愰」锛�
+ searchProduct() {
+ if (!this.selected.isLeaf || !this.standardId) return;
+ this.rowClick({ id: this.standardId });
+ },
+ // 鍙湁閫変腑鐨勬槸鏍囧噯(鍙跺瓙)銆佹湭鍦ㄦ悳绱㈣繃婊ょ姸鎬併�佷笖鍒楄〃闈炵┖鏃讹紝鎵嶅厑璁告嫋鎷芥帓搴�
+ syncSortable() {
+ if (this.sortTable) {
+ this.sortTable.destroy();
+ this.sortTable = null;
+ }
+ if (!this.selected.isLeaf || this.productKeyword || this.productList.length === 0) return;
+ this.$nextTick(() => {
+ this.rowDrop(this.standardId);
+ });
+ },
rowClick(row, column, event) {
this.currentPage = 1;
this.tableLoad2 = true;
@@ -861,40 +789,18 @@
id: row.id,
tree: this.selectTree,
page: this.currentPage,
+ keyword: this.productKeyword,
}).then((res) => {
- this.productList = res.data.productList;
- this.total = res.data.total;
+ const data = res.data || {};
+ this.productList = data.productList || [];
+ this.total = data.total || 0;
setTimeout(() => {
this.productList.forEach((a) => {
if (a.state == 1) this.toggleSelection(a);
});
}, 300);
this.tableLoad2 = false;
- const tree = this.selectTree.split(" - ");
- // 閫夋嫨鏈�鍚庝竴灞傛爲鎵嶅彲浠ユ嫋鎷芥帓搴�
- if (tree.length === 4) {
- const name = tree[3] + "[4]";
- this.hasChildWithId(this.list, name);
- if (
- this.isHaveChildren.children &&
- this.isHaveChildren.children.length > 0
- ) {
- if (this.sortTable) {
- this.sortTable.destroy();
- this.sortTable = null;
- }
- return;
- }
- } else if (tree.length < 4) {
- if (this.sortTable) {
- this.sortTable.destroy();
- this.sortTable = null;
- }
- return;
- }
- this.$nextTick(() => {
- this.rowDrop(row.id);
- });
+ this.syncSortable();
});
},
toggleSelection(row) {
@@ -916,28 +822,6 @@
}).then((res) => {
this.$message.success('宸蹭繚瀛�')
});
- },
- filterHandler(value) {
- for (let column in value) {
- if (value[column].length === 0) {
- if (column === "inspectionItem") {
- this.inspectionItem = null;
- } else if (column === "inspectionItemSubclass") {
- this.inspectionItemSubclass = null;
- } else if (column === "sonLaboratory") {
- this.sonLaboratory = null;
- }
- } else {
- if (column === "inspectionItem") {
- this.inspectionItem = value[column][0];
- } else if (column === "inspectionItemSubclass") {
- this.inspectionItemSubclass = value[column][0];
- } else if (column === "sonLaboratory") {
- this.sonLaboratory = value[column][0];
- }
- }
- this.getList();
- }
},
handleAll(e) {
if (e.length > 0) {
@@ -1049,48 +933,21 @@
this.sectionRow.conductorType = JSON.stringify(conductorTypeList);
}
this.sectionLoad = true;
- if (this.moreSelects.length === 0) {
- updateSection({
- str: JSON.stringify({
- id: this.sectionRow.id,
- section: this.sectionRow.section,
- ask: this.sectionRow.ask,
- tell: this.sectionRow.tell,
- // price: this.sectionRow.price,
- // manHour: this.sectionRow.manHour,
- cores: this.sectionRow.cores,
- conductorMaterial: this.sectionRow.conductorMaterial,
- conductorType: this.sectionRow.conductorType,
- }),
- }).then((res) => {
- this.sectionLoad = false;
- this.$message.success("宸蹭繚瀛�");
- this.sectionUpDia = false;
- });
- } else {
- upStandardProducts({
- ids: JSON.stringify(this.moreSelects.map((a) => a.id)),
- standardProductList: {
- section: this.sectionRow.section,
- ask: this.sectionRow.ask,
- tell: this.sectionRow.tell,
- // price: this.sectionRow.price,
- // manHour: this.sectionRow.manHour,
- cores: this.sectionRow.cores,
- conductorMaterial: this.sectionRow.conductorMaterial,
- conductorType: this.sectionRow.conductorType,
- },
- }).then((res) => {
- this.sectionLoad = false;
- this.$message.success("宸蹭繚瀛�");
- this.sectionUpDia = false;
- this.currentPage0 = 1;
- this.getList();
- this.rowClick({
- id: this.standardId,
- });
- });
- }
+ updateSection({
+ str: JSON.stringify({
+ id: this.sectionRow.id,
+ section: this.sectionRow.section,
+ ask: this.sectionRow.ask,
+ tell: this.sectionRow.tell,
+ cores: this.sectionRow.cores,
+ conductorMaterial: this.sectionRow.conductorMaterial,
+ conductorType: this.sectionRow.conductorType,
+ }),
+ }).then((res) => {
+ this.sectionLoad = false;
+ this.$message.success("宸蹭繚瀛�");
+ this.sectionUpDia = false;
+ });
},
bindSupplierDensitySecond(row) {
this.bindSupplierDensity(row);
@@ -1143,81 +1000,6 @@
this.methodList = data;
});
},
- handleSelectAll0(rows) {
- if (rows.length) {
- rows.forEach((a) => {
- if (!this.moreSelects.find((b) => a.id === b.id)) {
- this.moreSelects.push(a);
- }
- });
- } else {
- this.productList0.forEach((a) => {
- this.moreSelects = this.moreSelects.filter((b) => b.id != a.id);
- });
- }
- },
- handleSelectionChange0(val, row) {
- if (this.moreSelects.find((a) => a.id === row.id)) {
- this.moreSelects = this.moreSelects.filter((a) => a.id != row.id);
- } else {
- this.moreSelects.push(row);
- }
- },
- getList() {
- this.productTableLoading0 = true;
- this.getItemEnum();
- selectStandardProductByMethodId({
- id: this.standardId,
- tree: this.selectTree,
- page: this.currentPage0,
- laboratory: this.sonLaboratory,
- items: this.inspectionItemSubclass,
- item: this.inspectionItem,
- }).then((res) => {
- this.productList0 = res.data.records;
- this.total0 = res.data.total;
- this.productTableLoading0 = false;
- this.page = res.data.pages;
- this.$nextTick(() => {
- this.productList0.forEach((a, i) => {
- if (this.moreSelects.find((b) => a.id == b.id)) {
- this.$refs.productTable0.toggleRowSelection(
- this.productList0[i],
- true
- );
- }
- });
- });
- });
- },
- handleCurrentChange0(e) {
- this.currentPage0 = e;
- this.getList();
- },
- getItemEnum() {
- selectStandardProductEnumByMethodId({
- id: this.standardId,
- tree: this.selectTree,
- item: this.inspectionItem,
- }).then((res) => {
- this.filters0 = [];
- this.filters1 = [];
- res.data.item.forEach((a) => {
- this.filters0.push({
- text: a.inspectionItem,
- value: a.inspectionItem,
- });
- });
- res.data.items.forEach((a) => {
- if (a != null) {
- this.filters1.push({
- text: a.inspectionItemSubclass,
- value: a.inspectionItemSubclass,
- });
- }
- });
- });
- },
},
};
</script>
@@ -1229,6 +1011,9 @@
.options_button {
margin-top: 3px;
+ margin-right: 120px;
+ display: flex;
+ align-items: center;
}
}
--
Gitblit v1.9.3