Commit 1f126ed2 authored by 罗超's avatar 罗超

1

parent fa972558
...@@ -2,32 +2,62 @@ ...@@ -2,32 +2,62 @@
<div class="appointList"> <div class="appointList">
<div class="el-card__header"> <div class="el-card__header">
<span>相亲约会记录</span> <span>相亲约会记录</span>
<div style="display: flex;flex-direction: row;align-items: center"> <div style="display: flex; flex-direction: row; align-items: center">
<el-button type="primary" class="el-button--small" @click="addAppoint">新增</el-button> <el-button type="primary" class="el-button--small" @click="addAppoint"
>新增</el-button
>
</div> </div>
</div> </div>
<div class="content"> <div class="content">
<div style="display: flex;flex-direction: row;align-items: center"> <div style="display: flex; flex-direction: row; align-items: center">
<div class="block"> <div class="block">
<div class="searchInput" style="width:200px"> <div class="searchInput" style="width: 200px">
<el-input style="display:inline-block;width:170px;height:30px" placeholder="用户姓名" <el-input
v-model="msg.UserName" size="small" @clear="getList" @keyup.enter.native="getList" clearable> style="display: inline-block; width: 170px; height: 30px"
placeholder="用户姓名"
v-model="msg.UserName"
size="small"
@clear="getList"
@keyup.enter.native="getList"
clearable
>
</el-input> </el-input>
<span @click="getList" class="el-icon-search" <span
style="color:#979dad;font-size:14px;position:relative;top:1px"></span> @click="getList"
class="el-icon-search"
style="
color: #979dad;
font-size: 14px;
position: relative;
top: 1px;
"
></span>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<div style="padding: 20px;background: #fff;"> <div style="padding: 20px; background: #fff">
<el-table :data="dataList" header-cell-class-name="headClass" style="width: 100%" border> <el-table
:data="dataList"
header-cell-class-name="headClass"
style="width: 100%"
border
>
<el-table-column prop="ManName" label="男方信息"> <el-table-column prop="ManName" label="男方信息">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="appointUserInfo"> <div class="appointUserInfo">
<div> <div>
<img :src="scope.row.ManPhoto" style="width:30px;height:30px;border-radius:50%;margin-right:5px;" /> <img
:src="scope.row.ManPhoto"
style="
width: 30px;
height: 30px;
border-radius: 50%;
margin-right: 5px;
"
/>
</div> </div>
<div style="margin-top:4px;">{{scope.row.ManName}}</div> <div style="margin-top: 4px">{{ scope.row.ManName }}</div>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
...@@ -35,131 +65,158 @@ ...@@ -35,131 +65,158 @@
<template slot-scope="scope"> <template slot-scope="scope">
<div class="appointUserInfo"> <div class="appointUserInfo">
<div> <div>
<img :src="scope.row.WoManPhoto" style="width:30px;height:30px;border-radius:50%;margin-right:5px;" /> <img
:src="scope.row.WoManPhoto"
style="
width: 30px;
height: 30px;
border-radius: 50%;
margin-right: 5px;
"
/>
</div> </div>
<div style="margin-top:4px;">{{scope.row.WoManName}}</div> <div style="margin-top: 4px">{{ scope.row.WoManName }}</div>
</div> </div>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="Time" label="时间"> <el-table-column prop="Time" label="时间"> </el-table-column>
</el-table-column> <el-table-column prop="Address" label="地点"> </el-table-column>
<el-table-column prop="Address" label="地点"> <el-table-column prop="Remark" label="备注"> </el-table-column>
</el-table-column>
<el-table-column prop="Remark" label="备注">
</el-table-column>
<el-table-column prop="CreateDate" label="创建时间" width="200"> <el-table-column prop="CreateDate" label="创建时间" width="200">
</el-table-column> </el-table-column>
<el-table-column fixed="right" label="操作" width="130"> <el-table-column fixed="right" label="操作" width="130">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tooltip class="item" effect="dark" content="编辑" placement="top"> <el-tooltip
<img src="../../assets/img/setup/edit.png" alt="" class="imgstyle" @click="Edit(scope.row)"> class="item"
effect="dark"
content="编辑"
placement="top"
>
<img
src="../../assets/img/setup/edit.png"
alt=""
class="imgstyle"
@click="Edit(scope.row)"
/>
</el-tooltip> </el-tooltip>
<el-tooltip class="item" effect="dark" content="删除" placement="top"> <el-tooltip
<img src="../../assets/img/setup/del.png" alt="" class="imgstyle" @click="delete_b(scope.row)"> class="item"
effect="dark"
content="删除"
placement="top"
>
<img
src="../../assets/img/setup/del.png"
alt=""
class="imgstyle"
@click="delete_b(scope.row)"
/>
</el-tooltip> </el-tooltip>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-pagination style="text-align:right" background @current-change="handleCurrentChange" :page-size="msg.pageSize" <el-pagination
layout="prev, pager, next" :current-page.sync="msg.pageIndex" :total="pageCount"> style="text-align: right"
background
@current-change="handleCurrentChange"
:page-size="msg.pageSize"
layout="prev, pager, next"
:current-page.sync="msg.pageIndex"
:total="pageCount"
>
</el-pagination> </el-pagination>
</div> </div>
</div> </div>
</template> </template>
<script> <script>
export default { export default {
name: "appointList", name: "appointList",
data() { data() {
return { return {
msg: { msg: {
pageIndex: 1, pageIndex: 1,
pageSize: 20, pageSize: 20,
UserId: 0, UserId: 0,
UserName: '', UserName: "",
}, },
pageCount: 0, pageCount: 0,
dataList: [], dataList: [],
} };
},
created() {
this.getList();
},
methods: {
getList() {
this.apipost("/api/Miai/GetMiaiDatingPageList", this.msg, (res) => {
if (res.data.resultCode == 1) {
this.dataList = res.data.data.pageData;
this.pageCount = res.data.data.pageCount;
} else {
this.Error(res.data.message);
}
});
}, },
created() { handleCurrentChange(val) {
this.msg.pageIndex = val;
this.getList(); this.getList();
}, },
methods: { //新增
getList() { addAppoint() {
this.apipost( this.$router.push("/editAppoint");
"/api/Miai/GetMiaiDatingPageList", this.msg, },
res => { //修改
Edit(row) {
let arr = encodeURIComponent(JSON.stringify(row));
this.$router.push({
name: "editAppoint",
query: {
arr: arr,
blank: "y",
},
});
},
//删除记录
delete_b(item) {
let that = this;
that.Confirm("是否删除?", function () {
that.apipost(
"/api/Miai/DelMiaiDatingInfo",
{
DatingId: item.Id,
},
(res) => {
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.dataList = res.data.data.pageData; that.Success(res.data.message);
this.pageCount = res.data.data.pageCount; that.getList();
} else { } else {
this.Error(res.data.message); that.Error(res.data.message);
} }
},
)
},
handleCurrentChange(val) {
this.msg.pageIndex = val;
this.getList();
},
//新增
addAppoint() {
this.$router.push('/editAppoint');
},
//修改
Edit(row) {
let arr = encodeURIComponent(JSON.stringify(row))
this.$router.push({
name: 'editAppoint',
query: {
arr: arr,
blank: "y"
} }
}); );
}, });
//删除记录
delete_b(item) {
let that = this;
that.Confirm("是否删除?", function () {
that.apipost(
"/api/Miai/DelMiaiDatingInfo", {
DatingId: item.Id
},
res => {
if (res.data.resultCode == 1) {
that.Success(res.data.message);
that.getList();
} else {
that.Error(res.data.message);
}
},
);
});
}
}, },
} },
};
</script> </script>
<style> <style>
.appointList .el-card__header { .appointList .el-card__header {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
background: #fff; background: #fff;
}
}
.appointList .content {
background: #fff;
margin-top: 10px;
padding: 15px;
box-sizing: border-box;
}
.appointUserInfo { .appointList .content {
display: flex; background: #fff;
} margin-top: 10px;
padding: 15px;
box-sizing: border-box;
}
.appointUserInfo {
display: flex;
}
</style> </style>
...@@ -253,7 +253,7 @@ ...@@ -253,7 +253,7 @@
content="放榜详情" content="放榜详情"
placement="top" placement="top"
style="margin: 0 5px" style="margin: 0 5px"
v-if="scope.row.ListState === 2 || scope.row.ListState === 3" v-if="scope.row.ListState === 3"
> >
<img <img
src="../../assets/img/userman/bangdan2.png" src="../../assets/img/userman/bangdan2.png"
...@@ -572,4 +572,9 @@ export default { ...@@ -572,4 +572,9 @@ export default {
.el-icon-arrow-down { .el-icon-arrow-down {
font-size: 12px; font-size: 12px;
} }
.imgstyle {
width: 24px;
height: 24px;
object-fit: cover;
}
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment