Browse Source

Merge branch 'dev_org_staff' into dev

feature
YUJT 3 years ago
parent
commit
126fc5f194
  1. 2
      src/views/modules/base/organization/organization.vue
  2. 4
      src/views/modules/shequzhili/event/cpts/event-info.vue
  3. 10
      src/views/modules/shequzhili/event/cpts/process-form-demand.vue
  4. 4
      src/views/modules/shequzhili/event/eventList.vue
  5. 12
      src/views/modules/visual/basicinfo/basicInfoMain.vue

2
src/views/modules/base/organization/organization.vue

@ -1897,7 +1897,7 @@ export default {
const url = '/gov/org/agency/agencydetail' const url = '/gov/org/agency/agencydetail'
let params = { let params = {
agencyId: localStorage.getItem('agencyId') agencyId: this.currentAgencyId
} }
const { data, code, msg } = await requestPost(url,params) const { data, code, msg } = await requestPost(url,params)

4
src/views/modules/shequzhili/event/cpts/event-info.vue

@ -110,8 +110,8 @@
</div> </div>
<div class="detail" <div class="detail"
v-if="item.processName == '处理响应' && item.assistanceUnitName"> v-if="item.assistanceUnitName">
<div class="detail-field"> </div> <div class="detail-field">协办单位</div>
<div class="detail-value"> <div class="detail-value">
<fold-text :row="3">{{ item.assistanceUnitName }}</fold-text> <fold-text :row="3">{{ item.assistanceUnitName }}</fold-text>
</div> </div>

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

@ -52,7 +52,7 @@
</el-date-picker> </el-date-picker>
</el-form-item> </el-form-item>
<el-form-item label="服务人" <el-form-item label="需求人"
label-width="150px" label-width="150px"
prop="demandUserName"> prop="demandUserName">
<el-input v-model="formData.demandUserName" <el-input v-model="formData.demandUserName"
@ -187,9 +187,9 @@ function iniFmData () {
reportUserName: '',// reportUserName: '',//
reportUserMobile: '',// reportUserMobile: '',//
reportTime: '',// reportTime: '',//
demandUserId: '',// user.idic_resi_user.id demandUserId: '',// user.idic_resi_user.id
demandUserName: '',// demandUserName: '',//
demandUserMobile: '',// demandUserMobile: '',//
wantServiceTime: '',// wantServiceTime: '',//
serviceType: '', serviceType: '',
serverId: '', serverId: '',
@ -249,7 +249,7 @@ export default {
{ required: true, message: "服务时间不能为空", trigger: "blur" }, { required: true, message: "服务时间不能为空", trigger: "blur" },
], ],
demandUserName: [ demandUserName: [
{ required: true, message: "服务人不能为空", trigger: "blur" }, { required: true, message: "需求人不能为空", trigger: "blur" },
], ],
demandUserMobile: [ demandUserMobile: [
{ required: true, message: "联系电话不能为空", trigger: "blur" }, { required: true, message: "联系电话不能为空", trigger: "blur" },

4
src/views/modules/shequzhili/event/eventList.vue

@ -237,7 +237,7 @@
<template slot-scope="scope"> <template slot-scope="scope">
<span v-if="scope.row.status==='processing'">处理中</span> <span v-if="scope.row.status==='processing'">处理中</span>
<span v-else-if="scope.row.status==='closed_case'">办结</span> <span v-else-if="scope.row.status==='closed_case'">完成</span>
<span v-else>--</span> <span v-else>--</span>
</template> </template>
</el-table-column> </el-table-column>
@ -609,7 +609,7 @@ export default {
this.tableData.forEach(item => { this.tableData.forEach(item => {
if (item.operationType === '2') { if (item.operationType === '2') {
item.operationTypeShow = '已转需求' item.operationTypeShow = '已转服务'
} }
if (item.operationType === '1') { if (item.operationType === '1') {
item.operationTypeShow = '已立项' item.operationTypeShow = '已立项'

12
src/views/modules/visual/basicinfo/basicInfoMain.vue

@ -172,8 +172,8 @@ let iconSource; // icon
let polygonSource;// let polygonSource;//
let select;// let select;//
let xoffset = 0.0051 let xoffset = 0
let yoffset = 0.0002 let yoffset = 0
//url //url
@ -634,10 +634,10 @@ const vueGis = {
coorArray.forEach((item, index) => { coorArray.forEach((item, index) => {
if (index % 2 == 0) {// if (index % 2 == 0) {//
item = (parseFloat(item) + xoffset) + '' item = (parseFloat(item) + parseFloat(xoffset)) + ''
itemArray.push(item) itemArray.push(item)
} else {// } else {//
item = (parseFloat(item) + yoffset) + '' item = (parseFloat(item) + parseFloat(yoffset)) + ''
itemArray.push(item) itemArray.push(item)
polygonArray.push(itemArray) polygonArray.push(itemArray)
@ -703,12 +703,12 @@ const vueGis = {
coorArray.forEach((item, index) => { coorArray.forEach((item, index) => {
// itemArray.push(item) // itemArray.push(item)
if (index % 2 == 0) {// if (index % 2 == 0) {//
item = (parseFloat(item) + xoffset) + '' item = (parseFloat(item) + parseFloat(xoffset)) + ''
itemArray.push(item) itemArray.push(item)
} else {// } else {//
item = (parseFloat(item) + yoffset) + '' item = (parseFloat(item) + parseFloat(yoffset)) + ''
itemArray.push(item) itemArray.push(item)
polygonArray.push(itemArray) polygonArray.push(itemArray)
itemArray = [] itemArray = []

Loading…
Cancel
Save