瀏覽代碼

设备数据

wyh 2 年之前
父節點
當前提交
35ba7d47ec

+ 46 - 0
itdmWeb/src/views/module-iTDM/itdmDevicedata/itdmDevicedataList.vue

@@ -0,0 +1,46 @@
+<template>
+        <a-tabs default-active-key="1" @change="callback" class="card-container">
+            <a-tab-pane key="1" tab="温箱试验数据">
+                <itdm-wenxiang-list @ok="submitCallback" :key="timer1"></itdm-wenxiang-list>
+            </a-tab-pane>
+            <a-tab-pane key="2" tab="通用电压数据" force-render>
+                <itdm-wenxiang-voltage-list :key="timer2"></itdm-wenxiang-voltage-list>
+            </a-tab-pane>
+        </a-tabs>
+</template>
+
+<script>
+import ItdmWenxiangList from '../itdmWenxiang/ItdmWenxiangList.vue'
+import ItdmWenxiangVoltageList from '../itdmWenxiangVoltage/ItdmWenxiangVoltageList.vue';
+  export default {
+    name: 'itdmDeviceDataList',
+    components: {
+        ItdmWenxiangList,
+        ItdmWenxiangVoltageList
+    },
+    data () {
+      return {
+        timer1: '',
+        timer2: '',
+      }
+    },
+    methods: {
+      submitCallback(){
+        this.$emit('ok');
+      },
+      callback(key) {
+        if (key == 1) {
+          this.timer1 = new Date().getTime()
+        } else if (key == 2) {
+          this.timer2 = new Date().getTime()
+        }
+      },
+    }
+  }
+</script>
+
+<style scoped>
+.ant-card-body{
+    padding-top: 10px !important;
+}
+</style>

+ 355 - 0
itdmWeb/src/views/module-iTDM/itdmWenxiang/ItdmWenxiangList.vue

