This commit is contained in:
@ -1,8 +1,10 @@
|
||||
<template>
|
||||
<section class="app-container">
|
||||
<el-row>
|
||||
<el-col :span="2">todo 地区</el-col>
|
||||
<el-col :span="22">
|
||||
<el-col :span="4">
|
||||
<region></region>
|
||||
</el-col>
|
||||
<el-col :span="20">
|
||||
<el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
|
||||
<el-form-item label="名称" prop="jobName">
|
||||
<el-input v-model="queryParams.deviceName" placeholder="请输入名称" clearable size="small" style="width: 240px"
|
||||
@ -100,6 +102,7 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Region from "@/components/Region";
|
||||
import {
|
||||
list,
|
||||
get,
|
||||
@ -109,6 +112,9 @@ import {
|
||||
} from "@/api/hardware/device";
|
||||
export default {
|
||||
name: "DeviceList",
|
||||
components: {
|
||||
Region,
|
||||
},
|
||||
data () {
|
||||
return {
|
||||
// 选中数组
|
||||
|
Reference in New Issue
Block a user