mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-06 17:36:44 +08:00
feat:调研页面表格,创建调研和管理页面
This commit is contained in:
BIN
src/assets/images/projectadd/picture.png
Normal file
BIN
src/assets/images/projectadd/picture.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 24 KiB |
BIN
src/assets/images/research/export.png
Normal file
BIN
src/assets/images/research/export.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.1 KiB |
BIN
src/assets/images/research/picture.png
Normal file
BIN
src/assets/images/research/picture.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.0 KiB |
@@ -134,6 +134,19 @@ export default {
|
||||
},
|
||||
];
|
||||
}
|
||||
if (n === "/researchmanage" || n === "/ResearchManage") {
|
||||
state.list = [
|
||||
{
|
||||
name: "调研管理",
|
||||
href: "",
|
||||
// href: "#/researchmanage",
|
||||
},
|
||||
{
|
||||
name: "管理",
|
||||
href: "",
|
||||
}
|
||||
];
|
||||
}
|
||||
if (n === "/systemmanage" || n === "/SystemManage") {
|
||||
state.list = [
|
||||
{
|
||||
|
||||
33
src/views/projectcenter/TaskPage.vue
Normal file
33
src/views/projectcenter/TaskPage.vue
Normal file
@@ -0,0 +1,33 @@
|
||||
<!-- 任务页面 -->
|
||||
<template>
|
||||
<div class="taskpage">
|
||||
<div class="header">
|
||||
<div class="box">
|
||||
<img src="../../assets/images/projectadd/picture.png"/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="split"></div>
|
||||
<div>2</div>
|
||||
</div>
|
||||
</template>
|
||||
<style lang="scss">
|
||||
.taskpage {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.header {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
.box {
|
||||
border: 12px solid #E7F2FF;
|
||||
margin: 16px 0 16px 19px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
}
|
||||
.split {
|
||||
width: 100%;
|
||||
height: 20px;
|
||||
background-color: #edf0f5;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
256
src/views/research/ManagePage.vue
Normal file
256
src/views/research/ManagePage.vue
Normal file
@@ -0,0 +1,256 @@
|
||||
<!-- 调研管理-管理页面 -->
|
||||
<template>
|
||||
<div class="managepage">
|
||||
<div class="up">
|
||||
<div class="header">
|
||||
<div style="width: 100%">
|
||||
<div class="export">
|
||||
<img src="../../assets/images/research/export.png"/>
|
||||
<span style="color: #4EA6FF;font-size: 14px;margin-left:3px">导出信息</span>
|
||||
</div>
|
||||
<div class="goback"><span class="return"></span><router-link class="returntext" to="/researchmanage">返回</router-link></div>
|
||||
</div>
|
||||
<div class="text">路径管理</div>
|
||||
</div>
|
||||
<div class="message">
|
||||
<div class="title">基本信息</div>
|
||||
<div class="messagebox">
|
||||
<div style="width: 186px;margin-right: 126px;float: left">
|
||||
<span class="name">调研名称:</span>
|
||||
<span class="descript">产品经理问卷调查</span>
|
||||
</div>
|
||||
<div style="width: 103px;margin-right: 126px;float:left">
|
||||
<span class="name">创建人:</span>
|
||||
<span class="descript">管理员</span>
|
||||
</div>
|
||||
<div style="width: 88px;margin-right: 126px;float:left">
|
||||
<span class="name">状态:</span>
|
||||
<span class="descript">已发布</span>
|
||||
</div>
|
||||
<div style="width: 192px;margin-right: 126px;float:left">
|
||||
<span class="name">创建时间:</span>
|
||||
<span class="descript">2022-07-22 9:30</span>
|
||||
</div>
|
||||
<div style="width: 192px;margin-right: 126px;float:left">
|
||||
<span class="name">创建时间:</span>
|
||||
<span class="descript">2022-07-22 9:30</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="split"></div>
|
||||
<div class="up down">
|
||||
<div class="header">
|
||||
<div class="text">学员情况</div>
|
||||
</div>
|
||||
<!-- 表格 -->
|
||||
<div class="tableBox">
|
||||
<a-table
|
||||
style="border: 1px solid #f2f6fe"
|
||||
:columns="columns"
|
||||
:data-source="dataSource"
|
||||
:loading="tableDataTotal === -1 ? true : false"
|
||||
expandRowByClick="true"
|
||||
:scroll="{ x: 1500, y: 800 }"
|
||||
@expand="expandTable"
|
||||
:pagination="false"
|
||||
/>
|
||||
</div>
|
||||
<!-- 表格 -->
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: "ManagePage",
|
||||
setup() {
|
||||
return {
|
||||
dataSource: [
|
||||
{
|
||||
key: '1',
|
||||
name: '张三',
|
||||
department: '产品部',
|
||||
post:'产品经理',
|
||||
project:'产品经理进阶-腾飞班1',
|
||||
learning:'产品经理学习路径',
|
||||
submit:'2022-07-22 9:30',
|
||||
},
|
||||
{
|
||||
key: '2',
|
||||
name: '李四',
|
||||
department: '产品部',
|
||||
post:'产品经理',
|
||||
project:'产品经理进阶-腾飞班1',
|
||||
learning:'高级产品经理学习路径',
|
||||
submit:'2022-07-22 9:30',
|
||||
},
|
||||
{
|
||||
key: '3',
|
||||
name: '王五',
|
||||
department: '产品部',
|
||||
post:'产品经理',
|
||||
project:'产品经理进阶-腾飞班1',
|
||||
learning:'-',
|
||||
submit:'2022-07-22 9:30',
|
||||
},
|
||||
{
|
||||
key: '4',
|
||||
name: '赵六',
|
||||
department: '产品部',
|
||||
post:'产品经理',
|
||||
project:'产品经理进阶-腾飞班1',
|
||||
learning:'HR学习路径',
|
||||
submit:'2022-07-22 9:30',
|
||||
},
|
||||
],
|
||||
|
||||
columns: [
|
||||
{
|
||||
title: '姓名',
|
||||
dataIndex: 'name',
|
||||
key: 'name',
|
||||
},
|
||||
{
|
||||
title: '部门',
|
||||
dataIndex: 'department',
|
||||
key: 'department',
|
||||
},
|
||||
{
|
||||
title: '岗位',
|
||||
dataIndex: 'post',
|
||||
key: 'post',
|
||||
},
|
||||
{
|
||||
title: '项目',
|
||||
dataIndex: 'project',
|
||||
key: 'project',
|
||||
},
|
||||
{
|
||||
title: '学习路径',
|
||||
dataIndex: 'learning',
|
||||
key: 'learning',
|
||||
},
|
||||
{
|
||||
title: '提交时间',
|
||||
dataIndex: 'submit',
|
||||
key: 'submit',
|
||||
},
|
||||
],
|
||||
};
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss" >
|
||||
.managepage {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.up {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.header {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-bottom: 1px solid #F2F6FC;
|
||||
.text {
|
||||
font-size: 16px;
|
||||
color: #363636;
|
||||
margin-top: 23px;
|
||||
margin-left: 38px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.export {
|
||||
float: left;
|
||||
width: 130px;
|
||||
height: 40px;
|
||||
border: 1px solid #4EA6FF;
|
||||
border-radius: 8px;
|
||||
margin-top: 29px;
|
||||
margin-left: 38px;
|
||||
text-align: center;
|
||||
padding-top: 7px;
|
||||
}
|
||||
.goback {
|
||||
float: right;
|
||||
padding-right: 70px;
|
||||
//padding-top: 37px;
|
||||
position: relative;
|
||||
.return {
|
||||
display: inline-block;
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
margin-top: 17px;
|
||||
margin-right: 10px;
|
||||
background-image: url("../../assets/images/projectadd/return.png");
|
||||
}
|
||||
.returntext {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
top: 27px;
|
||||
color: #4EA6FF;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.message {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.title {
|
||||
color: #4F5156;
|
||||
font-size: 14px;
|
||||
margin-left: 38px;
|
||||
margin-top: 20px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.messagebox {
|
||||
width: 100%;
|
||||
//display: flex;
|
||||
margin-top: 20px;
|
||||
margin-left: 38px;
|
||||
margin-bottom: 20px;
|
||||
.name {
|
||||
color: #999BA3;
|
||||
font-size: 14px;
|
||||
}
|
||||
.descript {
|
||||
color: #4F5156;
|
||||
font-size:14px;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.split {
|
||||
width: 100%;
|
||||
height: 20px;
|
||||
background-color: #edf0f5;
|
||||
}
|
||||
.down {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
.tableBox {
|
||||
margin: 20px 38px 30px ;
|
||||
th.ant-table-cell {
|
||||
background-color:#EFF4FC !important;
|
||||
text-align: center;
|
||||
color: #999BA3;
|
||||
}
|
||||
td.ant-table-cell {
|
||||
text-align: center;
|
||||
}
|
||||
.ant-table-tbody
|
||||
> tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)
|
||||
> td {
|
||||
background: #f6f9fd;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@@ -59,9 +59,13 @@
|
||||
</div>
|
||||
<div class="delete">删除</div>
|
||||
</div>
|
||||
<div class="picture">
|
||||
<img class="pictureimg" src=""/>
|
||||
<div class="picture" style="position: relative">
|
||||
<img class="pictureimg" src="../../assets/images/research/picture.png"/>
|
||||
<div class="picturename">图片名称1.jpg</div>
|
||||
<img
|
||||
style="width: 20px; height: 20px;position: absolute;right: 0;top:0"
|
||||
src="../../assets/images/basicinfo/close.png"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="header">
|
||||
@@ -187,6 +191,7 @@
|
||||
}
|
||||
}
|
||||
.picture {
|
||||
width: 100px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-top: 20px;
|
||||
|
||||
@@ -69,11 +69,7 @@
|
||||
@expand="expandTable"
|
||||
:pagination="false"
|
||||
/>
|
||||
<!-- :pagination= showSizeChanger: true, showQuickJumper: true,
|
||||
hideOnSinglePage: true, pageSizeOptions: [], pageSize: pageSize, current:
|
||||
currentPage, total: tableDataTotal, -->
|
||||
</div>
|
||||
|
||||
<!-- 表格 -->
|
||||
<div :class="out ? 'out' : 'unout'">
|
||||
<div class="top">
|
||||
@@ -264,7 +260,7 @@ export default {
|
||||
<router-link to="/researchadd" class={text.record.haspub ? "activecls" : "errorCls"}>
|
||||
基础信息
|
||||
</router-link>
|
||||
<span style={{ "margin-left": "25px" }}>管理</span>
|
||||
<router-link to="/managepage" style={{ "margin-left": "25px" }}>管理</router-link>
|
||||
<span style={{ "margin-left": "25px" }}>复制</span>
|
||||
<span style={{ "margin-left": "25px" }} >撤回</span>
|
||||
<span style={{ "margin-left": "21px", "margin-right": "30px" }} >结束</span>
|
||||
|
||||
Reference in New Issue
Block a user