|
@@ -2,27 +2,73 @@
|
|
|
<div class="adm-device">
|
|
|
<statistics :statistics-msg="statisticsMsg"/>
|
|
|
<div class="operation">
|
|
|
- <admSelect @selectValue="selectValue"/>
|
|
|
+ <admSelect @selectValue="selectValue" :list="list"/>
|
|
|
<admSearch @SearchValue="SearchValue"/>
|
|
|
- <admBtn :btnMsg="btnMsg"/>
|
|
|
+ <el-button type="default" @click="addDevice" class="adm-btn">添加设备</el-button>
|
|
|
</div>
|
|
|
<div class="hr"></div>
|
|
|
<div class="content">
|
|
|
- <admTabs :paneMsg="paneMsg" @paneValue="paneValue"/>
|
|
|
+ <el-tabs v-model="activeName" type="card" @tab-click="handleClick">
|
|
|
+ <el-tab-pane v-for="(item,index) in paneMsg" :key="index" :label="item" :name="index.toString()"/>
|
|
|
+ </el-tabs>
|
|
|
<div class="table">
|
|
|
- <admMultiTable :currentHeader="currentHeader" :tableData="tableData"/>
|
|
|
- <Pagination :paginationList="paginationList" @currentPage="currentPage"/>
|
|
|
+ <template v-if="true">
|
|
|
+ <admMultiTable :currentHeader="currentHeader" :tableData="tableData"/>
|
|
|
+ <Pagination :paginationList="paginationList" @currentPage="currentPage"/>
|
|
|
+ </template>
|
|
|
+ <div v-else class="void align">
|
|
|
+ <svg-icon name="void" :width="120" :height="123"/>
|
|
|
+ <p class="void-title">暂无内容</p>
|
|
|
+ <p class="void-tips">可点击左上角选择设备类型</p>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <!-- 添加/编辑 设备-->
|
|
|
+ <el-dialog
|
|
|
+ :title="deviceMsg"
|
|
|
+ :visible.sync="dialogVisible"
|
|
|
+ @close="close"
|
|
|
+ >
|
|
|
+ <template v-if="next">
|
|
|
+ <div class="align" style="height: 400px">
|
|
|
+ <span class="text ">设备类别</span>
|
|
|
+ <el-select
|
|
|
+ v-model="deviceVal"
|
|
|
+ placeholder="请选择"
|
|
|
+ clearable
|
|
|
+ filterable
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in list"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value"
|
|
|
+
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </div>
|
|
|
+ <el-button type="primary" class="fr" @click="handleNext">下一步</el-button>
|
|
|
+ </template>
|
|
|
+ <template v-else-if="displayLocation && deviceVal">
|
|
|
+ <el-button type="primary" class="fr ml-10">保存</el-button>
|
|
|
+ <el-button type="default" class="fr ml-10">取消</el-button>
|
|
|
+ <el-button type="default" class="fr ml-10">重置</el-button>
|
|
|
+ </template>
|
|
|
+ <template v-else>
|
|
|
+ <dataForm/>
|
|
|
+ <el-button type="primary" class="fr ml-10">确定</el-button>
|
|
|
+ <el-button type="default" class="fr" @click="handlePosition">维护位置</el-button>
|
|
|
+ </template>
|
|
|
+ </el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script lang="ts">
|
|
|
import { Vue, Component } from "vue-property-decorator";
|
|
|
-import { Statistics, AdmSelect, AdmSearch, AdmBtn, AdmTabs, AdmMultiTable, Pagination } from '../components/index'
|
|
|
+import { Statistics, AdmSelect, AdmSearch, AdmMultiTable, Pagination, dataForm } from '../components/index'
|
|
|
|
|
|
@Component({
|
|
|
name: 'adm-device',
|
|
|
- components: { Statistics, AdmSelect, AdmSearch, AdmBtn, AdmTabs, AdmMultiTable, Pagination }
|
|
|
+ components: { Statistics, AdmSelect, AdmSearch, AdmMultiTable, Pagination, dataForm }
|
|
|
})
|
|
|
export default class extends Vue {
|
|
|
private statisticsMsg = {
|
|
@@ -30,16 +76,39 @@ export default class extends Vue {
|
|
|
total: 234
|
|
|
|
|
|
}
|
|
|
- private btnMsg = {
|
|
|
- type: 'default',
|
|
|
- title: '添加设备'
|
|
|
- }
|
|
|
+ // 设备类值
|
|
|
+ deviceVal = ''
|
|
|
+ // 维护位置
|
|
|
+ displayLocation = false
|
|
|
+ // 下拉数据
|
|
|
+ list = [
|
|
|
+ {
|
|
|
+ value: '选项1',
|
|
|
+ label: '黄金糕'
|
|
|
+ }, {
|
|
|
+ value: '选项2',
|
|
|
+ label: '双皮奶'
|
|
|
+ }, {
|
|
|
+ value: '选项3',
|
|
|
+ label: '蚵仔煎'
|
|
|
+ }, {
|
|
|
+ value: '选项4',
|
|
|
+ label: '龙须面'
|
|
|
+ }, {
|
|
|
+ value: '选项5',
|
|
|
+ label: '北京烤鸭'
|
|
|
+ }]
|
|
|
+ private dialogVisible = false
|
|
|
private paneMsg = ['设计阶段维护', '施工阶段维护', '运维阶段维护']
|
|
|
+ private activeName = ""
|
|
|
private paginationList = {
|
|
|
size: 1,
|
|
|
sizes: [10, 20.50, 100],
|
|
|
total: 200
|
|
|
}
|
|
|
+ // 下一步
|
|
|
+ private next = true
|
|
|
+ private deviceMsg = '添加设备'
|
|
|
private currentHeader = this.paneMsg[0]
|
|
|
private tableData = [{
|
|
|
date: '2016-05-03',
|
|
@@ -94,7 +163,7 @@ export default class extends Vue {
|
|
|
|
|
|
|
|
|
// 维护阶段 tabs
|
|
|
- paneValue(val: any) {
|
|
|
+ handleClick(val: any) {
|
|
|
console.log(val)
|
|
|
this.currentHeader = val.label
|
|
|
switch (val.index) {
|
|
@@ -110,7 +179,7 @@ export default class extends Vue {
|
|
|
|
|
|
//设备类筛选
|
|
|
selectValue(val: string) {
|
|
|
- console.log(val)
|
|
|
+ console.log(val, 3)
|
|
|
|
|
|
}
|
|
|
|
|
@@ -118,14 +187,47 @@ export default class extends Vue {
|
|
|
SearchValue(val: string) {
|
|
|
console.log(val)
|
|
|
}
|
|
|
+
|
|
|
// 当前分页
|
|
|
- currentPage(val:number) {
|
|
|
+ currentPage(val: number) {
|
|
|
console.log(val)
|
|
|
}
|
|
|
+
|
|
|
+ // 添加设备
|
|
|
+ addDevice() {
|
|
|
+ this.dialogVisible = true
|
|
|
+ }
|
|
|
+
|
|
|
+ //下一步事件
|
|
|
+ handleNext() {
|
|
|
+ if (this.deviceVal) {
|
|
|
+ this.next = false
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+// 维护位置
|
|
|
+ handlePosition() {
|
|
|
+ this.displayLocation = true
|
|
|
+ }
|
|
|
+
|
|
|
+// close
|
|
|
+ close() {
|
|
|
+ this.next = true
|
|
|
+ this.displayLocation = false
|
|
|
+ }
|
|
|
}
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
$margin: 12px;
|
|
|
+$border: 1px solid #E1E7EA;
|
|
|
+.align {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ flex-direction: column;
|
|
|
+ flex-wrap: wrap;
|
|
|
+}
|
|
|
+
|
|
|
.adm-device {
|
|
|
background: #fff;
|
|
|
padding: 12px;
|
|
@@ -136,6 +238,7 @@ $margin: 12px;
|
|
|
|
|
|
.adm-select {
|
|
|
margin-right: $margin;
|
|
|
+
|
|
|
}
|
|
|
|
|
|
.adm-btn {
|
|
@@ -156,11 +259,28 @@ $margin: 12px;
|
|
|
height: 100%;
|
|
|
|
|
|
.table {
|
|
|
- border-left: 1px solid #E1E7EA;
|
|
|
- border-right: 1px solid #E1E7EA;
|
|
|
- border-bottom: 1px solid #E1E7EA;
|
|
|
+ border-left: $border;
|
|
|
+ border-right: $border;
|
|
|
+ border-bottom: $border;
|
|
|
height: calc(100% - 180px);
|
|
|
padding: 12px;
|
|
|
+
|
|
|
+ .void {
|
|
|
+
|
|
|
+ margin-top: 200px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .void-title {
|
|
|
+ color: #333333;
|
|
|
+ line-height: 21px;
|
|
|
+ font-size: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .void-tips {
|
|
|
+ color: #9CA1A9;
|
|
|
+ line-height: 22px;
|
|
|
+ font-size: 14px;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.adm-multi-table {
|
|
@@ -176,9 +296,40 @@ $margin: 12px;
|
|
|
bottom: 30px;
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
</style>
|
|
|
<style>
|
|
|
+.data-form {
|
|
|
+ height: 430px;
|
|
|
+}
|
|
|
+
|
|
|
+.text {
|
|
|
+ color: #000000;
|
|
|
+ margin-bottom: 10px;
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
.el-tabs__header {
|
|
|
margin: 0;
|
|
|
}
|
|
|
+
|
|
|
+.el-dialog__header {
|
|
|
+ border-bottom: 1px solid #D8D8D8;
|
|
|
+}
|
|
|
+
|
|
|
+.fl {
|
|
|
+ float: left;
|
|
|
+}
|
|
|
+
|
|
|
+.fr {
|
|
|
+ float: right;
|
|
|
+}
|
|
|
+
|
|
|
+.el-dialog__body {
|
|
|
+ overflow: hidden;
|
|
|
+}
|
|
|
+
|
|
|
+.ml-10 {
|
|
|
+ margin-left: 10px;
|
|
|
+}
|
|
|
</style>
|