hejianhao
2025-04-16 dab2d210ca06c1faa514c6388fbd5de1ab355360
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<template>
  <div class="talk_send">
    <section class="sec">
      <p class="label" data-require>回复内容:</p>
      <article>
        <el-input
          maxlength="100"
          show-word-limit
          placeholder="请输入您的回复内容"
          type="textarea"
          v-model="val"
        ></el-input>
      </article>
    </section>
  </div>
</template>
 
<script>
export default {
  props: {
    item: {
      type: Object,
      default: () => {
        return {};
      },
    },
    door: {
      type: Object,
      default: () => {
        return {};
      },
    },
  },
  components: {},
  data() {
    return { val: "", url: '' };
  },
  watch: {
    item: {
      handler() {
        this.setItem();
      },
      deep: true,
    },
    door: {
      handler(n) {
        if (n.r) {
          this.sub(n.t);
        }
      },
      deep: true,
    },
  },
  methods: {
    setItem() {
      console.log(this.$route.params.id)
    },
    sub(type) {
 
      if (this.val.trim() === "") {
        demo.toast("请输入回复内容");
        return 0;
      }
      let os = {
        comment: this.val,
        id: this.$route.params.id ? this.item.id : '',
        discussId: this.$route.params.id ? '' : this.item.id,
        isAuthor: this.item.isAuthor,
        isTopping: this.item.isTopping,
        parentId: 0,
        userId: this.item.userId,
      };
      // id 有值 评论列表回复  否则就是议事投票回复
      if (this.$route.params.id) {
        this.url = "discusscommentback";
      } else {
        this.url = "addDiscussComment";
      }
      this.$api.post(this.url, os, (e) => {
        demo.toast("回复成功");
        this.setItem();
        this.$nextTick(() => {
          this.$store.dispatch("setFixed", {
            event: "del",
            type: type,
            time: Date.now(),
          });
        }),
          this.$store.dispatch("setPageReset", this.item.url || "/act_talk");
      });
 
 
    },
  },
  mounted() {
    this.setItem();
  },
};
</script>
<style lang='less' scoped>
.talk_send {
}
</style>