历史页面实时部分
parent
356baa8785
commit
b6de85a511
@ -1,12 +1,66 @@
|
||||
<template>
|
||||
<div class="center"></div>
|
||||
<div class="center bg-white">
|
||||
<div class="center-table">
|
||||
<a-row>
|
||||
<a-col span="4">登录账户</a-col>
|
||||
<a-col span="8">{{userInfo.account || '-'}}</a-col>
|
||||
|
||||
<a-col span="4">用户姓名</a-col>
|
||||
<a-col span="8">{{userInfo.name || '-'}}</a-col>
|
||||
</a-row>
|
||||
|
||||
<a-row>
|
||||
<a-col span="4">手机号码</a-col>
|
||||
<a-col span="8">{{userInfo.phone || '-'}}</a-col>
|
||||
|
||||
<a-col span="4">邮箱</a-col>
|
||||
<a-col span="8">{{userInfo.email || '-'}}</a-col>
|
||||
</a-row>
|
||||
</div>
|
||||
<a-row>
|
||||
<a-col span="24" align="center">
|
||||
<a-button class="mt16">修改密码</a-button>
|
||||
</a-col>
|
||||
</a-row>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "center"
|
||||
name: "center",
|
||||
data() {
|
||||
return {
|
||||
userInfo: {}
|
||||
};
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
<style lang='scss'>
|
||||
.center {
|
||||
padding: 24px;
|
||||
&-table {
|
||||
.ant-row {
|
||||
display: flex;
|
||||
border-right: 1px solid #e9e9e9;
|
||||
div {
|
||||
padding: 16px;
|
||||
border-top: 1px solid #e9e9e9;
|
||||
border-left: 1px solid #e9e9e9;
|
||||
font-size: 14px;
|
||||
font-family: PingFangSC-Regular, PingFang SC;
|
||||
font-weight: 400;
|
||||
color: rgba(0, 0, 0, 0.65);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
.ant-col-4 {
|
||||
background-color: #fafafa;
|
||||
}
|
||||
}
|
||||
.ant-row:last-child {
|
||||
border-bottom: 1px solid #e9e9e9;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -1,12 +1,65 @@
|
||||
<template>
|
||||
<div class="history"></div>
|
||||
<div class="history bg-white">
|
||||
<a-input-search
|
||||
class="mb24"
|
||||
style="width: 40%;"
|
||||
placeholder="请输入工单号搜索"
|
||||
v-model="search"
|
||||
enter-button="搜索"
|
||||
@search="handleSearch"
|
||||
></a-input-search>'
|
||||
<a-table :columns="columns" :dataSource="dataSource"></a-table>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "history"
|
||||
name: "history",
|
||||
data() {
|
||||
return {
|
||||
search: "",
|
||||
columns: [
|
||||
{
|
||||
title: "货位号",
|
||||
dataIndex: ""
|
||||
},
|
||||
{
|
||||
title: "视频录制时间",
|
||||
dataIndex: ""
|
||||
},
|
||||
{
|
||||
title: "历史视频播放地址",
|
||||
dataIndex: "",
|
||||
scopedSlot: {
|
||||
customRender: ""
|
||||
}
|
||||
},
|
||||
{
|
||||
title: "取货前照片",
|
||||
dataIndex: "",
|
||||
scopedSlot: {
|
||||
customRender: ""
|
||||
}
|
||||
},
|
||||
{
|
||||
title: "取货后照片",
|
||||
dataIndex: "",
|
||||
scopedSlot: {
|
||||
customRender: ""
|
||||
}
|
||||
}
|
||||
],
|
||||
dataSource: []
|
||||
};
|
||||
},
|
||||
methods: {
|
||||
handleSearch() {}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
<style lang='scss'>
|
||||
.history {
|
||||
padding: 24px;
|
||||
}
|
||||
</style>
|
||||
Loading…
Reference in New Issue