| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310 |
- <template>
- <div class="tab4-5">
- <div class="top">
- <div class="search">
- <el-input
- placeholder="请输入姓名"
- suffix-icon="el-icon-search"
- v-model="formData.searchKey"
- >
- </el-input>
- <span class="btn" @click="mySearch">
- <i class="el-icon-search"></i> 查 询</span
- >
- </div>
- </div>
- <!-- 内容 -->
- <div class="conten conNull" v-if="baseTxt && myArr.length === 0">
- 没有此学员!请确认后重新输入!
- </div>
- <div class="conten" v-else>
- <div
- class="row"
- v-for="item in myArr"
- :key="item.id"
- @click="lookBigImg(item)"
- >
- <img class="imgLook" :src="baseURL + item.thumb" alt="" />
- <p :title="item.name">{{ item.name }}</p>
- </div>
- </div>
- <!-- 点击领导详情 -->
- <div class="details" v-show="details">
- <div class="left">
- <div class="el-icon-arrow-left" @click="details = false"></div>
- <img :src="baseURL + txtObj.thumb" alt="" v-if="txtObj.thumb" />
- <p>{{ txtObj.name }}</p>
- </div>
- <div class="right">
- <div>
- <span>基本信息</span>
- </div>
- <p>性别:{{ txtObj.sex === "M" ? "男" : "女" }}</p>
- <p>政治面貌:{{ txtObj.politics }}</p>
- <p>学籍号:{{ txtObj.num }}</p>
- <p>专业:{{ txtObj.job }}</p>
- <div>
- <span>校园动态</span>
- </div>
- <div class="intro" v-html="txtObj.description"></div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import axios from "@/utils/request";
- import { studentList } from "@/utils/api";
- export default {
- name: "tab4-5",
- components: {},
- data() {
- // 这里存放数据
- return {
- baseTxt: false,
- details: false,
- txtObj: {},
- myArr: [],
- formData: {
- pageNum: 1,
- pageSize: 999,
- searchKey: "",
- },
- baseURL: "",
- };
- },
- // 监听属性 类似于data概念
- computed: {},
- // 监控data中的数据变化
- watch: {},
- // 方法集合
- methods: {
- //点击图片,查看详情
- lookBigImg(val) {
- this.details = true;
- this.txtObj = val;
- },
- mySearch() {
- // console.log("点击了搜索");
- if (this.formData.searchKey.trim() === "") {
- this.myArr = [];
- this.baseTxt = false;
- return;
- }
- // return this.$message.warning("不能为空!");
- this.formData.pageNum = 1;
- this.studentList(this.formData);
- },
- // 封装获取列表函数
- async studentList(data) {
- const res = await studentList(data);
- this.total = res.data.total;
- this.myArr = res.data.records;
- this.baseTxt = true;
- },
- },
- // 生命周期 - 创建完成(可以访问当前this实例)
- created() {
- // 获取服务器前缀地址
- this.baseURL = axios.defaults.baseURL;
- // this.studentList(this.formData);
- },
- // 生命周期 - 挂载完成(可以访问DOM元素)
- mounted() {},
- beforeCreate() {}, // 生命周期 - 创建之前
- beforeMount() {}, // 生命周期 - 挂载之前
- beforeUpdate() {}, // 生命周期 - 更新之前
- updated() {}, // 生命周期 - 更新之后
- beforeDestroy() {}, // 生命周期 - 销毁之前
- destroyed() {}, // 生命周期 - 销毁完成
- activated() {}, // 如果页面有keep-alive缓存功能,这个函数会触发
- };
- </script>
- <style lang='less' scoped>
- /deep/::-webkit-scrollbar-thumb {
- background-color: #b9412e !important;
- outline: 1px solid #b9412e !important;
- outline-offset: 0;
- }
- .conNull {
- display: flex;
- font-size: 30px;
- align-items: center;
- justify-content: center;
- color: #b9412e !important;
- }
- .tab4-5 {
- /*修改提示文字的颜色*/
- /deep/input::-webkit-input-placeholder {
- /* WebKit browsers */
- color: #b9412e;
- }
- /deep/input:-moz-placeholder {
- /* Mozilla Firefox 4 to 18 */
- color: #b9412e;
- }
- /deep/input::-moz-placeholder {
- /* Mozilla Firefox 19+ */
- color: #b9412e;
- }
- /deep/input:-ms-input-placeholder {
- /* Internet Explorer 10+ */
- color: #b9412e;
- }
- // position: relative;
- width: 100%;
- height: 750px;
- min-width: 1500px;
- color: black;
- .top {
- height: 100px;
- position: relative;
- width: 100%;
- text-align: center;
- color: #b9412e;
- font-size: 26px;
- font-weight: 700;
- .search {
- /deep/.el-input__inner {
- border-radius: 40px;
- border: 1px solid #b9412e;
- }
- width: 500px;
- left: 50%;
- transform: translateX(-50%);
- bottom: 0px;
- position: absolute;
- .btn {
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- z-index: 999;
- background-color: #b9412e;
- border-radius: 40px;
- cursor: pointer;
- position: absolute;
- right: -20px;
- top: 3px;
- height: 40px;
- width: 80px;
- /deep/.el-icon-search {
- color: #fff;
- font-weight: 400;
- font-size: 16px;
- }
- }
- }
- }
- .conten {
- margin-top: 50px;
- min-width: 1556px;
- height: 600px;
- display: flex;
- flex-wrap: wrap;
- justify-content: center;
- overflow-y: auto;
- .row {
- cursor: pointer;
- margin: 20px 64px 10px 0;
- width: 260px;
- height: 316px;
- & > img {
- object-fit: cover;
- border: 2px solid #b9412e;
- width: 260px;
- height: 280px;
- }
- & > p {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- font-size: 18px;
- color: #b9412e;
- margin-top: 12px;
- text-align: center;
- }
- }
- // .row:nth-of-type(5n) {
- // margin-right: 0;
- // }
- }
- .paging {
- position: absolute;
- left: 50%;
- bottom: 20px;
- transform: translateX(-50%);
- }
- .details {
- background-color: #fff;
- z-index: 9999;
- position: absolute;
- right: 0;
- top: 0;
- display: flex;
- // width: calc(100% - 160px);
- width: 100%;
- height: 100%;
- padding: 0px 0 0 80px;
- color: #707070;
- .left {
- margin-right: 100px;
- padding-top: 50px;
- width: 200px;
- height: auto;
- & > div {
- margin-left: -12px;
- cursor: pointer;
- font-size: 50px;
- margin-bottom: 30px;
- }
- & > img {
- width: 200px;
- height: 230px;
- object-fit: cover;
- }
- & > P {
- margin-top: 8px;
- text-align: center;
- }
- }
- .right {
- flex: 1;
- padding-top: 100px;
- & > div {
- margin-top: 30px;
- width: 1000px;
- border-bottom: 1px solid #afafaf;
- & > span {
- transform: translateY(2px);
- width: 105px;
- border-bottom: 4px solid #b9412e;
- display: block;
- height: 50px;
- font-size: 26px;
- font-weight: 700;
- color: #b9412e;
- }
- }
- & > p {
- margin: 15px 0;
- font-size: 16px;
- }
- .intro {
- padding-top: 15px;
- margin-top: 0px;
- height: 450px;
- overflow-y: auto;
- border-bottom: none;
- font-size: 16px;
- /deep/p {
- margin: 10px 0;
- }
- }
- }
- }
- }
- </style>
|