|
@@ -2,37 +2,40 @@
|
|
|
<div class="operateRecord">
|
|
|
<div class="search-content">
|
|
|
<a-row>
|
|
|
- <a-col :span="4">
|
|
|
+ <!-- <a-col :span="4">
|
|
|
<div class="area-item">
|
|
|
<div class="item-text">填报日期:</div>
|
|
|
<a-date-picker style="width: 220px" :showTime="false" valueFormat="YYYY-MM-DD"
|
|
|
v-model:value="searchData.reportTime" placeholder="请选择填报日期" />
|
|
|
</div>
|
|
|
- </a-col>
|
|
|
+ </a-col> -->
|
|
|
<a-col :span="4">
|
|
|
<div class="area-item">
|
|
|
- <div class="item-text">上报地点:</div>
|
|
|
- <a-select v-model:value="searchData.strInstallPos" style="width: 220px" placeholder="请选择上报地点">
|
|
|
- <a-select-option v-for="item in addressList" :key="item" :value="item.value">{{ item.label
|
|
|
+ <div class="item-text">所选分站:</div>
|
|
|
+ <a-select v-model:value="searchData.stationId" style="width: 220px" placeholder="请选择分站">
|
|
|
+ <a-select-option v-for="(item, index) in stationList" :key="index" :value="item.value">{{
|
|
|
+ item.label
|
|
|
}}</a-select-option>
|
|
|
</a-select>
|
|
|
</div>
|
|
|
</a-col>
|
|
|
<a-col :span="4">
|
|
|
<div class="area-item">
|
|
|
- <div class="item-text">上报地点:</div>
|
|
|
- <a-select v-model:value="searchData.strInstallPos" style="width: 220px" placeholder="请选择上报地点">
|
|
|
- <a-select-option v-for="item in addressList" :key="item" :value="item.value">{{ item.label
|
|
|
+ <div class="item-text">所选设备:</div>
|
|
|
+ <a-select v-model:value="searchData.deviceId" style="width: 220px" placeholder="请选择设备">
|
|
|
+ <a-select-option v-for="(item, index) in deviceList" :key="index" :value="item.value">{{
|
|
|
+ item.label
|
|
|
}}</a-select-option>
|
|
|
</a-select>
|
|
|
</div>
|
|
|
</a-col>
|
|
|
|
|
|
- <a-button type="primary" preIcon="ant-design:search-outlined">查询</a-button>
|
|
|
- <a-button preIcon="ant-design:sync-outlined" style="margin: 0px 15px">重置</a-button>
|
|
|
+ <a-button type="primary" preIcon="ant-design:search-outlined" @click="getSearchRecord">查询</a-button>
|
|
|
+ <a-button preIcon="ant-design:sync-outlined" style="margin: 0px 15px"
|
|
|
+ @click="getResetRecord">重置</a-button>
|
|
|
</a-row>
|
|
|
</div>
|
|
|
- <a-table size="small" :scroll="{ y: 710 }" :columns="columnsDetail" :data-source="tableData">
|
|
|
+ <a-table size="small" :scroll="{ y: 710 }" :columns="columnsOperate" :data-source="tableData">
|
|
|
<!-- <template #action="{ record }">
|
|
|
<a-button type="primary" size="small" @click="handleEdit(record)">编辑</a-button>
|
|
|
</template> -->
|
|
@@ -42,18 +45,74 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
-import { ref, reactive } from 'vue'
|
|
|
-import { columnsDetail } from '../safetyList.data';
|
|
|
+import { ref, reactive,watch, onMounted } from 'vue'
|
|
|
+import { columnsOperate } from '../safetyList.data';
|
|
|
+import { subStationList, get158StationDevices } from '../safetyList.api'
|
|
|
|
|
|
+let props=defineProps({
|
|
|
+ operationData:{
|
|
|
+ type:Array,
|
|
|
+ default:()=>{
|
|
|
+ return []
|
|
|
+ }
|
|
|
+ }
|
|
|
+})
|
|
|
//操作记录
|
|
|
let searchData = reactive({
|
|
|
- reportTime: '',
|
|
|
- sbr: '',
|
|
|
- strInstallPos: '',
|
|
|
+ stationId: '',
|
|
|
+ deviceId: '',
|
|
|
})
|
|
|
-let addressList = ref<any[]>([])
|
|
|
+let stationList = ref<any[]>([])
|
|
|
+let deviceList = ref<any[]>([])
|
|
|
|
|
|
-let tableData = ref<[]>([])
|
|
|
+let tableData = ref<any[]>([])
|
|
|
+let $emit = defineEmits(['getSearchRecord'])
|
|
|
+
|
|
|
+//获取分站信息
|
|
|
+async function getSubStationList() {
|
|
|
+ let res = await subStationList({ strtype: 'modbus' });
|
|
|
+ if (res.length != 0) {
|
|
|
+ stationList.value = res.map(el => {
|
|
|
+ return {
|
|
|
+ label: el.strname,
|
|
|
+ value: el.id,
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+}
|
|
|
+//获取设备信息
|
|
|
+async function get158StationDevicesList() {
|
|
|
+ let res = await get158StationDevices({ stationId: searchData.stationId });
|
|
|
+ console.log(res, '分站下设备下拉选项-------------');
|
|
|
+ if (res && res.length != 0) {
|
|
|
+ deviceList.value = res.map(el => {
|
|
|
+ return {
|
|
|
+ label: el.strinstallpos,
|
|
|
+ value: el.id,
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
+}
|
|
|
+//查询
|
|
|
+function getSearchRecord() {
|
|
|
+ $emit('getSearchRecord', searchData)
|
|
|
+}
|
|
|
+//重置
|
|
|
+function getResetRecord() {
|
|
|
+ searchData.deviceId = ''
|
|
|
+ searchData.stationId = ''
|
|
|
+ $emit('getSearchRecord', searchData)
|
|
|
+}
|
|
|
+
|
|
|
+watch(()=>props.operationData,(newO,oldO)=>{
|
|
|
+ tableData.value=newO || []
|
|
|
+})
|
|
|
+onMounted(() => {
|
|
|
+ //获取分站列表
|
|
|
+ getSubStationList()
|
|
|
+ //获取设备列表
|
|
|
+ get158StationDevicesList()
|
|
|
+})
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|