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
110
111
| <template>
| <div class="act_cancel">
| <section>
| <p class="label">活动负责人:</p>
| <article>{{ detail.people }}</article>
| </section>
| <section>
| <p class="label">活动名称:</p>
| <article>{{ detail.name }}</article>
| </section>
| <section>
| <p class="label">取消原因:</p>
| <article>
| <textarea cols="30" rows="10" class="m_inp" v-model="text"></textarea>
| </article>
| </section>
| </div>
| </template>
|
| <script>
| export default {
| props: {
| item: {
| type: Object,
| default: () => {
| return {};
| },
| },
| door: {
| type: Object,
| default: () => {
| return {};
| },
| },
| },
| components: {},
| data() {
| return { detail: {}, text: "" };
| },
| watch: {
| item: {
| handler() {
| this.setItem();
| },
| deep: true,
| },
| door: {
| handler(n) {
| if (n.r) {
| this.sub(n.t);
| }
| },
| deep: true,
| },
| },
| methods: {
| sub(type) {
| if (!this.text) {
| demo.toast("请输入取消原因");
| return 0;
| }
| let o = demo.copy(
| Object.assign(this.detail, { cancelReason: this.text })
| );
| this.$api.put("communityactivity/cancelactivity", o, () => {
| demo.toast("取消成功");
| this.$nextTick(() => {
| this.$store.dispatch("setFixed", {
| event: "del",
| type: type,
| time: Date.now(),
| });
| console.log(111)
| this.$store.dispatch("setPageReset", "/com_activity");
| });
| });
| },
| setItem() {
| if (this.item.id) {
| this.detail = this.item;
| } else {
| demo.toast("错误活动");
| }
| },
| },
| mounted() {
| this.setItem();
| },
| };
| </script>
| <style lang='less' scoped>
| .act_cancel {
| font-size: 14px;
| color: #333;
| section {
| display: flex;
| margin-bottom: 15px;
| .label {
| width: 100px;
| text-align: right;
| }
| article {
| width: calc(~"100% - 100px");
| }
| textarea.m_inp {
| resize: none;
| margin-bottom: 5px;
| }
| }
| }
| </style>
|
|