diff --git a/src/api/business/TableDataManage/TableDataProductsInvolves/tabledataproductsinvolve.js b/src/api/business/TableDataManage/TableDataProductsInvolves/tabledataproductsinvolve.js
new file mode 100644
index 0000000..ab3a799
--- /dev/null
+++ b/src/api/business/TableDataManage/TableDataProductsInvolves/tabledataproductsinvolve.js
@@ -0,0 +1,38 @@
+import request from '@/utils/request'
+
+/**
+ * @Descripttion: 表格数据所属涉及产品Api接口
+ * @version: (1.0)
+ * @Author: (lwh)
+ * @Date: (2023-11-22)
+ * @LastEditors: (lwh)
+ * @LastEditTime: (2023-11-22)
+*/
+
+// 表格数据所属涉及产品分页查询列表
+export function tableDataProductsInvolveList(query) {
+ return request({
+ url: '/business/TableDataProductsInvolve/getTableDataProductsInvolveList',
+ method: 'get',
+ params: query
+ })
+}
+
+// 表格数据所属涉及产品新增或修改
+export function addOrUpdateTableDataProductsInvolve(data) {
+ return request({
+ url: '/business/TableDataProductsInvolve/addOrUpdateTableDataProductsInvolve',
+ method: 'post',
+ data: data,
+ })
+}
+
+// 表格数据所属涉及产品删除
+export function delTableDataProductsInvolve(ids) {
+ return request({
+ url: '/business/TableDataProductsInvolve/'+ ids,
+ method: 'delete'
+ })
+}
+
+
diff --git a/src/views/business/TableDataManage/TableDatas/components/AddDialog.vue b/src/views/business/TableDataManage/TableDatas/components/AddDialog.vue
index bb20716..faf65e6 100644
--- a/src/views/business/TableDataManage/TableDatas/components/AddDialog.vue
+++ b/src/views/business/TableDataManage/TableDatas/components/AddDialog.vue
@@ -17,7 +17,7 @@
+ :value="item.productsInvolvedId">
@@ -65,13 +65,13 @@
-
-
@@ -130,7 +130,8 @@
-
+
@@ -252,8 +253,6 @@ const rules = reactive({
// 提交
const handleAddClick = async (formEl) => {
- formData.productsInvolvedGuid = formData.productsInvolvedGuid.join(',')
- console.log(formData, 'aaaaaaaaaaa');
if (!formEl) return;
formEl.validate(async (valid) => {
if (!valid) {
@@ -261,6 +260,7 @@ const handleAddClick = async (formEl) => {
}
loadingStatus.value = true
+ formData.productsInvolvedGuid = formData.productsInvolvedGuid.join(',')
const { code } = await addOrUpdateTableData(formData);
if (code == 200) {
diff --git a/src/views/business/TableDataManage/TableDatas/components/DetailDialog.vue b/src/views/business/TableDataManage/TableDatas/components/DetailDialog.vue
index a56fb9d..eabbf87 100644
--- a/src/views/business/TableDataManage/TableDatas/components/DetailDialog.vue
+++ b/src/views/business/TableDataManage/TableDatas/components/DetailDialog.vue
@@ -6,136 +6,134 @@
* @LastEditors: (lwh)
* @LastEditTime: (2023-11-22)
-->
-
+
-
+
+ 基本信息
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 中标信息
+
+
+
+
+
+
+
+
+
+
+
@@ -145,14 +143,16 @@