-
- 发起布控
- 导出
- 批量删除
-
+
+
+
{{ it.ryXm }} 、
暂无
@@ -46,9 +47,9 @@
- 编辑
+ 详情
续控
- 删除
+ 删除
+
@@ -127,7 +128,7 @@ const pageData = reactive({
tableColumn: [
{ label: "布控级别", prop: "bkDj", showSolt: true },
{ label: "布控标题", prop: "bkBt" },
- { label: "布控对象", prop: "bkDx" },
+ { label: "布控对象", prop: "bkDx",showSolt: true },
{ label: "布控对象信息", prop: "bkDxxx",showSolt: true },
{ label: "布控范围", prop: "qyList", showSolt: true },
{ label: "涉及人数", prop: "sjrs",showSolt: true },
@@ -182,17 +183,27 @@ const openWarning = (val) =>{
warningkdxForm.value.init(val)
}
-const sendControl = () => {
- addBkdxForm.value.init();
+const sendControl = (type,row) => {
+ addBkdxForm.value.init(type,row);
};
+
+// 删除
+const handleRow = (id) => {
+ proxy.$confirm("确定要删除", "警告", { type: "warning" }).then(() => {
+ qcckDelete({}, "/mosty-gsxt/tbGsxtBk/"+id).then(() => {
+ proxy.$message({ type: "success", message: "删除成功" });
+ getList();
+ });
+ })
+};
+
// 表格高度计算
const tabHeightFn = () => {
- pageData.tableHeight = window.innerHeight - searchBox.value.offsetHeight - 292;
+ pageData.tableHeight = window.innerHeight - searchBox.value.offsetHeight - 270;
window.onresize = function () {
tabHeightFn();
};
-};
-
+};