Browse Source

3D库房 层位管理 页面创建

master
x_ying 3 years ago
parent
commit
78fa147349
  1. 2
      src/assets/icons/svg/warning.svg
  2. 46
      src/views/storeManage/levelManage/index.vue

2
src/assets/icons/svg/warning.svg

@ -0,0 +1,2 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1656921938380" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="2487" xmlns:xlink="http://www.w3.org/1999/xlink" width="25" height="25"><defs><style type="text/css">@font-face { font-family: feedback-iconfont; src: url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff2?t=1630033759944") format("woff2"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.woff?t=1630033759944") format("woff"), url("//at.alicdn.com/t/font_1031158_u69w8yhxdu.ttf?t=1630033759944") format("truetype"); }
</style></defs><path d="M511.999725 1023.99945c282.799848 0 511.999725-229.199877 511.999725-511.999725S794.799573 0 511.999725 0 0 229.199877 0 511.999725c0 135.799927 53.899971 265.999857 149.999919 361.999806 95.899948 96.199948 226.199879 150.199919 361.999806 149.999919z" fill="#EF3147" p-id="2488"></path><path d="M511.999725 864.799536c36.099981 0 65.299965-29.199984 65.299965-65.299965s-29.199984-65.299965-65.299965-65.299965c-36.099981 0-65.299965 29.199984-65.299965 65.299965-0.1 35.999981 29.199984 65.299965 65.299965 65.299965z" fill="#FFFFFF" p-id="2489"></path><path d="M511.999725 681.899634c-28.899984 0-52.299972-23.399987-52.299972-52.299972V211.399886c0-28.899984 23.399987-52.299972 52.299972-52.299971s52.199972 23.399987 52.299972 52.299971v418.299776c0 28.799985-23.399987 52.199972-52.299972 52.199972z" fill="#FFFFFF" p-id="2490"></path></svg>

46
src/views/storeManage/levelManage/index.vue

@ -0,0 +1,46 @@
<template>
<div>
<div class="head-container">
<p class="warning">
<svg-icon icon-class="warning" />
<span>温馨提示如需配置层位请直接前往库房管理进行设备维护</span>
</p>
<div>
<el-button type="primary" class="el-icon-more" size="mini" @click="handleBindParam">绑定参数</el-button>
</div>
</div>
</div>
</template>
<script>
export default {
}
</script>
<style lang="scss" scoped>
.head-container{
display: flex;
justify-content: space-between;
.el-button{
width: 106px;
height: 32px;
background-color: #1AAE93;
border: none;
}
}
::v-deep .el-icon-more:before{
margin-right: 8px;
}
.app-container{
margin-top: 0;
min-height: calc(100vh - 242px);
}
.warning{
font-size: 14px;
color: #3A99FD;
span{
margin-left: 5px;
}
}
</style>
Loading…
Cancel
Save