master
parent
99a17d532c
commit
dfca7c9ee2
@ -1,3 +1,3 @@
|
||||
NODE_ENV = 'development'
|
||||
VUE_APP_URL = ''
|
||||
VUE_APP_CDN = ''
|
||||
VUE_APP_URL = 'http://121.41.26.2251:8002/admin'
|
||||
VUE_APP_CDN = 'http://121.41.26.2251:8002/admin'
|
@ -1,3 +1,3 @@
|
||||
NODE_ENV = 'production'
|
||||
VUE_APP_URL = ''
|
||||
VUE_APP_CDN = ''
|
||||
VUE_APP_URL = 'http://121.41.26.2251:8002/admin'
|
||||
VUE_APP_CDN = 'http://121.41.26.2251:8002/admin'
|
@ -0,0 +1,10 @@
|
||||
import httpService from "@/request"
|
||||
|
||||
// 获取预报列表
|
||||
export function functionName(params) {
|
||||
return httpService({
|
||||
url: `url`,
|
||||
method: 'post',
|
||||
data: params,
|
||||
})
|
||||
}
|
@ -0,0 +1,10 @@
|
||||
import httpService from "@/request"
|
||||
|
||||
// 登录
|
||||
export function loginTel(params) {
|
||||
return httpService({
|
||||
url: `/manage/loginTelCode`,
|
||||
method: 'post',
|
||||
data: params,
|
||||
})
|
||||
}
|
@ -0,0 +1,36 @@
|
||||
<template>
|
||||
<div>
|
||||
<a-drawer
|
||||
title="抽屉"
|
||||
:width="720"
|
||||
:visible="visible"
|
||||
:body-style="{ paddingBottom: '80px' }"
|
||||
@close="onClose"
|
||||
>
|
||||
<div class="drawer-content"></div>
|
||||
<div class="drawer-footer">
|
||||
<a-button :style="{ marginRight: '8px' }" @click="onClose">
|
||||
关闭
|
||||
</a-button>
|
||||
<a-button type="primary" @click="onClose"> 提交 </a-button>
|
||||
</div>
|
||||
</a-drawer>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
visible: false,
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
showDrawer() {
|
||||
this.visible = true;
|
||||
},
|
||||
onClose() {
|
||||
this.visible = false;
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
@ -1,37 +1,69 @@
|
||||
@import "./antd.less";
|
||||
|
||||
// 公共样式
|
||||
#app{
|
||||
#app {
|
||||
background: #E5E5E5;
|
||||
}
|
||||
.content{
|
||||
|
||||
.content {
|
||||
padding: 13px;
|
||||
}
|
||||
.main{
|
||||
padding: 13px;
|
||||
|
||||
.main {
|
||||
padding : 13px;
|
||||
background: #fff;
|
||||
}
|
||||
.cardTitle{
|
||||
border-left: 8px solid #205FBD;
|
||||
padding-left:10px;
|
||||
margin-left: 10px;
|
||||
|
||||
.cardTitle {
|
||||
border-left : 8px solid #205FBD;
|
||||
padding-left : 10px;
|
||||
margin-left : 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
#commonTable{
|
||||
|
||||
// 表格
|
||||
#commonTable {
|
||||
margin: 24px;
|
||||
}
|
||||
|
||||
.search-box {
|
||||
margin: 30px;
|
||||
}
|
||||
|
||||
.add-btn{
|
||||
background-color: rgba(251, 101, 61, 1) !important;
|
||||
color: rgba(255, 255, 255, 1) !important;
|
||||
}
|
||||
.footer {
|
||||
height: 84px;
|
||||
width: 100%;
|
||||
background: #fff;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
z-index: 999;
|
||||
line-height: 84px;
|
||||
box-shadow: 0px -2px 4px 0px rgba(0, 0, 0, 0.35);
|
||||
height : 84px;
|
||||
width : 100%;
|
||||
background : #fff;
|
||||
position : fixed;
|
||||
bottom : 0;
|
||||
z-index : 999;
|
||||
line-height : 84px;
|
||||
box-shadow : 0px -2px 4px 0px rgba(0, 0, 0, 0.35);
|
||||
border-radius: 4px 4px 0px 0px;
|
||||
border: 1px solid #e8e8e8;
|
||||
left: 200px;
|
||||
}
|
||||
border : 1px solid #e8e8e8;
|
||||
left : 200px;
|
||||
}
|
||||
|
||||
// 抽屉
|
||||
.drawer-content {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.drawer-footer {
|
||||
position : absolute;
|
||||
right : 0;
|
||||
bottom : 0;
|
||||
width : 100%;
|
||||
border-top: 1px solid #e9e9e9;
|
||||
padding : 10px 16px;
|
||||
background: #fff;
|
||||
text-align: right;
|
||||
z-index : 1;
|
||||
}
|
||||
.ant-modal-content{
|
||||
margin-top:100px;
|
||||
}
|
Loading…
Reference in new issue