@@ -0,0 +1,355 @@
+<template>
+  <a-card :bordered="false">
+    <!-- 查询区域 -->
+    <div class="table-page-search-wrapper">
+      <a-form layout="inline" @keyup.enter.native="searchQuery">
+        <a-row :gutter="24">
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <a-form-item label="设备">
+              <j-dict-select-tag placeholder="请选择设备" v-model="queryParam.deviceId" dictCode="itdm_device,device_name,id"/>
+            </a-form-item>
+          </a-col>
+          <a-col :xl="10" :lg="11" :md="12" :sm="24">
+            <a-form-item label="选择时间">
+              <j-date :show-time="true" date-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择开始时间" class="query-group-cust" v-model="queryParam.createTime_begin"></j-date>
+              <span class="query-group-split-cust"></span>
+              <j-date :show-time="true" date-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择结束时间" class="query-group-cust" v-model="queryParam.createTime_end"></j-date>
+            </a-form-item>
+          </a-col>
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
+              <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
+              <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
+              <!-- <a @click="handleToggleSearch" style="margin-left: 8px">
+                {{ toggleSearchStatus ? '收起' : '展开' }}
+                <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
+              </a> -->
+            </span>
+          </a-col>
+        </a-row>
+      </a-form>
+    </div>
+    <!-- 查询区域-END -->
+
+    <!-- 操作按钮区域 -->
+    <!-- <div class="table-operator">
+      <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
+      <a-button type="primary" icon="download" @click="handleExportXls('温箱历史数据')">导出</a-button>
+      <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
+        <a-button type="primary" icon="import">导入</a-button>
+      </a-upload> -->
+      <!-- 高级查询区域 -->
+      <!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>
+      <a-dropdown v-if="selectedRowKeys.length > 0">
+        <a-menu slot="overlay">
+          <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
+        </a-menu>
+        <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
+      </a-dropdown>
+    </div> -->
+
+    <!-- table区域-begin -->
+    <div>
+      <div class="ant-alert" style="margin-bottom: 9px;">
+        <!-- <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
+        <a style="margin-left: 24px" @click="onClearSelected">清空</a> -->
+      </div>
+
+      <a-table
+        ref="table"
+        size="middle"
+        :scroll="{x:true}"
+        bordered
+        rowKey="id"
+        :columns="columns"
+        :dataSource="dataSource"
+        :pagination="ipagination"
+        :loading="loading"
+        class="j-table-force-nowrap"
+        @change="handleTableChange">
+
+        <!-- <template #headerCell="{ column }">
+          <template v-if="column.key === 'name'">
+            <span>
+              <smile-outlined />
+              Name
+            </span>
+          </template>
+        </template> -->
+
+        <!-- <template #bodyCell="{ column, record }">
+          <template v-if="column.key === 'temperature'">
+            <a>
+              {{ record.temperature }}
+            </a>
+          </template>
+        </template> -->
+
+        <template slot="htmlSlot" slot-scope="text">
+          <div v-html="text"></div>
+        </template>
+        <template slot="imgSlot" slot-scope="text,record">
+          <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
+          <img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
+        </template>
+        <template slot="fileSlot" slot-scope="text">
+          <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
+          <a-button
+            v-else
+            :ghost="true"
+            type="primary"
+            icon="download"
+            size="small"
+            @click="downloadFile(text)">
+            下载
+          </a-button>
+        </template>
+
+        <span slot="action" slot-scope="text, record">
+          <a @click="handleEdit(record)">编辑</a>
+
+          <a-divider type="vertical" />
+          <a-dropdown>
+            <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
+            <a-menu slot="overlay">
+              <a-menu-item>
+                <a @click="handleDetail(record)">详情</a>
+              </a-menu-item>
+              <a-menu-item>
+                <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
+                  <a>删除</a>
+                </a-popconfirm>
+              </a-menu-item>
+            </a-menu>
+          </a-dropdown>
+        </span>
+
+      </a-table>
+    </div>
+
+    <itdm-wenxiang-modal ref="modalForm" @ok="modalFormOk"></itdm-wenxiang-modal>
+  </a-card>
+</template>
+
+<script>
+
+  import '@/assets/less/TableExpand.less'
+  import { mixinDevice } from '@/utils/mixin'
+  import { JeecgListMixin } from '@/mixins/JeecgListMixin'
+  import ItdmWenxiangModal from './modules/ItdmWenxiangModal'
+  import {filterMultiDictText} from '@/components/dict/JDictSelectUtil'
+
+  export default {
+    name: 'ItdmWenxiangList',
+    mixins:[JeecgListMixin, mixinDevice],
+    components: {
+      ItdmWenxiangModal
+    },
+    data () {
+      return {
+        description: '温箱历史数据管理页面',
+        // 表头
+        columns: [
+          // {
+          //   title: '#',
+          //   dataIndex: '',
+          //   key:'rowIndex',
+          //   width:60,
+          //   align:"center",
+          //   customRender:function (t,r,index) {
+          //     return parseInt(index)+1;
+          //   }
+          // },
+          // {
+          //   title:'设备id',
+          //   align:"center",
+          //   dataIndex: 'deviceId_dictText'
+          // },
+          {
+            title:'设备名称',
+            align:"center",
+            dataIndex: 'deviceName'
+          },
+          {
+            title:'设备编号',
+            align:"center",
+            dataIndex: 'deviceNo'
+          },
+          {
+            title:'温度',
+            align:"center",
+            dataIndex: 'temperature'
+          },
+          {
+            title:'温度Max',
+            align:"center",
+            dataIndex: 'temperatureMax'
+          },
+          {
+            title:'温度Min',
+            align:"center",
+            dataIndex: 'temperatureMin'
+          },
+          // {
+          //   title:'温度报警(0正常1报警)',
+          //   align:"center",
+          //   dataIndex: 'temperatureAlarm_dictText'
+          // },
+          {
+            title:'湿度',
+            align:"center",
+            dataIndex: 'humidity'
+          },
+          {
+            title:'湿度Max',
+            align:"center",
+            dataIndex: 'humidityMax'
+          },
+          {
+            title:'湿度Min',
+            align:"center",
+            dataIndex: 'humidityMin'
+          },
+          // {
+          //   title:'湿度报警(0正常1报警)',
+          //   align:"center",
+          //   dataIndex: 'humidityAlarm_dictText'
+          // },
+          {
+            title:'A相电流',
+            align:"center",
+            dataIndex: 'currentA'
+          },
+          {
+            title:'A相电流Max',
+            align:"center",
+            dataIndex: 'currentAMax'
+          },
+          {
+            title:'A相电流Min',
+            align:"center",
+            dataIndex: 'currentAMin'
+          },
+          // {
+          //   title:'A相电流报警(0正常1报警)',
+          //   align:"center",
+          //   dataIndex: 'currentAAlarm_dictText'
+          // },
+          {
+            title:'B相电流',
+            align:"center",
+            dataIndex: 'currentB'
+          },
+          {
+            title:'B相电流Max',
+            align:"center",
+            dataIndex: 'currentBMax'
+          },
+          {
+            title:'B相电流Min',
+            align:"center",
+            dataIndex: 'currentBMin'
+          },
+          // {
+          //   title:'B相电流报警(0正常1报警)',
+          //   align:"center",
+          //   dataIndex: 'currentBAlarm_dictText'
+          // },
+          {
+            title:'C相电流',
+            align:"center",
+            dataIndex: 'currentC'
+          },
+          {
+            title:'C相电流Max',
+            align:"center",
+            dataIndex: 'currentCMax'
+          },
+          {
+            title:'C相电流Min',
+            align:"center",
+            dataIndex: 'currentCMin'
+          },
+          // {
+          //   title:'C相电流报警(0正常1报警)',
+          //   align:"center",
+          //   dataIndex: 'currentCAlarm_dictText'
+          // },
+          {
+            title:'创建时间',
+            align:"center",
+            dataIndex: 'createTime'
+          },
+          // {
+          //   title: '操作',
+          //   dataIndex: 'action',
+          //   align:"center",
+          //   fixed:"right",
+          //   width:147,
+          //   scopedSlots: { customRender: 'action' }
+          // }
+        ],
+        url: {
+          list: "/itdmDataHistory/itdmWenxiang/list",
+          delete: "/itdmDataHistory/itdmWenxiang/delete",
+          deleteBatch: "/itdmDataHistory/itdmWenxiang/deleteBatch",
+          exportXlsUrl: "/itdmDataHistory/itdmWenxiang/exportXls",
+          importExcelUrl: "itdmDataHistory/itdmWenxiang/importExcel",
+        },
+        dictOptions:{},
+        superFieldList:[],
+      }
+    },
+    created() {
+    this.getSuperFieldList();
+    },
+    computed: {
+      importExcelUrl: function(){
+        return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
+      },
+    },
+    methods: {
+      initDictConfig(){
+      },
+      getSuperFieldList(){
+        let fieldList=[];
+        fieldList.push({type:'string',value:'deviceId',text:'设备id',dictCode:"itdm_device,device_name,id"})
+        fieldList.push({type:'string',value:'deviceName',text:'设备名称',dictCode:''})
+        fieldList.push({type:'string',value:'deviceNo',text:'设备编号',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'temperature',text:'温度',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'temperatureMax',text:'温度上限',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'temperatureMin',text:'温度下限',dictCode:''})
+        fieldList.push({type:'int',value:'temperatureAlarm',text:'温度报警(0正常1报警)',dictCode:'data_status'})
+        fieldList.push({type:'BigDecimal',value:'humidity',text:'湿度',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'humidityMax',text:'湿度上限',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'humidityMin',text:'湿度下限',dictCode:''})
+        fieldList.push({type:'int',value:'humidityAlarm',text:'湿度报警(0正常1报警)',dictCode:'data_status'})
+        fieldList.push({type:'BigDecimal',value:'currentA',text:'A相电流',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'currentAMax',text:'A相电流上限',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'currentAMin',text:'A相电流下限',dictCode:''})
+        fieldList.push({type:'int',value:'currentAAlarm',text:'A相电流报警(0正常1报警)',dictCode:'data_status'})
+        fieldList.push({type:'BigDecimal',value:'currentB',text:'B相电流',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'currentBMax',text:'B相电流上限',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'currentBMin',text:'B相电流下限',dictCode:''})
+        fieldList.push({type:'int',value:'currentBAlarm',text:'B相电流报警(0正常1报警)',dictCode:'data_status'})
+        fieldList.push({type:'BigDecimal',value:'currentC',text:'C相电流',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'currentCMax',text:'C相电流上限',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'currentCMin',text:'C相电流下限',dictCode:''})
+        fieldList.push({type:'int',value:'currentCAlarm',text:'C相电流报警(0正常1报警)',dictCode:'data_status'})
+        fieldList.push({type:'datetime',value:'createTime',text:'创建时间'})
+        this.superFieldList = fieldList
+      }
+    }
+  }
+</script>
+<style scoped>
+  @import '~@assets/less/common.less';
+  ::v-deep .ant-card-body{
+    padding-top: 0px !important;
+    padding-left: 10px !important;
+    padding-right: 10px !important;
+  }
+  .y {
+    color: red;
+  }
+</style>

