From c9abcf9064dfdd9bdb8107085abcffb0703cfad8 Mon Sep 17 00:00:00 2001
From: hdy <1105738590@qq.com>
Date: 星期三, 20 十一月 2024 15:26:15 +0800
Subject: [PATCH] opcUA表单创建

---
 billion-main/src/main/java/com/billion/main/sc/controller/ScOpcConfController.java    |  104 +++++++
 billion-ui/src/views/main/sc/opcConf/index.vue                                        |  279 +++++++++++++++++++
 billion-main/src/main/resources/mapper/sc/ScOpcConfMapper.xml                         |   96 ++++++
 billion-main/src/main/java/com/billion/main/sc/service/IScOpcConfService.java         |   63 ++++
 billion-main/src/main/java/com/billion/main/sc/service/impl/ScOpcConfServiceImpl.java |   98 +++++++
 billion-ui/src/api/main/sc/opcConf.js                                                 |   44 +++
 billion-main/src/main/java/com/billion/main/sc/domain/ScOpcConf.java                  |   45 +++
 billion-main/src/main/java/com/billion/main/sc/mapper/ScOpcConfMapper.java            |   63 ++++
 8 files changed, 792 insertions(+), 0 deletions(-)

diff --git a/billion-main/src/main/java/com/billion/main/sc/controller/ScOpcConfController.java b/billion-main/src/main/java/com/billion/main/sc/controller/ScOpcConfController.java
new file mode 100644
index 0000000..a7cc6f1
--- /dev/null
+++ b/billion-main/src/main/java/com/billion/main/sc/controller/ScOpcConfController.java
@@ -0,0 +1,104 @@
+package com.billion.main.sc.controller;
+
+import java.util.List;
+import javax.servlet.http.HttpServletResponse;
+import org.springframework.security.access.prepost.PreAuthorize;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.PutMapping;
+import org.springframework.web.bind.annotation.DeleteMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+import com.billion.common.annotation.Log;
+import com.billion.common.core.controller.BaseController;
+import com.billion.common.core.domain.AjaxResult;
+import com.billion.common.enums.BusinessType;
+import com.billion.main.sc.domain.ScOpcConf;
+import com.billion.main.sc.service.IScOpcConfService;
+import com.billion.common.utils.poi.ExcelUtil;
+import com.billion.common.core.page.TableDataInfo;
+
+/**
+ * OPC浜や簰閰嶇疆Controller
+ * 
+ * @author HDY
+ * @date 2024-11-20
+ */
+@RestController
+@RequestMapping("/sc/opcConf")
+public class ScOpcConfController extends BaseController
+{
+    @Autowired
+    private IScOpcConfService scOpcConfService;
+
+    /**
+     * 鏌ヨOPC浜や簰閰嶇疆鍒楄〃
+     */
+    @PreAuthorize("@ss.hasPermi('sc:opcConf:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(ScOpcConf scOpcConf)
+    {
+        startPage();
+        List<ScOpcConf> list = scOpcConfService.selectScOpcConfList(scOpcConf);
+        return getDataTable(list);
+    }
+
+    /**
+     * 瀵煎嚭OPC浜や簰閰嶇疆鍒楄〃
+     */
+    @PreAuthorize("@ss.hasPermi('sc:opcConf:export')")
+    @Log(title = "OPC浜や簰閰嶇疆", businessType = BusinessType.EXPORT)
+    @PostMapping("/export")
+    public void export(HttpServletResponse response, ScOpcConf scOpcConf)
+    {
+        List<ScOpcConf> list = scOpcConfService.selectScOpcConfList(scOpcConf);
+        ExcelUtil<ScOpcConf> util = new ExcelUtil<ScOpcConf>(ScOpcConf.class);
+        util.exportExcel(response, list, "OPC浜や簰閰嶇疆鏁版嵁");
+    }
+
+    /**
+     * 鑾峰彇OPC浜や簰閰嶇疆璇︾粏淇℃伅
+     */
+    @PreAuthorize("@ss.hasPermi('sc:opcConf:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return success(scOpcConfService.selectScOpcConfById(id));
+    }
+
+    /**
+     * 鏂板OPC浜や簰閰嶇疆
+     */
+    @PreAuthorize("@ss.hasPermi('sc:opcConf:add')")
+    @Log(title = "OPC浜や簰閰嶇疆", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody ScOpcConf scOpcConf)
+    {
+        return toAjax(scOpcConfService.insertScOpcConf(scOpcConf));
+    }
+
+    /**
+     * 淇敼OPC浜や簰閰嶇疆
+     */
+    @PreAuthorize("@ss.hasPermi('sc:opcConf:edit')")
+    @Log(title = "OPC浜や簰閰嶇疆", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody ScOpcConf scOpcConf)
+    {
+        return toAjax(scOpcConfService.updateScOpcConf(scOpcConf));
+    }
+
+    /**
+     * 鍒犻櫎OPC浜や簰閰嶇疆
+     */
+    @PreAuthorize("@ss.hasPermi('sc:opcConf:remove')")
+    @Log(title = "OPC浜や簰閰嶇疆", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(scOpcConfService.deleteScOpcConfByIds(ids));
+    }
+}
diff --git a/billion-main/src/main/java/com/billion/main/sc/domain/ScOpcConf.java b/billion-main/src/main/java/com/billion/main/sc/domain/ScOpcConf.java
new file mode 100644
index 0000000..4425c6e
--- /dev/null
+++ b/billion-main/src/main/java/com/billion/main/sc/domain/ScOpcConf.java
@@ -0,0 +1,45 @@
+package com.billion.main.sc.domain;
+
+import com.billion.common.annotation.Excel;
+import com.billion.main.common.BaseEntity;
+import lombok.Data;
+
+/**
+ * OPC浜や簰閰嶇疆瀵硅薄 sc_opc_conf
+ * 
+ * @author HDY
+ * @date 2024-11-20
+ */
+@Data
+public class ScOpcConf extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 涓婚敭id */
+    private Long id;
+
+    /** 宸ヤ綅缂栫爜 */
+    @Excel(name = "宸ヤ綅缂栫爜")
+    private String locationCode;
+
+    /** 宸ヤ綅鍚嶇О */
+    @Excel(name = "宸ヤ綅鍚嶇О")
+    private String locationName;
+
+    /** 鍦板潃 */
+    @Excel(name = "鍦板潃")
+    private String node;
+
+    /** 閲囬泦绫诲瀷 */
+    @Excel(name = "閲囬泦绫诲瀷")
+    private String type;
+
+    /** 鏄惁璁㈤槄 */
+    @Excel(name = "鏄惁璁㈤槄")
+    private String subscribe;
+
+    /** 鍒犻櫎鏍囧織锛�0浠h〃瀛樺湪 1浠h〃鍒犻櫎锛� */
+    private String delFlag;
+
+
+}
diff --git a/billion-main/src/main/java/com/billion/main/sc/mapper/ScOpcConfMapper.java b/billion-main/src/main/java/com/billion/main/sc/mapper/ScOpcConfMapper.java
new file mode 100644
index 0000000..41bf9c7
--- /dev/null
+++ b/billion-main/src/main/java/com/billion/main/sc/mapper/ScOpcConfMapper.java
@@ -0,0 +1,63 @@
+package com.billion.main.sc.mapper;
+
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.billion.main.sc.domain.ScOpcConf;
+
+import java.util.List;
+
+/**
+ * OPC浜や簰閰嶇疆Mapper鎺ュ彛
+ * 
+ * @author HDY
+ * @date 2024-11-20
+ */
+public interface ScOpcConfMapper extends BaseMapper<ScOpcConf>
+{
+    /**
+     * 鏌ヨOPC浜や簰閰嶇疆
+     * 
+     * @param id OPC浜や簰閰嶇疆涓婚敭
+     * @return OPC浜や簰閰嶇疆
+     */
+    public ScOpcConf selectScOpcConfById(Long id);
+
+    /**
+     * 鏌ヨOPC浜や簰閰嶇疆鍒楄〃
+     * 
+     * @param scOpcConf OPC浜や簰閰嶇疆
+     * @return OPC浜や簰閰嶇疆闆嗗悎
+     */
+    public List<ScOpcConf> selectScOpcConfList(ScOpcConf scOpcConf);
+
+    /**
+     * 鏂板OPC浜や簰閰嶇疆
+     * 
+     * @param scOpcConf OPC浜や簰閰嶇疆
+     * @return 缁撴灉
+     */
+    public int insertScOpcConf(ScOpcConf scOpcConf);
+
+    /**
+     * 淇敼OPC浜や簰閰嶇疆
+     * 
+     * @param scOpcConf OPC浜や簰閰嶇疆
+     * @return 缁撴灉
+     */
+    public int updateScOpcConf(ScOpcConf scOpcConf);
+
+    /**
+     * 鍒犻櫎OPC浜や簰閰嶇疆
+     * 
+     * @param id OPC浜や簰閰嶇疆涓婚敭
+     * @return 缁撴灉
+     */
+    public int deleteScOpcConfById(Long id);
+
+    /**
+     * 鎵归噺鍒犻櫎OPC浜や簰閰嶇疆
+     * 
+     * @param ids 闇�瑕佸垹闄ょ殑鏁版嵁涓婚敭闆嗗悎
+     * @return 缁撴灉
+     */
+    public int deleteScOpcConfByIds(Long[] ids);
+}
diff --git a/billion-main/src/main/java/com/billion/main/sc/service/IScOpcConfService.java b/billion-main/src/main/java/com/billion/main/sc/service/IScOpcConfService.java
new file mode 100644
index 0000000..175bf4b
--- /dev/null
+++ b/billion-main/src/main/java/com/billion/main/sc/service/IScOpcConfService.java
@@ -0,0 +1,63 @@
+package com.billion.main.sc.service;
+
+import com.baomidou.mybatisplus.extension.service.IService;
+import com.billion.main.sc.domain.ScOpcConf;
+
+import java.util.List;
+
+/**
+ * OPC浜や簰閰嶇疆Service鎺ュ彛
+ * 
+ * @author HDY
+ * @date 2024-11-20
+ */
+public interface IScOpcConfService extends IService<ScOpcConf>
+{
+    /**
+     * 鏌ヨOPC浜や簰閰嶇疆
+     * 
+     * @param id OPC浜や簰閰嶇疆涓婚敭
+     * @return OPC浜や簰閰嶇疆
+     */
+    public ScOpcConf selectScOpcConfById(Long id);
+
+    /**
+     * 鏌ヨOPC浜や簰閰嶇疆鍒楄〃
+     * 
+     * @param scOpcConf OPC浜や簰閰嶇疆
+     * @return OPC浜や簰閰嶇疆闆嗗悎
+     */
+    public List<ScOpcConf> selectScOpcConfList(ScOpcConf scOpcConf);
+
+    /**
+     * 鏂板OPC浜や簰閰嶇疆
+     * 
+     * @param scOpcConf OPC浜や簰閰嶇疆
+     * @return 缁撴灉
+     */
+    public int insertScOpcConf(ScOpcConf scOpcConf);
+
+    /**
+     * 淇敼OPC浜や簰閰嶇疆
+     * 
+     * @param scOpcConf OPC浜や簰閰嶇疆
+     * @return 缁撴灉
+     */
+    public int updateScOpcConf(ScOpcConf scOpcConf);
+
+    /**
+     * 鎵归噺鍒犻櫎OPC浜や簰閰嶇疆
+     * 
+     * @param ids 闇�瑕佸垹闄ょ殑OPC浜や簰閰嶇疆涓婚敭闆嗗悎
+     * @return 缁撴灉
+     */
+    public int deleteScOpcConfByIds(Long[] ids);
+
+    /**
+     * 鍒犻櫎OPC浜や簰閰嶇疆淇℃伅
+     * 
+     * @param id OPC浜や簰閰嶇疆涓婚敭
+     * @return 缁撴灉
+     */
+    public int deleteScOpcConfById(Long id);
+}
diff --git a/billion-main/src/main/java/com/billion/main/sc/service/impl/ScOpcConfServiceImpl.java b/billion-main/src/main/java/com/billion/main/sc/service/impl/ScOpcConfServiceImpl.java
new file mode 100644
index 0000000..3b7ea90
--- /dev/null
+++ b/billion-main/src/main/java/com/billion/main/sc/service/impl/ScOpcConfServiceImpl.java
@@ -0,0 +1,98 @@
+package com.billion.main.sc.service.impl;
+
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.billion.common.utils.DateUtils;
+import com.billion.main.sc.domain.ScOpcConf;
+import com.billion.main.sc.mapper.ScOpcConfMapper;
+import com.billion.main.sc.service.IScOpcConfService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import java.util.List;
+
+/**
+ * OPC浜や簰閰嶇疆Service涓氬姟灞傚鐞�
+ * 
+ * @author HDY
+ * @date 2024-11-20
+ */
+@Service
+public class ScOpcConfServiceImpl extends ServiceImpl<ScOpcConfMapper, ScOpcConf> implements IScOpcConfService
+{
+    @Autowired
+    private ScOpcConfMapper scOpcConfMapper;
+
+    /**
+     * 鏌ヨOPC浜や簰閰嶇疆
+     * 
+     * @param id OPC浜や簰閰嶇疆涓婚敭
+     * @return OPC浜や簰閰嶇疆
+     */
+    @Override
+    public ScOpcConf selectScOpcConfById(Long id)
+    {
+        return scOpcConfMapper.selectScOpcConfById(id);
+    }
+
+    /**
+     * 鏌ヨOPC浜や簰閰嶇疆鍒楄〃
+     * 
+     * @param scOpcConf OPC浜や簰閰嶇疆
+     * @return OPC浜や簰閰嶇疆
+     */
+    @Override
+    public List<ScOpcConf> selectScOpcConfList(ScOpcConf scOpcConf)
+    {
+        return scOpcConfMapper.selectScOpcConfList(scOpcConf);
+    }
+
+    /**
+     * 鏂板OPC浜や簰閰嶇疆
+     * 
+     * @param scOpcConf OPC浜や簰閰嶇疆
+     * @return 缁撴灉
+     */
+    @Override
+    public int insertScOpcConf(ScOpcConf scOpcConf)
+    {
+        scOpcConf.setCreateTime(DateUtils.getNowDate());
+        return scOpcConfMapper.insertScOpcConf(scOpcConf);
+    }
+
+    /**
+     * 淇敼OPC浜や簰閰嶇疆
+     * 
+     * @param scOpcConf OPC浜や簰閰嶇疆
+     * @return 缁撴灉
+     */
+    @Override
+    public int updateScOpcConf(ScOpcConf scOpcConf)
+    {
+        scOpcConf.setUpdateTime(DateUtils.getNowDate());
+        return scOpcConfMapper.updateScOpcConf(scOpcConf);
+    }
+
+    /**
+     * 鎵归噺鍒犻櫎OPC浜や簰閰嶇疆
+     * 
+     * @param ids 闇�瑕佸垹闄ょ殑OPC浜や簰閰嶇疆涓婚敭
+     * @return 缁撴灉
+     */
+    @Override
+    public int deleteScOpcConfByIds(Long[] ids)
+    {
+        return scOpcConfMapper.deleteScOpcConfByIds(ids);
+    }
+
+    /**
+     * 鍒犻櫎OPC浜や簰閰嶇疆淇℃伅
+     * 
+     * @param id OPC浜や簰閰嶇疆涓婚敭
+     * @return 缁撴灉
+     */
+    @Override
+    public int deleteScOpcConfById(Long id)
+    {
+        return scOpcConfMapper.deleteScOpcConfById(id);
+    }
+}
diff --git a/billion-main/src/main/resources/mapper/sc/ScOpcConfMapper.xml b/billion-main/src/main/resources/mapper/sc/ScOpcConfMapper.xml
new file mode 100644
index 0000000..6f0b7a1
--- /dev/null
+++ b/billion-main/src/main/resources/mapper/sc/ScOpcConfMapper.xml
@@ -0,0 +1,96 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.billion.main.sc.mapper.ScOpcConfMapper">
+    
+    <resultMap type="ScOpcConf" id="ScOpcConfResult">
+        <result property="id"    column="id"    />
+        <result property="locationCode"    column="location_code"    />
+        <result property="locationName"    column="location_name"    />
+        <result property="node"    column="node"    />
+        <result property="type"    column="type"    />
+        <result property="subscribe"    column="subscribe"    />
+        <result property="delFlag"    column="del_flag"    />
+        <result property="createBy"    column="create_by"    />
+        <result property="createTime"    column="create_time"    />
+        <result property="updateBy"    column="update_by"    />
+        <result property="updateTime"    column="update_time"    />
+    </resultMap>
+
+    <sql id="selectScOpcConfVo">
+        select id, location_code, location_name, node, type, subscribe, del_flag, create_by, create_time, update_by, update_time from sc_opc_conf
+    </sql>
+
+    <select id="selectScOpcConfList" parameterType="ScOpcConf" resultMap="ScOpcConfResult">
+        <include refid="selectScOpcConfVo"/>
+        <where>  
+            <if test="locationCode != null  and locationCode != ''"> and location_code like concat('%', #{locationCode}, '%')</if>
+            <if test="locationName != null  and locationName != ''"> and location_name like concat('%', #{locationName}, '%')</if>
+            <if test="node != null  and node != ''"> and node like concat('%', #{node}, '%')</if>
+            <if test="type != null  and type != ''"> and type = #{type}</if>
+            <if test="subscribe != null  and subscribe != ''"> and subscribe = #{subscribe}</if>
+        </where>
+    </select>
+    
+    <select id="selectScOpcConfById" parameterType="Long" resultMap="ScOpcConfResult">
+        <include refid="selectScOpcConfVo"/>
+        where id = #{id}
+    </select>
+
+    <insert id="insertScOpcConf" parameterType="ScOpcConf" useGeneratedKeys="true" keyProperty="id">
+        insert into sc_opc_conf
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="locationCode != null">location_code,</if>
+            <if test="locationName != null">location_name,</if>
+            <if test="node != null">node,</if>
+            <if test="type != null">type,</if>
+            <if test="subscribe != null">subscribe,</if>
+            <if test="delFlag != null">del_flag,</if>
+            <if test="createBy != null">create_by,</if>
+            <if test="createTime != null">create_time,</if>
+            <if test="updateBy != null">update_by,</if>
+            <if test="updateTime != null">update_time,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="locationCode != null">#{locationCode},</if>
+            <if test="locationName != null">#{locationName},</if>
+            <if test="node != null">#{node},</if>
+            <if test="type != null">#{type},</if>
+            <if test="subscribe != null">#{subscribe},</if>
+            <if test="delFlag != null">#{delFlag},</if>
+            <if test="createBy != null">#{createBy},</if>
+            <if test="createTime != null">#{createTime},</if>
+            <if test="updateBy != null">#{updateBy},</if>
+            <if test="updateTime != null">#{updateTime},</if>
+         </trim>
+    </insert>
+
+    <update id="updateScOpcConf" parameterType="ScOpcConf">
+        update sc_opc_conf
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="locationCode != null">location_code = #{locationCode},</if>
+            <if test="locationName != null">location_name = #{locationName},</if>
+            <if test="node != null">node = #{node},</if>
+            <if test="type != null">type = #{type},</if>
+            <if test="subscribe != null">subscribe = #{subscribe},</if>
+            <if test="delFlag != null">del_flag = #{delFlag},</if>
+            <if test="createBy != null">create_by = #{createBy},</if>
+            <if test="createTime != null">create_time = #{createTime},</if>
+            <if test="updateBy != null">update_by = #{updateBy},</if>
+            <if test="updateTime != null">update_time = #{updateTime},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteScOpcConfById" parameterType="Long">
+        delete from sc_opc_conf where id = #{id}
+    </delete>
+
+    <delete id="deleteScOpcConfByIds" parameterType="String">
+        delete from sc_opc_conf where id in 
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+</mapper>
\ No newline at end of file
diff --git a/billion-ui/src/api/main/sc/opcConf.js b/billion-ui/src/api/main/sc/opcConf.js
new file mode 100644
index 0000000..02724f2
--- /dev/null
+++ b/billion-ui/src/api/main/sc/opcConf.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 鏌ヨOPC浜や簰閰嶇疆鍒楄〃
+export function listOpcConf(query) {
+  return request({
+    url: '/sc/opcConf/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 鏌ヨOPC浜や簰閰嶇疆璇︾粏
+export function getOpcConf(id) {
+  return request({
+    url: '/sc/opcConf/' + id,
+    method: 'get'
+  })
+}
+
+// 鏂板OPC浜や簰閰嶇疆
+export function addOpcConf(data) {
+  return request({
+    url: '/sc/opcConf',
+    method: 'post',
+    data: data
+  })
+}
+
+// 淇敼OPC浜や簰閰嶇疆
+export function updateOpcConf(data) {
+  return request({
+    url: '/sc/opcConf',
+    method: 'put',
+    data: data
+  })
+}
+
+// 鍒犻櫎OPC浜や簰閰嶇疆
+export function delOpcConf(id) {
+  return request({
+    url: '/sc/opcConf/' + id,
+    method: 'delete'
+  })
+}
diff --git a/billion-ui/src/views/main/sc/opcConf/index.vue b/billion-ui/src/views/main/sc/opcConf/index.vue
new file mode 100644
index 0000000..9589179
--- /dev/null
+++ b/billion-ui/src/views/main/sc/opcConf/index.vue
@@ -0,0 +1,279 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="宸ヤ綅鍚嶇О" prop="locationName">
+        <el-input
+          v-model="queryParams.locationName"
+          placeholder="璇疯緭鍏ュ伐浣嶅悕绉�"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="鍦板潃" prop="node">
+        <el-input
+          v-model="queryParams.node"
+          placeholder="璇疯緭鍏ュ湴鍧�"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item>
+        <el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">鎼滅储</el-button>
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">閲嶇疆</el-button>
+      </el-form-item>
+    </el-form>
+
+    <el-row :gutter="10" class="mb8">
+      <el-col :span="1.5">
+        <el-button
+          type="primary"
+          plain
+          icon="el-icon-plus"
+          size="mini"
+          @click="handleAdd"
+          v-hasPermi="['sc:opcConf:add']"
+        >鏂板</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          plain
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['sc:opcConf:edit']"
+        >淇敼</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          plain
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['sc:opcConf:remove']"
+        >鍒犻櫎</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['sc:opcConf:export']"
+        >瀵煎嚭</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="opcConfList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="涓婚敭id" align="center" prop="id" />
+      <el-table-column label="宸ヤ綅缂栫爜" align="center" prop="locationCode" />
+      <el-table-column label="宸ヤ綅鍚嶇О" align="center" prop="locationName" />
+      <el-table-column label="鍦板潃" align="center" prop="node" />
+      <el-table-column label="閲囬泦绫诲瀷" align="center" prop="type" />
+      <el-table-column label="鏄惁璁㈤槄" align="center" prop="subscribe" />
+      <el-table-column label="鎿嶄綔" align="center" class-name="small-padding fixed-width">
+        <template slot-scope="scope">
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-edit"
+            @click="handleUpdate(scope.row)"
+            v-hasPermi="['sc:opcConf:edit']"
+          >淇敼</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['sc:opcConf:remove']"
+          >鍒犻櫎</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+
+    <pagination
+      v-show="total>0"
+      :total="total"
+      :page.sync="queryParams.pageNum"
+      :limit.sync="queryParams.pageSize"
+      @pagination="getList"
+    />
+
+    <!-- 娣诲姞鎴栦慨鏀筄PC浜や簰閰嶇疆瀵硅瘽妗� -->
+    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="宸ヤ綅缂栫爜" prop="locationCode">
+          <el-input v-model="form.locationCode" type="textarea" placeholder="璇疯緭鍏ュ唴瀹�" />
+        </el-form-item>
+        <el-form-item label="宸ヤ綅鍚嶇О" prop="locationName">
+          <el-input v-model="form.locationName" placeholder="璇疯緭鍏ュ伐浣嶅悕绉�" />
+        </el-form-item>
+        <el-form-item label="鍦板潃" prop="node">
+          <el-input v-model="form.node" placeholder="璇疯緭鍏ュ湴鍧�" />
+        </el-form-item>
+<!--        <el-form-item label="鍒犻櫎鏍囧織" prop="delFlag">-->
+<!--          <el-input v-model="form.delFlag" placeholder="璇疯緭鍏ュ垹闄ゆ爣蹇�" />-->
+<!--        </el-form-item>-->
+      </el-form>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="submitForm">纭� 瀹�</el-button>
+        <el-button @click="cancel">鍙� 娑�</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listOpcConf, getOpcConf, delOpcConf, addOpcConf, updateOpcConf } from "@/api/main/sc/opcConf";
+
+export default {
+  name: "OpcConf",
+  data() {
+    return {
+      // 閬僵灞�
+      loading: true,
+      // 閫変腑鏁扮粍
+      ids: [],
+      // 闈炲崟涓鐢�
+      single: true,
+      // 闈炲涓鐢�
+      multiple: true,
+      // 鏄剧ず鎼滅储鏉′欢
+      showSearch: true,
+      // 鎬绘潯鏁�
+      total: 0,
+      // OPC浜や簰閰嶇疆琛ㄦ牸鏁版嵁
+      opcConfList: [],
+      // 寮瑰嚭灞傛爣棰�
+      title: "",
+      // 鏄惁鏄剧ず寮瑰嚭灞�
+      open: false,
+      // 鏌ヨ鍙傛暟
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        locationCode: null,
+        locationName: null,
+        node: null,
+        type: null,
+        subscribe: null,
+      },
+      // 琛ㄥ崟鍙傛暟
+      form: {},
+      // 琛ㄥ崟鏍¢獙
+      rules: {
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 鏌ヨOPC浜や簰閰嶇疆鍒楄〃 */
+    getList() {
+      this.loading = true;
+      listOpcConf(this.queryParams).then(response => {
+        this.opcConfList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 鍙栨秷鎸夐挳
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 琛ㄥ崟閲嶇疆
+    reset() {
+      this.form = {
+        id: null,
+        locationCode: null,
+        locationName: null,
+        node: null,
+        type: null,
+        subscribe: null,
+        delFlag: null,
+        createBy: null,
+        createTime: null,
+        updateBy: null,
+        updateTime: null
+      };
+      this.resetForm("form");
+    },
+    /** 鎼滅储鎸夐挳鎿嶄綔 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 閲嶇疆鎸夐挳鎿嶄綔 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.handleQuery();
+    },
+    // 澶氶�夋閫変腑鏁版嵁
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.id)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 鏂板鎸夐挳鎿嶄綔 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "娣诲姞OPC浜や簰閰嶇疆";
+    },
+    /** 淇敼鎸夐挳鎿嶄綔 */
+    handleUpdate(row) {
+      this.reset();
+      const id = row.id || this.ids
+      getOpcConf(id).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "淇敼OPC浜や簰閰嶇疆";
+      });
+    },
+    /** 鎻愪氦鎸夐挳 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updateOpcConf(this.form).then(response => {
+              this.$modal.msgSuccess("淇敼鎴愬姛");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addOpcConf(this.form).then(response => {
+              this.$modal.msgSuccess("鏂板鎴愬姛");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 鍒犻櫎鎸夐挳鎿嶄綔 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('鏄惁纭鍒犻櫎OPC浜や簰閰嶇疆缂栧彿涓�"' + ids + '"鐨勬暟鎹」锛�').then(function() {
+        return delOpcConf(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("鍒犻櫎鎴愬姛");
+      }).catch(() => {});
+    },
+    /** 瀵煎嚭鎸夐挳鎿嶄綔 */
+    handleExport() {
+      this.download('sc/opcConf/export', {
+        ...this.queryParams
+      }, `opcConf_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

--
Gitblit v1.9.3