| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- <template>
- <div class="app-container">
- <el-row :gutter="20">
- <el-col :span="24" :xs="24">
- <div class="main-right-box">
- <div class="main-search-box">
- <el-form
- :model="queryParams"
- ref="queryForm"
- size="small"
- :inline="true"
- v-show="showSearch"
- >
- <el-form-item label="组织机构">
- <org-tree
- v-model="queryParams.orgId"
- @defaultKey="getDefaultKey"
- @defaultOrg="getDefaultOrg"
- @checkChange="checkChange"
- @click="clickTreeNode"
- ref="orgTree"
- ></org-tree>
- </el-form-item>
- <el-form-item label="设备名称" prop="deviceName">
- <el-input
- v-model="queryParams.deviceName"
- clearable
- placeholder="请输入关键字"
- @keyup.enter.native="handleQuery"/>
- </el-form-item>
- <el-form-item label="绑定任务" prop="state">
- <el-select
- v-model="queryParams.state" clearable
- label="绑定任务" placeholder="请选择绑定状态" prop="state">
- <el-option
- v-for="item in bindTypes"
- :key="item.value"
- :label="item.label"
- :value="item.value"/>
- </el-select>
- </el-form-item>
- <el-form-item label="任务名称" prop="missionCode">
- <el-select
- v-model="queryParams.missionCode"
- clearable
- label="任务名称"
- placeholder="请选择任务名称"
- prop="missionCode"
- >
- <el-option
- v-for="item in deviceTypes"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-select>
- </el-form-item>
- </el-form>
- <el-row :gutter="10">
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-search"
- size="mini"
- @click="handleQuery"
- >搜索
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-refresh"
- size="mini"
- @click="resetQuery"
- >重置
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-refresh"
- size="mini"
- @click="unbindMission()"
- >解绑任务
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-refresh"
- size="mini"
- @click="bindMission()"
- >绑定任务
- </el-button>
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="primary"
- icon="el-icon-download"
- size="mini"
- @click="handleExport"
- >导出数据
- </el-button>
- </el-col>
- <right-toolbar
- :showSearch.sync="showSearch"
- @queryTable="getList"
- ></right-toolbar>
- </el-row>
- </div>
- <el-table
- v-loading="loading"
- :data="dataList"
- border
- height="600"
- size="small"
- >
- <el-table-column label="序号" type="index" align="center" width="70">
- <template slot-scope="scope">
- {{
- (queryParams.pageNum - 1) * queryParams.pageSize +
- scope.$index +
- 1
- }}
- </template>
- </el-table-column>
- <el-table-column label="地区" align="center" prop="firstOrgName" width="180"/>
- <el-table-column label="行社名称" align="center" prop="secondOrgName" width="220"/>
- <el-table-column label="所属机构" align="center" prop="orgName" width="220"/>
- <el-table-column label="设备名称" align="center" prop="deviceName" width="300"/>
- <el-table-column label="所属主机" align="center" prop="hostName" width="280"/>
- <el-table-column label="任务" align="center" prop="missionName" width="380"/>
- </el-table>
- <pagination
- v-show="total > 0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- </div>
- </el-col>
- </el-row>
- <dialog-bind-mission ref="bindMissionDialog" @success="getList()"></dialog-bind-mission>
- </div>
- </template>
- <script>
- import { cameraList,missionTypeList,unbindMission} from "@/api/iot/diagnoseMission";
- import DialogBindMission from "./dialog.bindMission.vue";
- import OrgTree from "@/components/orgTree/orgQuerySelector.vue";
- import { mapGetters } from "vuex";
- import dayjs from "dayjs";
- export default {
- components: { OrgTree,DialogBindMission },
- name: "Task",
- dicts: ["sys_org_type",'sensor_alarm_status','sensor_device_type'],
- data() {
- return {
- bindTypes:[
- {
- value: '0',
- label: '未绑定'
- },
- {
- value: '1',
- label: '已绑定'
- }
- ],
- deviceTypes: [],
- // 遮罩层
- loading: false,
- // 选中数组
- ids: [],
- // 非单个停用
- single: true,
- // 非多个停用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 1,
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- checkSub: true,
- missionCode: null,
- state: null,
- },
- // 表单参数
- form: {},
- // 表单校验
- rules: {},
- timeClearable: true,
- showOverflowTooltip:true,
- dataList:[],
- };
- },
- created() {
- this.queryParams.orgId = this.$store.getters.orgId;
- this.initDeviceTypeList();
- },
- computed: {
- ...mapGetters(["orgId"]),
- },
- methods: {
- initDeviceTypeList(){
- missionTypeList()
- .then((r) => {
- // 使用 map 而不是 filter 进行数据转换
- const transformedList = r.map((item) => ({
- value: item.value,
- label: item.label,
- type: item.type,
- }));
- // 将转换后的数据推送到 this.deviceTypeList
- this.deviceTypes.push(...transformedList);
- })
- .catch((error) => {
- // 处理错误
- console.error('Error fetching device type list:', error);
- });
- },
- /** 查询列表 */
- getList() {
- this.loading = true;
- cameraList(this.queryParams).then((response) => {
- this.dataList = response.rows;
- this.total = response.total;
- this.loading = false;
- });
- },
- // 取消弹框
- closeHandler() {
- this.reset();
- },
- handleImport() {},
- getDefaultOrg(org) {
- this.orgName = org.name;
- this.selectedOrgName = org.shortName;
- },
- getDefaultKey(key) {
- this.queryParams.orgId = key;
- this.getList();
- },
- checkChange(state) {
- this.queryParams.checkSub = state;
- this.handleQuery();
- },
- // 节点单击事件
- clickTreeNode(data) {
- this.queryParams.orgId = data.id;
- this.orgName = data.name;
- this.selectedOrgName = data.shortName;
- this.handleQuery();
- },
- /** 下穿状态改变*/
- changeCheckBox() {
- this.getList();
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- id: null,
- orgId: null,
- orgPath: null,
- orgName: null
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.resetForm("queryForm");
- this.queryParams.orgId = this.orgId;
- this.selectedOrgName = this.orgName;
- this.queryParams.checkSub = true;
- this.queryParams.planStartTime = null;
- this.$refs["orgTree"].setCheckSub(this.queryParams.checkSub);
- this.handleQuery();
- },
- /** 绑定任务 */
- bindMission() {
- this.$refs["bindMissionDialog"].show(this.queryParams, this.deviceTypes);
- },
- /** 解绑任务 */
- unbindMission() {
- this.loading = true;
- unbindMission(this.queryParams).then((response) => {
- this.loading = false;
- this.getList();
- });
- },
- /** 导出按钮操作 */
- handleExport() {
- if (this.total==null || this.total===0){
- this.$modal.alert("暂无可用数据导出");
- return;
- }
- if (this.total>50000){
- this.$modal.alert("导出数据超过5万条,请缩小查询范围后重试");
- return;
- }
- this.download(
- "iot/sensor/export",
- {
- ...this.queryParams,
- },
- `${
- this.selectedOrgName
- }-${this.$tab.getCurrentTabName()}-${dayjs().format("YYYYMMDD")}.xlsx`
- );
- },
- },
- };
- </script>
- <style lang="scss" scoped></style>
|