+ 219 - 0
itdmWeb/src/views/module-iTDM/itdmWenxiang/modules/ItdmWenxiangForm.vue

@@ -0,0 +1,219 @@
+<template>
+  <a-spin :spinning="confirmLoading">
+    <j-form-container :disabled="formDisabled">
+      <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
+        <a-row>
+          <a-col :span="24">
+            <a-form-model-item label="设备id" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="deviceId">
+              <j-dict-select-tag type="list" v-model="model.deviceId" dictCode="itdm_device,device_name,id" placeholder="请选择设备id" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="设备名称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="deviceName">
+              <a-input v-model="model.deviceName" placeholder="请输入设备名称"  ></a-input>
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="设备编号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="deviceNo">
+              <a-input v-model="model.deviceNo" placeholder="请输入设备编号"  ></a-input>
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="温度" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="temperature">
+              <a-input-number v-model="model.temperature" placeholder="请输入温度" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="温度上限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="temperatureMax">
+              <a-input-number v-model="model.temperatureMax" placeholder="请输入温度上限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="温度下限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="temperatureMin">
+              <a-input-number v-model="model.temperatureMin" placeholder="请输入温度下限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="温度报警(0正常1报警)" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="temperatureAlarm">
+              <j-dict-select-tag type="list" v-model="model.temperatureAlarm" dictCode="data_status" placeholder="请选择温度报警(0正常1报警)" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="湿度" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="humidity">
+              <a-input-number v-model="model.humidity" placeholder="请输入湿度" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="湿度上限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="humidityMax">
+              <a-input-number v-model="model.humidityMax" placeholder="请输入湿度上限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="湿度下限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="humidityMin">
+              <a-input-number v-model="model.humidityMin" placeholder="请输入湿度下限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="湿度报警(0正常1报警)" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="humidityAlarm">
+              <j-dict-select-tag type="list" v-model="model.humidityAlarm" dictCode="data_status" placeholder="请选择湿度报警(0正常1报警)" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="A相电流" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="currentA">
+              <a-input-number v-model="model.currentA" placeholder="请输入A相电流" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="A相电流上限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="currentAMax">
+              <a-input-number v-model="model.currentAMax" placeholder="请输入A相电流上限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="A相电流下限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="currentAMin">
+              <a-input-number v-model="model.currentAMin" placeholder="请输入A相电流下限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="A相电流报警(0正常1报警)" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="currentAAlarm">
+              <j-dict-select-tag type="list" v-model="model.currentAAlarm" dictCode="data_status" placeholder="请选择A相电流报警(0正常1报警)" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="B相电流" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="currentB">
+              <a-input-number v-model="model.currentB" placeholder="请输入B相电流" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="B相电流上限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="currentBMax">
+              <a-input-number v-model="model.currentBMax" placeholder="请输入B相电流上限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="B相电流下限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="currentBMin">
+              <a-input-number v-model="model.currentBMin" placeholder="请输入B相电流下限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="B相电流报警(0正常1报警)" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="currentBAlarm">
+              <j-dict-select-tag type="list" v-model="model.currentBAlarm" dictCode="data_status" placeholder="请选择B相电流报警(0正常1报警)" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="C相电流" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="currentC">
+              <a-input-number v-model="model.currentC" placeholder="请输入C相电流" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="C相电流上限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="currentCMax">
+              <a-input-number v-model="model.currentCMax" placeholder="请输入C相电流上限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="C相电流下限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="currentCMin">
+              <a-input-number v-model="model.currentCMin" placeholder="请输入C相电流下限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="C相电流报警(0正常1报警)" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="currentCAlarm">
+              <j-dict-select-tag type="list" v-model="model.currentCAlarm" dictCode="data_status" placeholder="请选择C相电流报警(0正常1报警)" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="创建时间" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="createTime">
+              <j-date placeholder="请选择创建时间"  v-model="model.createTime" :show-time="true" date-format="YYYY-MM-DD HH:mm:ss" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+        </a-row>
+      </a-form-model>
+    </j-form-container>
+  </a-spin>
+</template>
+
+<script>
+
+  import { httpAction, getAction } from '@/api/manage'
+  import { validateDuplicateValue } from '@/utils/util'
+
+  export default {
+    name: 'ItdmWenxiangForm',
+    components: {
+    },
+    props: {
+      //表单禁用
+      disabled: {
+        type: Boolean,
+        default: false,
+        required: false
+      }
+    },
+    data () {
+      return {
+        model:{
+         },
+        labelCol: {
+          xs: { span: 24 },
+          sm: { span: 5 },
+        },
+        wrapperCol: {
+          xs: { span: 24 },
+          sm: { span: 16 },
+        },
+        confirmLoading: false,
+        validatorRules: {
+        },
+        url: {
+          add: "/itdmDataHistory/itdmWenxiang/add",
+          edit: "/itdmDataHistory/itdmWenxiang/edit",
+          queryById: "/itdmDataHistory/itdmWenxiang/queryById"
+        }
+      }
+    },
+    computed: {
+      formDisabled(){
+        return this.disabled
+      },
+    },
+    created () {
+       //备份model原始值
+      this.modelDefault = JSON.parse(JSON.stringify(this.model));
+    },
+    methods: {
+      add () {
+        this.edit(this.modelDefault);
+      },
+      edit (record) {
+        this.model = Object.assign({}, record);
+        this.visible = true;
+      },
+      submitForm () {
+        const that = this;
+        // 触发表单验证
+        this.$refs.form.validate(valid => {
+          if (valid) {
+            that.confirmLoading = true;
+            let httpurl = '';
+            let method = '';
+            if(!this.model.id){
+              httpurl+=this.url.add;
+              method = 'post';
+            }else{
+              httpurl+=this.url.edit;
+               method = 'put';
+            }
+            httpAction(httpurl,this.model,method).then((res)=>{
+              if(res.success){
+                that.$message.success(res.message);
+                that.$emit('ok');
+              }else{
+                that.$message.warning(res.message);
+              }
+            }).finally(() => {
+              that.confirmLoading = false;
+            })
+          }
+         
+        })
+      },
+    }
+  }
+</script>

