浏览代码

'jiaoyang暂存'

魏志佳 4 年之前
父节点
当前提交
bd808f17d2
共有 1 个文件被更改,包括 89 次插入0 次删除
  1. 89 0
      src/views/modules/workBench/index.vue

+ 89 - 0
src/views/modules/workBench/index.vue

@@ -0,0 +1,89 @@
+<template>
+    <div class="workBench">
+        <div class="topBody">
+            <p class="breadcrumb">工作台</p>
+            <div class="bottom">
+                <div class="touxiang">
+                    <img src="" alt="">
+                </div>  
+                <div class='tip'>
+                    <p class="greet">早安,吴永前,祝你开心每一天!</p>
+                    <p class="descPosition">
+                        <span>运营经理</span>
+                        <a-divider type="vertical" />
+                        <span>华北地区-头条事业部</span>
+                    </p>
+                </div>
+                <a-button type='primary' class="mybtn">
+                    <a-icon type="plus" />
+                    发起订单
+                </a-button>
+            </div>
+        </div>
+    </div>
+</template>
+
+<script>
+import moment from 'moment';
+import { getAction, postAction, downFile, downFilePost } from '@/api/manage';
+
+export default {
+    
+}
+</script>
+
+<style lang="scss" scoped>
+.workBench{
+    width: 100%;
+    .topBody{
+        width: 100%;
+        height: 146px;
+        background: #FFFFFF;
+        .breadcrumb{
+            width: 42px;
+            height: 22px;
+            font-size: 12px;
+            font-family: PingFangSC-Regular, PingFang SC;
+            font-weight: 400;
+            color: #000000;
+            line-height: 22px;
+        }
+        .bottom{
+            display: flex;
+            position: relative;
+            padding: 20px;
+            .touxiang{
+                width: 72px;
+                height: 72px;
+            }
+            .tip{
+                .greet{
+                    width: 300px;
+                    height: 28px;
+                    font-size: 20px;
+                    font-family: PingFangSC-Medium, PingFang SC;
+                    font-weight: 500;
+                    color: rgba(0, 0, 0, 0.85);
+                    line-height: 28px;
+                }
+                .descPosition{
+                    height: 22px;
+                    font-size: 14px;
+                    font-family: PingFangSC-Regular, PingFang SC;
+                    font-weight: 400;
+                    color: rgba(0, 0, 0, 0.45);
+                    line-height: 22px;
+                }
+
+            }
+            .mybtn{
+                position: absolute;
+                top: 50%;
+                margin-left: -18px;
+                right: 0;
+            }
+        }
+
+    }
+}
+</style>