Compare commits

...

1 Commits

Author SHA1 Message Date
wxz 026fe704d0 fix:服务模块相关的问题 1 year ago
  1. 2
      src/views/modules/communityService/fuwuzhaoren/index.vue
  2. 2
      src/views/modules/communityService/gangweizhaoren/addForm.vue
  3. 4
      src/views/modules/communityService/gxxq/addForm.vue
  4. 2
      src/views/modules/communityService/jinengzhaoren/addForm.vue
  5. 2
      src/views/modules/communityService/measure/index.vue
  6. 2
      src/views/modules/communityService/wennuanzhaoren/addForm.vue

2
src/views/modules/communityService/fuwuzhaoren/index.vue

@ -213,7 +213,7 @@
label="服务状态" label="服务状态"
:show-overflow-tooltip="true"> :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{scope.row.serviceStatus==='in_service'?'进行中':'已完成'}}</span> <span>{{scope.row.serviceStatus==='in_service'?'进行中':(scope.row.serviceStatus==='completed' ? '已完成' : '已取消')}}</span>
</template> </template>
</el-table-column> </el-table-column>

2
src/views/modules/communityService/gangweizhaoren/addForm.vue

@ -242,7 +242,7 @@ export default {
checkStrictly: true, checkStrictly: true,
emitPath: false, emitPath: false,
}, },
serviceStatusOptions: [{ 'label': '进行中', 'value': 'in_service' }, { 'label': '已完成', 'value': 'completed' }, { 'label': '取消', 'value': 'cancel' }], serviceStatusOptions: [{ 'label': '进行中', 'value': 'in_service' }, { 'label': '已完成', 'value': 'completed' }],
keyWords: "", keyWords: "",
formData: { formData: {
categoryCode: [], categoryCode: [],

4
src/views/modules/communityService/gxxq/addForm.vue

@ -117,8 +117,8 @@
<el-option <el-option
v-for="item in serviceOptiondList" v-for="item in serviceOptiondList"
:key="item.id" :key="item.id"
:label="item.name" :label="item.label"
:value="item.label" :value="item.id"
> >
</el-option> </el-option>
</el-select> </el-select>

2
src/views/modules/communityService/jinengzhaoren/addForm.vue

@ -241,7 +241,7 @@ export default {
checkStrictly: true, checkStrictly: true,
emitPath: false, emitPath: false,
}, },
serviceStatusOptions: [{ 'label': '进行中', 'value': 'in_service' }, { 'label': '已完成', 'value': 'completed' }, { 'label': '取消', 'value': 'cancel' }], serviceStatusOptions: [{ 'label': '进行中', 'value': 'in_service' }, { 'label': '已完成', 'value': 'completed' }],
keyWords: "", keyWords: "",
formData: { formData: {
categoryCode: [], categoryCode: [],

2
src/views/modules/communityService/measure/index.vue

@ -1125,6 +1125,8 @@ export default {
const _form = { const _form = {
...this.form, ...this.form,
}; };
// []
_form.attachments = [];
await this.$http await this.$http
.post("/governance/userdemand/add", _form) .post("/governance/userdemand/add", _form)
.then(({ data: res }) => { .then(({ data: res }) => {

2
src/views/modules/communityService/wennuanzhaoren/addForm.vue

@ -242,7 +242,7 @@ export default {
checkStrictly: true, checkStrictly: true,
emitPath: false, emitPath: false,
}, },
serviceStatusOptions: [{ 'label': '进行中', 'value': 'in_service' }, { 'label': '已完成', 'value': 'completed' }, { 'label': '取消', 'value': 'cancel' }], serviceStatusOptions: [{ 'label': '进行中', 'value': 'in_service' }, { 'label': '已完成', 'value': 'completed' }],
keyWords: "", keyWords: "",
formData: { formData: {
categoryCode: [], categoryCode: [],

Loading…
Cancel
Save