+ 84 - 0
itdmWeb/src/views/module-iTDM/itdmWenxiang/modules/ItdmWenxiangModal.Style#Drawer.vue

@@ -0,0 +1,84 @@
+<template>
+  <a-drawer
+    :title="title"
+    :width="width"
+    placement="right"
+    :closable="false"
+    @close="close"
+    destroyOnClose
+    :visible="visible">
+    <itdm-wenxiang-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></itdm-wenxiang-form>
+    <div class="drawer-footer">
+      <a-button @click="handleCancel" style="margin-bottom: 0;">关闭</a-button>
+      <a-button v-if="!disableSubmit"  @click="handleOk" type="primary" style="margin-bottom: 0;">提交</a-button>
+    </div>
+  </a-drawer>
+</template>
+
+<script>
+
+  import ItdmWenxiangForm from './ItdmWenxiangForm'
+
+  export default {
+    name: 'ItdmWenxiangModal',
+    components: {
+      ItdmWenxiangForm
+    },
+    data () {
+      return {
+        title:"操作",
+        width:800,
+        visible: false,
+        disableSubmit: false
+      }
+    },
+    methods: {
+      add () {
+        this.visible=true
+        this.$nextTick(()=>{
+          this.$refs.realForm.add();
+        })
+      },
+      edit (record) {
+        this.visible=true
+        this.$nextTick(()=>{
+          this.$refs.realForm.edit(record);
+        });
+      },
+      close () {
+        this.$emit('close');
+        this.visible = false;
+      },
+      submitCallback(){
+        this.$emit('ok');
+        this.visible = false;
+      },
+      handleOk () {
+        this.$refs.realForm.submitForm();
+      },
+      handleCancel () {
+        this.close()
+      }
+    }
+  }
+</script>
+
+<style lang="less" scoped>
+/** Button按钮间距 */
+  .ant-btn {
+    margin-left: 30px;
+    margin-bottom: 30px;
+    float: right;
+  }
+  .drawer-footer{
+    position: absolute;
+    bottom: -8px;
+    width: 100%;
+    border-top: 1px solid #e8e8e8;
+    padding: 10px 16px;
+    text-align: right;
+    left: 0;
+    background: #fff;
+    border-radius: 0 0 2px 2px;
+  }
+</style>

