123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415 |
- <template>
- <div class="message-body">
- <div class="message">
- <div class="con borderIrr">
- <i class="bottoml"></i>
- <i class="bottomr"></i>
- <ul class="form">
- <li>
- <span>留言人:</span>
- <div class="name">
- <sradio
- @click.native="select = 'nickName'"
- :checked="select == 'nickName'"
- class="radio"
- :name="'使用昵称'"
- />
- <sradio
- @click.native="select = 'realName'"
- :checked="select == 'realName'"
- class="radio"
- :name="'使用真实姓名'"
- />
- </div>
- </li>
- <li>
- <span>留言内容:</span>
- <div class="input">
- <textarea
- :placeholder="mseIsShow?'请输入您的留言,您的留言将直接显示':'请输入您的留言'"
- maxlength="250"
- v-model="msg"
- rows="4"
- cols="80"
- >
- </textarea>
- <span>{{ msg.length }}/250</span>
- <span class="loginwarn" v-if="!token" @click.stop="tologin"
- ><img :src="require('@/assets/images/warn.png')" alt="" />
- 请先登录后,再进行留言</span
- >
- </div>
- </li>
- </ul>
- <div>
- <div class="button primarybtn" @click="leaveMsg('', '')">提交</div>
- <div class="button" @click="msg = ''">重置</div>
- </div>
- </div>
- <div class="leaving">
- <div class="title primaryColor">
- <span
- >全部留言
- <i class="btmLine"></i>
- </span>
- </div>
- <ul class="content">
- <li v-for="(item, i) in message" :key="i">
- <div class="info">
- <span class="primaryColor">{{
- (item.isRealName ? item.realName : item.nickName) || "匿名用户"
- }}</span>
- <span>{{ item.createTime }}</span>
- </div>
- <div class="body">
- <span>{{ item.content }}</span>
- <div class="txtSameHover" @click="showComment(item, i)">
- <img
- class="xhidden"
- :src="require(`@/assets/images/xinjiang/content.png`)"
- alt=""
- />
- <img
- class="xshow"
- :src="
- require(`@/assets/images/xinjiang/content_${theme}.png`)
- "
- alt=""
- />
- <span>评论</span>
- </div>
- </div>
- <ul class="response-text" v-if="item.children">
- <li v-for="(sub, idx) in item.children" :key="idx">
- <div>{{ sub.content }}</div>
- <div>
- 来自:{{
- sub.isRealName ? sub.realName : sub.nickName
- }}
- 的评论 {{ sub.createTime }}
- </div>
- </li>
- </ul>
- <template v-if="item.showComment">
- <div class="response input">
- <textarea
- v-model="item.comment"
- rows="3"
- maxlength="250"
- cols="80"
- placeholder="请写下您的评论"
- ></textarea>
- <span>{{ item.comment.length }}/250</span>
- </div>
- <div
- class="subbutton button primarybtn"
- @click="leaveMsg(item, i)"
- >
- 提交
- </div>
- </template>
- </li>
- </ul>
- </div>
- <div v-if="!loadAll" class="loadmore" @click="loadmore">
- <span class="borderThemeStyle primaryColor">加载更多</span>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { getMsg, saveMsg,webMesCheck } from "@/config/api";
- export default {
- data() {
- return {
- msg: "",
- message: [],
- select: "nickName",
- mtotal: 0,
- mpageSize: 6,
- mcurrentPage: 1,
- loadAll: false,
- // 是否有留言权限
- mseIsShow:false
- };
- },
- watch: {
- mpageSize() {
- this.getMessage();
- },
- },
- async mounted() {
- this.getMessage();
- },
- methods: {
- tologin() {
- window.scrollTo(0, 0);
- this.$bus.$emit("showLogin", true);
- },
- loadmore() {
- this.mpageSize += this.mpageSize;
- },
- async leaveMsg(item = "", i = "") {
- let tmp = (item ? item.comment : this.msg).trim();
- if (!tmp) {
- return alert("留言不能为空");
- }
- saveMsg(
- "comment",
- {
- content: tmp,
- parentId: item.id || "",
- isRealName: Number(this.select == "realName"),
- },
- (res) => {
- if (res.code == 0) {
- this.msg = "";
- alert("留言成功");
- item && this.showComment(item, i);
- this.getMessage();
- }
- }
- );
- },
- showComment(item, i) {
- item.showComment = !item.showComment;
- item.comment = "";
- this.$set(this.message, i, item);
- },
- async getMessage() {
- if (this.loadAll) return;
- getMsg(
- {
- pageNum: this.mcurrentPage,
- pageSize: this.mpageSize,
- },
- (result) => {
- result.data.list.forEach((item) => {
- item.showComment = false;
- item.comment = "";
- });
- if (result.data.list.length == this.message.length) {
- this.loadAll = true;
- }
- this.message = result.data.list;
- this.mtotal = result.data.total;
- }
- );
- },
- },
- async created(){
- // 查看是否有留言权限
- let res = await webMesCheck()
- this.mseIsShow=res.data
- }
- };
- </script>
- <style lang="less" scoped>
- .message-body {
- max-width: 1300px;
- margin: 0 auto;
- position: relative;
- z-index: 99;
- .message {
- .con {
- width: 100%;
- padding: 30px 100px;
- .form {
- text-align: left;
- width: 100%;
- > li {
- margin-bottom: 30px;
- display: flex;
- width: 100%;
- align-items: flex-start;
- > span {
- display: inline-block;
- width: 100px;
- flex-shrink: 0;
- font-size: 20px;
- margin-right: 10px;
- text-align: right;
- }
- .name {
- .radio {
- &::before {
- border: 1px solid #707070;
- content: "";
- }
- margin-right: 50px;
- }
- }
- .input {
- flex: auto;
- width: 100%;
- position: relative;
- font-size: 0;
- > textarea {
- width: 100%;
- line-height: 2;
- color: #2d2d2d;
- font-size: 16px;
- }
- > span {
- display: inline-block;
- color: rgba(153, 153, 153, 1);
- position: absolute;
- font-size: 12px;
- bottom: 5px;
- right: 14px;
- }
- .loginwarn {
- left: 50%;
- right: auto;
- transform: translateX(-50%);
- background-color: rgba(51, 51, 51, 0.5);
- color: #fff;
- display: flex;
- align-items: center;
- bottom: 10px;
- padding: 4px;
- border-radius: 2px;
- > img {
- width: 20px;
- margin-right: 4px;
- }
- }
- }
- }
- }
- > div {
- display: flex;
- justify-content: center;
- align-items: center;
- .button {
- position: relative;
- width: 150px;
- &:first-of-type {
- margin-right: 50px;
- }
- > span {
- position: absolute;
- left: -220px;
- top: 50%;
- transform: translateY(-50%);
- color: rgba(153, 153, 153, 1);
- display: flex;
- align-items: center;
- > img {
- width: 24px;
- height: 24px;
- margin-right: 8px;
- }
- }
- }
- }
- }
- .leaving {
- margin-top: 40px;
- .title {
- text-align: left;
- font-size: 30px;
- border-bottom: 1px solid rgba(153, 153, 153, 1);
- padding-bottom: 10px;
- position: relative;
- margin-bottom: 20px;
- span {
- display: inline-block;
- min-width: 118px;
- font-size: 30px;
- position: relative;
- .btmLine {
- bottom: -13px;
- }
- }
- }
- .content {
- text-align: left;
- > li {
- margin-bottom: 10px;
- .info {
- > span {
- display: inline-block;
- font-size: 20px;
- margin-right: 10px;
- &:not(:first-of-type) {
- color: rgba(153, 153, 153, 1);
- font-size: 14px;
- }
- }
- }
- .body {
- margin: 10px 0;
- display: flex;
- justify-content: space-between;
- > span {
- width: 90%;
- word-break: break-all;
- display: inline-block;
- color: rgba(112, 112, 112, 1);
- }
- .txtSameHover {
- color: rgba(153, 153, 153, 1);
- img {
- margin-right: 10px;
- width: 16px;
- position: relative;
- top: -1px;
- }
- }
- }
- .response {
- margin-top: 10px;
- border: 1px rgba(153, 153, 153, 1) solid;
- width: 100%;
- position: relative;
- font-size: 0;
- > textarea {
- line-height: 2;
- }
- > span {
- display: inline-block;
- color: #909399;
- position: absolute;
- font-size: 12px;
- bottom: 5px;
- right: 14px;
- }
- }
- .response-text {
- border: 1px rgba(153, 153, 153, 1) solid;
- background-color: #f3f3f3;
- padding: 10px 13px;
- color: rgba(153, 153, 153, 1);
- > li {
- > div {
- &:last-of-type {
- font-size: 14px;
- text-align: right;
- margin-top: 20px;
- }
- }
- }
- }
- .subbutton {
- display: inline-block;
- text-align: center;
- margin-top: 20px;
- }
- }
- }
- }
- .loadmore {
- margin-top: 40px;
- .borderThemeStyle {
- display: inline-block;
- padding: 10px 50px;
- }
- }
- }
- }
- </style>
|