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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
| <template>
| <div class="workPeople_add">
| <section class="sec">
| <p class="label">姓名:</p>
| <article>
| <el-input
| size="small"
| v-model="name"
| maxlength="12"
| placeholder="请输入名字"
| ></el-input>
| </article>
| </section>
| <section class="sec">
| <p class="label">手机号:</p>
| <article>
| <el-input
| size="small"
| v-model="phone"
| maxlength="11"
| placeholder="请输入手机号"
| ></el-input>
| </article>
| </section>
| <section class="sec">
| <p class="label">职务:</p>
| <article>
| <el-input
| size="small"
| v-model="position"
| maxlength="20"
| placeholder="请输入职务"
| ></el-input>
| </article>
| </section>
| <!---->
| <!-- <section class="sec">
| <p class="label">岗位职责:</p>
| <article>
| <el-input
| size="small"
| type="textarea"
| v-model="jobResponsibilities"
| maxlength="100"
| placeholder="请填写TA主要负责的工作(100字内),例:主持居委会日常工作,推进辖区民主自治"
| ></el-input>
| </article>
| </section> -->
| <!---->
| <section class="sec">
| <p class="label">上传照片:</p>
| <article>
| <div class="avatar">
| <v-upload @path="onPath" :pic="image"></v-upload>
| </div>
| </article>
| </section>
| </div>
| </template>
|
| <script>
| import vUpload from "com/upload/upload";
| export default {
| props: {
| item: {
| type: Object,
| default: () => {
| return {};
| },
| },
| door: {
| type: Object,
| default: () => {
| return {};
| },
| },
| },
| components: { vUpload },
| data() {
| return {
| id: "",
| refId: "",
| image: "",
| name: "",
| position: "",
| phone: "",
| jobResponsibilities: "", //岗位职责
| };
| },
| watch: {
| item: {
| handler() {
| this.setItem();
| },
| deep: true,
| },
| door: {
| handler(n) {
| if (n.r) {
| this.sub(n.t);
| }
| },
| deep: true,
| },
| },
| methods: {
| onPath(v) {
| this.image = v;
| },
| setValue(i, n, j, jo, phone) {
| this.image = i;
| this.name = n;
| this.position = j;
| this.jobResponsibilities = jo;
| this.phone = phone;
| },
| setItem() {
| this.refId = this.item.refId;
| if (this.item.id) {
| this.setValue(
| this.item.image,
| this.item.name,
| this.item.position,
| this.item.jobResponsibilities,
| this.item.phone
| );
| } else {
| this.setValue("", "", "", "");
| }
| },
| sub(type) {
| let method = "post",
| requestUrl = "add";
| let os = {
| phone: this.phone,
| id: this.item.id,
| position: this.position,
| name: this.name,
| image: this.image,
| jobResponsibilities: this.jobResponsibilities,
| refId: this.refId,
| };
| if (os.id) {
| method = "put";
| requestUrl = "update";
| }
| this.$api[method](`comPropertyWorker/${requestUrl}`, os, (e) => {
| demo.toast((os.id ? "编辑" : "新增") + "成功");
| this.id = "";
| this.refId = "";
| this.image = "";
| this.name = "";
| this.position = "";
| this.phone = "";
| this.jobResponsibilities = ""; //岗位职责
| this.$nextTick(() => {
| this.$store.dispatch("setFixed", {
| event: "del",
| type: type,
| time: Date.now(),
| });
| this.$store.dispatch("setPageReset", "/workPeople");
| });
| });
| },
| },
| mounted() {
| this.setItem();
| },
| };
| </script>
| <style lang='less' scoped>
| .service_add {
| }
| </style>
|
|