Browse Source

111

shibei_master
jiangyy 3 years ago
parent
commit
212a1c0eb6
  1. 12
      src/views/modules/communityService/fuwujilu/addForm.vue
  2. 11
      src/views/modules/shequzhili/event/cpts/process-form-demand.vue

12
src/views/modules/communityService/fuwujilu/addForm.vue

@ -122,10 +122,10 @@
style="display: block">
<el-input class="item_width_1"
type="textarea"
maxlength="500"
maxlength="1000"
show-word-limit
:rows="3"
placeholder="请输入备注,不超过500字"
placeholder="请输入备注,不超过1000字"
v-model="formData.remark"></el-input>
</el-form-item>
<el-form-item label="直接反馈"
@ -162,10 +162,10 @@
style="display: block">
<el-input class="item_width_1"
type="textarea"
maxlength="500"
maxlength="1000"
show-word-limit
:rows="3"
placeholder="请输入服务目标,不超过500字"
placeholder="请输入服务目标,不超过1000字"
v-model="feedbackFormData.serviceGoal"></el-input>
</el-form-item>
@ -175,10 +175,10 @@
style="display: block">
<el-input class="item_width_1"
type="textarea"
maxlength="500"
maxlength="1000"
show-word-limit
:rows="3"
placeholder="请输入服务效果,不超过500字"
placeholder="请输入服务效果,不超过1000字"
v-model="feedbackFormData.serviceEffect"></el-input>
</el-form-item>

11
src/views/modules/shequzhili/event/cpts/process-form-demand.vue

@ -470,9 +470,14 @@ export default {
handleServiceChange (type, val) {
if (val === "social_org") {
if (type === "add") this.getServiceuserList(val, "add_demand");
else this.getServiceuserList(val, "query_demand");
} else this.getServiceuserList(val, "");
if (type === "add") {
this.getServiceuserList(val, "add_demand");
} else {
this.getServiceuserList(val, "query_demand");
}
} else {
this.getServiceuserList(val, "");
}
},
async getServiceuserList (serviceType, query) {

Loading…
Cancel
Save