+ 60 - 0
itdmWeb/src/views/module-iTDM/itdmWenxiang/modules/ItdmWenxiangModal.vue

@@ -0,0 +1,60 @@
+<template>
+  <j-modal
+    :title="title"
+    :width="width"
+    :visible="visible"
+    switchFullscreen
+    @ok="handleOk"
+    :okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
+    @cancel="handleCancel"
+    cancelText="关闭">
+    <itdm-wenxiang-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></itdm-wenxiang-form>
+  </j-modal>
+</template>
+
+<script>
+
+  import ItdmWenxiangForm from './ItdmWenxiangForm'
+  export default {
+    name: 'ItdmWenxiangModal',
+    components: {
+      ItdmWenxiangForm
+    },
+    data () {
+      return {
+        title:'',
+        width:800,
+        visible: false,
+        disableSubmit: false
+      }
+    },
+    methods: {
+      add () {
+        this.visible=true
+        this.$nextTick(()=>{
+          this.$refs.realForm.add();
+        })
+      },
+      edit (record) {
+        this.visible=true
+        this.$nextTick(()=>{
+          this.$refs.realForm.edit(record);
+        })
+      },
+      close () {
+        this.$emit('close');
+        this.visible = false;
+      },
+      handleOk () {
+        this.$refs.realForm.submitForm();
+      },
+      submitCallback(){
+        this.$emit('ok');
+        this.visible = false;
+      },
+      handleCancel () {
+        this.close()
+      }
+    }
+  }
+</script>

+ 267 - 0
itdmWeb/src/views/module-iTDM/itdmWenxiangVoltage/ItdmWenxiangVoltageList.vue

