|
@@ -1,58 +1,64 @@
|
|
<template>
|
|
<template>
|
|
<div class="table-container">
|
|
<div class="table-container">
|
|
- <!-- <vab-query-form> -->
|
|
|
|
- <!-- <vab-query-form-left-panel> -->
|
|
|
|
- <el-form ref="form" :model="queryForm" :inline="true" @submit.native.prevent>
|
|
|
|
- <el-form-item label="统一编码"><el-input placeholder="请输入" v-model="form.code"></el-input></el-form-item>
|
|
|
|
- <el-form-item label="名称"><el-input placeholder="请输入" v-model="form.name"></el-input></el-form-item>
|
|
|
|
- <el-form-item label="类型">
|
|
|
|
- <el-select v-model="form.type" placeholder="请选择">
|
|
|
|
- <el-option
|
|
|
|
- v-for="item in typeOptions"
|
|
|
|
- :key="item.value"
|
|
|
|
- :label="item.label"
|
|
|
|
- :value="item.value">
|
|
|
|
- </el-option>
|
|
|
|
- </el-select>
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item>
|
|
|
|
- <el-button icon="el-icon-search" type="primary" native-type="submit" @click="fetchData">查询</el-button>
|
|
|
|
- </el-form-item>
|
|
|
|
- <el-form-item style="float: right;">
|
|
|
|
- <el-button icon="el-icon-plus" type="primary" @click="handleAdd">添加</el-button>
|
|
|
|
- <el-button icon="el-icon-delete" type="danger" @click="handleDelete">删除</el-button>
|
|
|
|
- </el-form-item>
|
|
|
|
- </el-form>
|
|
|
|
- <!-- </vab-query-form-left-panel> -->
|
|
|
|
- <!-- <vab-query-form-right-panel> -->
|
|
|
|
- <!-- <UploadExcel style="margin-left: 10px;" @getResult="getMyExcelData"></UploadExcel>
|
|
|
|
- <ExportExcel :exportList="exportExcel" partsName="公司"></ExportExcel> -->
|
|
|
|
- <!-- </vab-query-form-right-panel> -->
|
|
|
|
- <!-- </vab-query-form> -->
|
|
|
|
- <el-table ref="tableSort" v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText"
|
|
|
|
- :height="height" @selection-change="setSelectRows">
|
|
|
|
- <el-table-column show-overflow-tooltip type="selection" width="55"></el-table-column>
|
|
|
|
- <el-table-column show-overflow-tooltip label="id" prop="id" align="center" sortable></el-table-column>
|
|
|
|
- <el-table-column show-overflow-tooltip label="统一编码" prop="code" align="center" sortable></el-table-column>
|
|
|
|
- <el-table-column show-overflow-tooltip label="名称" prop="name" align="center" sortable></el-table-column>
|
|
|
|
- <el-table-column show-overflow-tooltip label="类型" prop="type" align="center" sortable></el-table-column>
|
|
|
|
- <el-table-column show-overflow-tooltip label="操作" width="260px">
|
|
|
|
- <template #default="{ row }">
|
|
|
|
- <el-button type="text" @click="handleEdit(row)">编辑</el-button>
|
|
|
|
- <el-button type="text" @click="handleDelete(row)">删除</el-button>
|
|
|
|
- <el-button type="text" @click="handleDelete(row)">设备点表配置</el-button>
|
|
|
|
- <el-button type="text" @click="handleDelete(row)">场站点表配置</el-button>
|
|
|
|
- </template>
|
|
|
|
- </el-table-column>
|
|
|
|
- </el-table>
|
|
|
|
- <el-pagination :background="background" :current-page="queryForm.pageNo" :layout="layout"
|
|
|
|
- :page-size="queryForm.pageSize" :total="total" @current-change="handleCurrentChange"
|
|
|
|
- @size-change="handleSizeChange"></el-pagination>
|
|
|
|
- <table-edit ref="edit" :options="options" @save-success="fetchData"></table-edit>
|
|
|
|
|
|
+ <template v-if="showState === 1">
|
|
|
|
+ <!-- <vab-query-form> -->
|
|
|
|
+ <!-- <vab-query-form-left-panel> -->
|
|
|
|
+ <el-form ref="form" :model="queryForm" :inline="true" @submit.native.prevent>
|
|
|
|
+ <el-form-item label="统一编码"><el-input placeholder="请输入" v-model="form.code"></el-input></el-form-item>
|
|
|
|
+ <el-form-item label="名称"><el-input placeholder="请输入" v-model="form.name"></el-input></el-form-item>
|
|
|
|
+ <el-form-item label="类型">
|
|
|
|
+ <el-select v-model="form.type" placeholder="请选择">
|
|
|
|
+ <el-option
|
|
|
|
+ v-for="item in typeOptions"
|
|
|
|
+ :key="item.value"
|
|
|
|
+ :label="item.label"
|
|
|
|
+ :value="item.value">
|
|
|
|
+ </el-option>
|
|
|
|
+ </el-select>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item>
|
|
|
|
+ <el-button icon="el-icon-search" type="primary" native-type="submit" @click="fetchData">查询</el-button>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ <el-form-item style="float: right;">
|
|
|
|
+ <el-button icon="el-icon-plus" type="primary" @click="handleAdd">添加</el-button>
|
|
|
|
+ <el-button icon="el-icon-delete" type="danger" @click="handleDelete">删除</el-button>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-form>
|
|
|
|
+ <!-- </vab-query-form-left-panel> -->
|
|
|
|
+ <!-- <vab-query-form-right-panel> -->
|
|
|
|
+ <!-- <UploadExcel style="margin-left: 10px;" @getResult="getMyExcelData"></UploadExcel>
|
|
|
|
+ <ExportExcel :exportList="exportExcel" partsName="公司"></ExportExcel> -->
|
|
|
|
+ <!-- </vab-query-form-right-panel> -->
|
|
|
|
+ <!-- </vab-query-form> -->
|
|
|
|
+ <el-table ref="tableSort" v-loading="listLoading" :data="list" :element-loading-text="elementLoadingText"
|
|
|
|
+ :height="height" @selection-change="setSelectRows">
|
|
|
|
+ <el-table-column show-overflow-tooltip type="selection" width="55"></el-table-column>
|
|
|
|
+ <el-table-column show-overflow-tooltip label="id" prop="id" align="center" sortable></el-table-column>
|
|
|
|
+ <el-table-column show-overflow-tooltip label="统一编码" prop="code" align="center" sortable></el-table-column>
|
|
|
|
+ <el-table-column show-overflow-tooltip label="名称" prop="name" align="center" sortable></el-table-column>
|
|
|
|
+ <el-table-column show-overflow-tooltip label="类型" prop="type" align="center" sortable></el-table-column>
|
|
|
|
+ <el-table-column show-overflow-tooltip label="操作" width="260px">
|
|
|
|
+ <template #default="{ row }">
|
|
|
|
+ <el-button type="text" @click="handleEdit(row)">编辑</el-button>
|
|
|
|
+ <el-button type="text" @click="handleDelete(row)">删除</el-button>
|
|
|
|
+ <el-button type="text" @click="equipmentAllocation(row)">设备点表配置</el-button>
|
|
|
|
+ <el-button type="text" @click="stationAllocation(row)">场站点表配置</el-button>
|
|
|
|
+ </template>
|
|
|
|
+ </el-table-column>
|
|
|
|
+ </el-table>
|
|
|
|
+ <el-pagination :background="background" :current-page="queryForm.pageNo" :layout="layout"
|
|
|
|
+ :page-size="queryForm.pageSize" :total="total" @current-change="handleCurrentChange"
|
|
|
|
+ @size-change="handleSizeChange"></el-pagination>
|
|
|
|
+ <table-edit ref="edit" :options="options" @save-success="fetchData"></table-edit>
|
|
|
|
+ </template>
|
|
|
|
+ <EquipmentAllocation :showValue="showData" v-if="showState === 2" @cutState="cutState"/>
|
|
|
|
+ <StationAllocation :showValue="showData" v-if="showState === 3" @cutState="cutState"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
<script>
|
|
<script>
|
|
-// import UploadExcel from '@/components/UploadExcel/index'
|
|
|
|
|
|
+import EquipmentAllocation from './equipmentAllocation/index'
|
|
|
|
+import StationAllocation from './stationAllocation/index'
|
|
|
|
+// import ExportExcel from '@/components/ExportExcel/index'
|
|
// import ExportExcel from '@/components/ExportExcel/index'
|
|
// import ExportExcel from '@/components/ExportExcel/index'
|
|
import TableEdit from './components/TableEdit'
|
|
import TableEdit from './components/TableEdit'
|
|
import api from '@/api/pointConfiguration'
|
|
import api from '@/api/pointConfiguration'
|
|
@@ -61,9 +67,13 @@ export default {
|
|
// UploadExcel,
|
|
// UploadExcel,
|
|
// ExportExcel,
|
|
// ExportExcel,
|
|
TableEdit,
|
|
TableEdit,
|
|
|
|
+ EquipmentAllocation,
|
|
|
|
+ StationAllocation
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ showState: 1,
|
|
|
|
+ showData: {},
|
|
typeOptions: [
|
|
typeOptions: [
|
|
{value: '风机计算', label:'风机计算'},
|
|
{value: '风机计算', label:'风机计算'},
|
|
{value: '场站计算', label:'场站计算'},
|
|
{value: '场站计算', label:'场站计算'},
|
|
@@ -101,6 +111,17 @@ export default {
|
|
},
|
|
},
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ cutState(data){
|
|
|
|
+ this.showState = data
|
|
|
|
+ },
|
|
|
|
+ equipmentAllocation(data){
|
|
|
|
+ this.showState = 2
|
|
|
|
+ this.showData = data
|
|
|
|
+ },
|
|
|
|
+ stationAllocation(data){
|
|
|
|
+ this.showState = 3
|
|
|
|
+ this.showData = data
|
|
|
|
+ },
|
|
getMyExcelData(val) {
|
|
getMyExcelData(val) {
|
|
val.forEach(item => {
|
|
val.forEach(item => {
|
|
api.addCompanys(item).then(res => {
|
|
api.addCompanys(item).then(res => {
|