完成 谐波监测 稳态统计报表 联调 全局对话框添加可移动属性

This commit is contained in:
GGJ
2024-04-01 11:16:28 +08:00
parent fd71466b22
commit fe60893e89
58 changed files with 984 additions and 1209 deletions

View File

@@ -1,5 +1,5 @@
<template>
<el-dialog v-model="dialogVisible" title="模板绑定" width="500px" :before-close="handleClose">
<el-dialog draggable v-model="dialogVisible" title="模板绑定" width="500px" :before-close="handleClose">
<el-tree
default-expand-all
show-checkbox
@@ -82,9 +82,8 @@ const gettreeData = (mdata, ids) => {
})
}
// 绑定
const bind=()=>{
updateBindTemplate().then(res=>{
const bind = () => {
updateBindTemplate().then(res => {
// ElMessage.success('绑定成功')
})
}

View File

@@ -1,5 +1,5 @@
<template>
<el-dialog :title="title" v-model="formVisible" width="30%" :before-close="closeDialog">
<el-dialog draggable :title="title" v-model="formVisible" width="30%" :before-close="closeDialog">
<el-form :model="formdata" label-width="100px" :rules="rules" ref="ruleForm">
<el-form-item label="模板名称:" prop="name">
<el-input placeholder="模板名称" v-model="formdata.name" style="width: 100%"></el-input>

View File

@@ -12,7 +12,7 @@
<!-- 查看 -->
<look ref="lookRef" v-if="!lookShow" @shutDown="shutDown" />
<!-- 绑定 -->
<department ref="departmentRef" />
<department ref="departmentRef" />
</div>
</template>
<script setup lang="ts">
@@ -27,7 +27,7 @@ import luckysheet from './luckysheet.vue'
import look from './look.vue'
import department from './department.vue'
defineOptions({
name: 'estimate/photovoltaic'
name: 'Distributedphotovoltaic/templateConfiguration'
})
const luckysheetRef = ref()
const lookRef = ref()