@@ -0,0 +1,267 @@
+<template>
+  <a-card :bordered="false">
+    <!-- 查询区域 -->
+    <div class="table-page-search-wrapper">
+      <a-form layout="inline" @keyup.enter.native="searchQuery">
+        <a-row :gutter="24">
+          <a-col :xl="10" :lg="11" :md="12" :sm="24">
+            <a-form-item label="选择时间">
+              <j-date :show-time="true" date-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择开始时间" class="query-group-cust" v-model="queryParam.createTime_begin"></j-date>
+              <span class="query-group-split-cust"></span>
+              <j-date :show-time="true" date-format="YYYY-MM-DD HH:mm:ss" placeholder="请选择结束时间" class="query-group-cust" v-model="queryParam.createTime_end"></j-date>
+            </a-form-item>
+          </a-col>
+          <a-col :xl="6" :lg="7" :md="8" :sm="24">
+            <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
+              <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
+              <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
+              <!-- <a @click="handleToggleSearch" style="margin-left: 8px">
+                {{ toggleSearchStatus ? '收起' : '展开' }}
+                <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
+              </a> -->
+            </span>
+          </a-col>
+        </a-row>
+      </a-form>
+    </div>
+    <!-- 查询区域-END -->
+
+    <!-- 操作按钮区域 -->
+    <!-- <div class="table-operator">
+      <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>
+      <a-button type="primary" icon="download" @click="handleExportXls('温箱集体电压历史数据')">导出</a-button>
+      <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">
+        <a-button type="primary" icon="import">导入</a-button>
+      </a-upload> -->
+      <!-- 高级查询区域 -->
+      <!-- <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>
+      <a-dropdown v-if="selectedRowKeys.length > 0">
+        <a-menu slot="overlay">
+          <a-menu-item key="1" @click="batchDel"><a-icon type="delete"/>删除</a-menu-item>
+        </a-menu>
+        <a-button style="margin-left: 8px"> 批量操作 <a-icon type="down" /></a-button>
+      </a-dropdown>
+    </div> -->
+
+    <!-- table区域-begin -->
+    <div>
+      <div class="ant-alert" style="margin-bottom: 19px;">
+        <!-- <i class="anticon anticon-info-circle ant-alert-icon"></i> 已选择 <a style="font-weight: 600">{{ selectedRowKeys.length }}</a>项
+        <a style="margin-left: 24px" @click="onClearSelected">清空</a> -->
+      </div>
+
+      <a-table
+        ref="table"
+        size="middle"
+        :scroll="{x:true}"
+        bordered
+        rowKey="id"
+        :columns="columns"
+        :dataSource="dataSource"
+        :pagination="ipagination"
+        :loading="loading"
+        class="j-table-force-nowrap"
+        @change="handleTableChange">
+
+        <template slot="htmlSlot" slot-scope="text">
+          <div v-html="text"></div>
+        </template>
+        <template slot="imgSlot" slot-scope="text,record">
+          <span v-if="!text" style="font-size: 12px;font-style: italic;">无图片</span>
+          <img v-else :src="getImgView(text)" :preview="record.id" height="25px" alt="" style="max-width:80px;font-size: 12px;font-style: italic;"/>
+        </template>
+        <template slot="fileSlot" slot-scope="text">
+          <span v-if="!text" style="font-size: 12px;font-style: italic;">无文件</span>
+          <a-button
+            v-else
+            :ghost="true"
+            type="primary"
+            icon="download"
+            size="small"
+            @click="downloadFile(text)">
+            下载
+          </a-button>
+        </template>
+
+        <span slot="action" slot-scope="text, record">
+          <a @click="handleEdit(record)">编辑</a>
+
+          <a-divider type="vertical" />
+          <a-dropdown>
+            <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
+            <a-menu slot="overlay">
+              <a-menu-item>
+                <a @click="handleDetail(record)">详情</a>
+              </a-menu-item>
+              <a-menu-item>
+                <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
+                  <a>删除</a>
+                </a-popconfirm>
+              </a-menu-item>
+            </a-menu>
+          </a-dropdown>
+        </span>
+
+      </a-table>
+    </div>
+
+    <itdm-wenxiang-voltage-modal ref="modalForm" @ok="modalFormOk"></itdm-wenxiang-voltage-modal>
+  </a-card>
+</template>
+
+<script>
+
+  import '@/assets/less/TableExpand.less'
+  import { mixinDevice } from '@/utils/mixin'
+  import { JeecgListMixin } from '@/mixins/JeecgListMixin'
+  import ItdmWenxiangVoltageModal from './modules/ItdmWenxiangVoltageModal'
+
+  export default {
+    name: 'ItdmWenxiangVoltageList',
+    mixins:[JeecgListMixin, mixinDevice],
+    components: {
+      ItdmWenxiangVoltageModal
+    },
+    data () {
+      return {
+        description: '温箱集体电压历史数据管理页面',
+        // 表头
+        columns: [
+          // {
+          //   title: '#',
+          //   dataIndex: '',
+          //   key:'rowIndex',
+          //   width:60,
+          //   align:"center",
+          //   customRender:function (t,r,index) {
+          //     return parseInt(index)+1;
+          //   }
+          // },
+          {
+            title:'A线电压',
+            align:"center",
+            dataIndex: 'voltageA'
+          },
+          {
+            title:'A线电压Max',
+            align:"center",
+            dataIndex: 'voltageAMax'
+          },
+          {
+            title:'A线电压Min',
+            align:"center",
+            dataIndex: 'voltageAMin'
+          },
+          // {
+          //   title:'A线电压报警(0正常1报警)',
+          //   align:"center",
+          //   dataIndex: 'voltageAAlarm'
+          // },
+          {
+            title:'B线电压',
+            align:"center",
+            dataIndex: 'voltageB'
+          },
+          {
+            title:'B线电压Max',
+            align:"center",
+            dataIndex: 'voltageBMax'
+          },
+          {
+            title:'B线电压Min',
+            align:"center",
+            dataIndex: 'voltageBMin'
+          },
+          // {
+          //   title:'B线电压报警(0正常1报警)',
+          //   align:"center",
+          //   dataIndex: 'voltageBAlarm'
+          // },
+          {
+            title:'C线电压',
+            align:"center",
+            dataIndex: 'voltageC'
+          },
+          {
+            title:'C线电压Max',
+            align:"center",
+            dataIndex: 'voltageCMax'
+          },
+          {
+            title:'C线电压Min',
+            align:"center",
+            dataIndex: 'voltageCMin'
+          },
+          // {
+          //   title:'C线电压报警(0正常1报警)',
+          //   align:"center",
+          //   dataIndex: 'voltageCAlarm'
+          // },
+          {
+            title:'创建时间',
+            align:"center",
+            dataIndex: 'createTime'
+          },
+          // {
+          //   title: '操作',
+          //   dataIndex: 'action',
+          //   align:"center",
+          //   fixed:"right",
+          //   width:147,
+          //   scopedSlots: { customRender: 'action' }
+          // }
+        ],
+        url: {
+          list: "/itdmDataHistory/itdmWenxiangVoltage/list",
+          delete: "/itdmDataHistory/itdmWenxiangVoltage/delete",
+          deleteBatch: "/itdmDataHistory/itdmWenxiangVoltage/deleteBatch",
+          exportXlsUrl: "/itdmDataHistory/itdmWenxiangVoltage/exportXls",
+          importExcelUrl: "itdmDataHistory/itdmWenxiangVoltage/importExcel",
+          
+        },
+        dictOptions:{},
+        superFieldList:[],
+      }
+    },
+    created() {
+    this.getSuperFieldList();
+    },
+    computed: {
+      importExcelUrl: function(){
+        return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`;
+      },
+    },
+    methods: {
+      initDictConfig(){
+      },
+      getSuperFieldList(){
+        let fieldList=[];
+        fieldList.push({type:'BigDecimal',value:'voltageA',text:'A线电压',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'voltageAMax',text:'A线电压上限',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'voltageAMin',text:'A线电压下限',dictCode:''})
+        fieldList.push({type:'int',value:'voltageAAlarm',text:'A线电压报警(0正常1报警)',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'voltageB',text:'B线电压',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'voltageBMax',text:'B线电压上限',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'voltageBMin',text:'B线电压下限',dictCode:''})
+        fieldList.push({type:'int',value:'voltageBAlarm',text:'B线电压报警(0正常1报警)',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'voltageC',text:'C线电压',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'voltageCMax',text:'C线电压上限',dictCode:''})
+        fieldList.push({type:'BigDecimal',value:'voltageCMin',text:'C线电压下限',dictCode:''})
+        fieldList.push({type:'int',value:'voltageCAlarm',text:'C线电压报警(0正常1报警)',dictCode:''})
+        fieldList.push({type:'datetime',value:'createTime',text:'创建时间'})
+        this.superFieldList = fieldList
+      }
+    }
+  }
+</script>
+<style scoped>
+  @import '~@assets/less/common.less';
+  ::v-deep .ant-card-body{
+    padding-top: 0px !important;
+    padding-left: 10px !important;
+    padding-right: 10px !important;
+  }
+  .y {
+    color: red;
+  }
+</style>

+ 164 - 0
itdmWeb/src/views/module-iTDM/itdmWenxiangVoltage/modules/ItdmWenxiangVoltageForm.vue

@@ -0,0 +1,164 @@
+<template>
+  <a-spin :spinning="confirmLoading">
+    <j-form-container :disabled="formDisabled">
+      <a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
+        <a-row>
+          <a-col :span="24">
+            <a-form-model-item label="A线电压" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="voltageA">
+              <a-input-number v-model="model.voltageA" placeholder="请输入A线电压" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="A线电压上限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="voltageAMax">
+              <a-input-number v-model="model.voltageAMax" placeholder="请输入A线电压上限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="A线电压下限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="voltageAMin">
+              <a-input-number v-model="model.voltageAMin" placeholder="请输入A线电压下限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="A线电压报警(0正常1报警)" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="voltageAAlarm">
+              <a-input-number v-model="model.voltageAAlarm" placeholder="请输入A线电压报警(0正常1报警)" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="B线电压" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="voltageB">
+              <a-input-number v-model="model.voltageB" placeholder="请输入B线电压" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="B线电压上限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="voltageBMax">
+              <a-input-number v-model="model.voltageBMax" placeholder="请输入B线电压上限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="B线电压下限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="voltageBMin">
+              <a-input-number v-model="model.voltageBMin" placeholder="请输入B线电压下限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="B线电压报警(0正常1报警)" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="voltageBAlarm">
+              <a-input-number v-model="model.voltageBAlarm" placeholder="请输入B线电压报警(0正常1报警)" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="C线电压" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="voltageC">
+              <a-input-number v-model="model.voltageC" placeholder="请输入C线电压" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="C线电压上限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="voltageCMax">
+              <a-input-number v-model="model.voltageCMax" placeholder="请输入C线电压上限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="C线电压下限" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="voltageCMin">
+              <a-input-number v-model="model.voltageCMin" placeholder="请输入C线电压下限" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="C线电压报警(0正常1报警)" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="voltageCAlarm">
+              <a-input-number v-model="model.voltageCAlarm" placeholder="请输入C线电压报警(0正常1报警)" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-model-item label="创建时间" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="createTime">
+              <j-date placeholder="请选择创建时间"  v-model="model.createTime" :show-time="true" date-format="YYYY-MM-DD HH:mm:ss" style="width: 100%" />
+            </a-form-model-item>
+          </a-col>
+        </a-row>
+      </a-form-model>
+    </j-form-container>
+  </a-spin>
+</template>
+
+<script>
+
+  import { httpAction, getAction } from '@/api/manage'
+  import { validateDuplicateValue } from '@/utils/util'
+
+  export default {
+    name: 'ItdmWenxiangVoltageForm',
+    components: {
+    },
+    props: {
+      //表单禁用
+      disabled: {
+        type: Boolean,
+        default: false,
+        required: false
+      }
+    },
+    data () {
+      return {
+        model:{
+         },
+        labelCol: {
+          xs: { span: 24 },
+          sm: { span: 5 },
+        },
+        wrapperCol: {
+          xs: { span: 24 },
+          sm: { span: 16 },
+        },
+        confirmLoading: false,
+        validatorRules: {
+        },
+        url: {
+          add: "/itdmDataHistory/itdmWenxiangVoltage/add",
+          edit: "/itdmDataHistory/itdmWenxiangVoltage/edit",
+          queryById: "/itdmDataHistory/itdmWenxiangVoltage/queryById"
+        }
+      }
+    },
+    computed: {
+      formDisabled(){
+        return this.disabled
+      },
+    },
+    created () {
+       //备份model原始值
+      this.modelDefault = JSON.parse(JSON.stringify(this.model));
+    },
+    methods: {
+      add () {
+        this.edit(this.modelDefault);
+      },
+      edit (record) {
+        this.model = Object.assign({}, record);
+        this.visible = true;
+      },
+      submitForm () {
+        const that = this;
+        // 触发表单验证
+        this.$refs.form.validate(valid => {
+          if (valid) {
+            that.confirmLoading = true;
+            let httpurl = '';
+            let method = '';
+            if(!this.model.id){
+              httpurl+=this.url.add;
+              method = 'post';
+            }else{
+              httpurl+=this.url.edit;
+               method = 'put';
+            }
+            httpAction(httpurl,this.model,method).then((res)=>{
+              if(res.success){
+                that.$message.success(res.message);
+                that.$emit('ok');
+              }else{
+                that.$message.warning(res.message);
+              }
+            }).finally(() => {
+              that.confirmLoading = false;
+            })
+          }
+         
+        })
+      },
+    }
+  }
+</script>

+ 84 - 0
itdmWeb/src/views/module-iTDM/itdmWenxiangVoltage/modules/ItdmWenxiangVoltageModal.Style#Drawer.vue

@@ -0,0 +1,84 @@
+<template>
+  <a-drawer
+    :title="title"
+    :width="width"
+    placement="right"
+    :closable="false"
+    @close="close"
+    destroyOnClose
+    :visible="visible">
+    <itdm-wenxiang-voltage-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit" normal></itdm-wenxiang-voltage-form>
+    <div class="drawer-footer">
+      <a-button @click="handleCancel" style="margin-bottom: 0;">关闭</a-button>
+      <a-button v-if="!disableSubmit"  @click="handleOk" type="primary" style="margin-bottom: 0;">提交</a-button>
+    </div>
+  </a-drawer>
+</template>
+
+<script>
+
+  import ItdmWenxiangVoltageForm from './ItdmWenxiangVoltageForm'
+
+  export default {
+    name: 'ItdmWenxiangVoltageModal',
+    components: {
+      ItdmWenxiangVoltageForm
+    },
+    data () {
+      return {
+        title:"操作",
+        width:800,
+        visible: false,
+        disableSubmit: false
+      }
+    },
+    methods: {
+      add () {
+        this.visible=true
+        this.$nextTick(()=>{
+          this.$refs.realForm.add();
+        })
+      },
+      edit (record) {
+        this.visible=true
+        this.$nextTick(()=>{
+          this.$refs.realForm.edit(record);
+        });
+      },
+      close () {
+        this.$emit('close');
+        this.visible = false;
+      },
+      submitCallback(){
+        this.$emit('ok');
+        this.visible = false;
+      },
+      handleOk () {
+        this.$refs.realForm.submitForm();
+      },
+      handleCancel () {
+        this.close()
+      }
+    }
+  }
+</script>
+
+<style lang="less" scoped>
+/** Button按钮间距 */
+  .ant-btn {
+    margin-left: 30px;
+    margin-bottom: 30px;
+    float: right;
+  }
+  .drawer-footer{
+    position: absolute;
+    bottom: -8px;
+    width: 100%;
+    border-top: 1px solid #e8e8e8;
+    padding: 10px 16px;
+    text-align: right;
+    left: 0;
+    background: #fff;
+    border-radius: 0 0 2px 2px;
+  }
+</style>

+ 60 - 0
itdmWeb/src/views/module-iTDM/itdmWenxiangVoltage/modules/ItdmWenxiangVoltageModal.vue

@@ -0,0 +1,60 @@
+<template>
+  <j-modal
+    :title="title"
+    :width="width"
+    :visible="visible"
+    switchFullscreen
+    @ok="handleOk"
+    :okButtonProps="{ class:{'jee-hidden': disableSubmit} }"
+    @cancel="handleCancel"
+    cancelText="关闭">
+    <itdm-wenxiang-voltage-form ref="realForm" @ok="submitCallback" :disabled="disableSubmit"></itdm-wenxiang-voltage-form>
+  </j-modal>
+</template>
+
+<script>
+
+  import ItdmWenxiangVoltageForm from './ItdmWenxiangVoltageForm'
+  export default {
+    name: 'ItdmWenxiangVoltageModal',
+    components: {
+      ItdmWenxiangVoltageForm
+    },
+    data () {
+      return {
+        title:'',
+        width:800,
+        visible: false,
+        disableSubmit: false
+      }
+    },
+    methods: {
+      add () {
+        this.visible=true
+        this.$nextTick(()=>{
+          this.$refs.realForm.add();
+        })
+      },
+      edit (record) {
+        this.visible=true
+        this.$nextTick(()=>{
+          this.$refs.realForm.edit(record);
+        })
+      },
+      close () {
+        this.$emit('close');
+        this.visible = false;
+      },
+      handleOk () {
+        this.$refs.realForm.submitForm();
+      },
+      submitCallback(){
+        this.$emit('ok');
+        this.visible = false;
+      },
+      handleCancel () {
+        this.close()
+      }
+    }
+  }
+</script>