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
104
105
106
107
108
109
<template>
  <div class='topic_add'>
    <div class="demo_form">
      <section>
        <p
          class="label"
          data-require
        >话题</p>
        <article>
          <input
            type="text"
            v-model="name"
            class="m_inp"
            placeholder="请输入话题"
          >
        </article>
      </section>
      <section>
        <p class="label">状态</p>
        <article class="pad">
          <el-radio
            v-model="status"
            label="1"
          >启用</el-radio>
          <el-radio
            v-model="status"
            label="2"
          >禁用</el-radio>
        </article>
      </section>
    </div>
  </div>
</template>
 
<script>
export default {
  props: {
    item: {
      type: Object,
      default: () => {
        return {};
      },
    },
    door: {
      type: Object,
      default: () => {
        return {};
      },
    },
  },
  data() {
    return { name: "", status: "1" };
  },
  watch: {
    item: {
      handler() {
        this.setItem();
      },
      deep: true,
    },
    door: {
      handler(n) {
        if (n.r) {
          this.sub(n.t);
        }
      },
      deep: true,
    },
  },
  methods: {
    setItem() {
      this.name = this.item.name;
      this.status = this.item.status.toString();
    },
    sub(type) {
      let data = {
        id:this.item.id,
        name: this.name,
        status: +this.status,
      };
      this.$api.post("neighbor/editNeighborTopicByAdmin", data, () => {
        demo.toast("编辑成功");
        this.$store.dispatch("setFixed", {
          event: "del",
          type: type,
          time: Date.now(),
        });
        this.$store.dispatch("setPageReset", "/act_topic");
      });
    },
  },
  mounted() {
    this.setItem();
  },
};
</script>
<style lang='less' scoped>
.topic_add {
  section {
    margin-bottom: 12px;
  }
  article {
    width: calc(100% - 100px);
  }
  .pad {
    padding-top: 10px;
  }
}
</style>