|
|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<xy-dialog ref="dialog" :is-show.sync="isShow" type="form" :title="type === 'add' ? '新增检查' : '编辑检查'" :form="form"
|
|
|
|
|
<xy-dialog ref="dialog" :is-show.sync="isShow" type="form" :title="type === 'add' ? '检查问题' : '编辑问题'" :form="form"
|
|
|
|
|
:rules="rules" @submit="submit">
|
|
|
|
|
<template v-slot:mission_id>
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
@ -17,34 +17,20 @@
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:date>
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
<div class="xy-table-item-label">
|
|
|
|
|
<div class="xy-table-item-label" style="font-weight: bold;">
|
|
|
|
|
<span style="color: red;font-weight: 600;padding-right: 4px;">*</span>检查日期:
|
|
|
|
|
</div>
|
|
|
|
|
<div class="xy-table-item-content">
|
|
|
|
|
<el-date-picker style="width: 400px;" v-model="form.date" format="yyyy-MM-dd HH:mm" value-format="yyyy-MM-dd HH:mm" type="datetime"
|
|
|
|
|
placeholder="选择检查日期">
|
|
|
|
|
<el-date-picker style="width: 400px;" v-model="form.date" format="yyyy-MM-dd"
|
|
|
|
|
value-format="yyyy-MM-dd" type="date" placeholder="选择检查日期">
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:siteName>
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
<div class="xy-table-item-label">
|
|
|
|
|
<span style="color: red;font-weight: 600;padding-right: 4px;">*</span>检查地点:
|
|
|
|
|
</div>
|
|
|
|
|
<div class="xy-table-item-content">
|
|
|
|
|
<el-select @change="changeSite" v-model="form.siteName" filterable clearable placeholder="请选择检查地点" style="width: 400px;">
|
|
|
|
|
<el-option v-for="item in siteList" :key="-1" label="选择地图位置" :value="-1">
|
|
|
|
|
</el-option>
|
|
|
|
|
<el-option v-for="item in siteList" :key="item.id" :label="item.name" :value="item.id">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<template v-slot:ask_id>
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
<div class="xy-table-item-label">
|
|
|
|
|
<div class="xy-table-item-label" style="font-weight: bold;">
|
|
|
|
|
<span style="color: red;font-weight: 600;padding-right: 4px;">*</span>问题类型:
|
|
|
|
|
</div>
|
|
|
|
|
<div class="xy-table-item-content">
|
|
|
|
|
@ -55,20 +41,58 @@
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:ask_department>
|
|
|
|
|
<template v-slot:siteName>
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
<div class="xy-table-item-label" style="font-weight: bold;">
|
|
|
|
|
<span style="color: red;font-weight: 600;padding-right: 4px;">*</span>检查地点:
|
|
|
|
|
</div>
|
|
|
|
|
<div class="xy-table-item-content">
|
|
|
|
|
<!-- <el-select @change="changeSite" v-model="form.siteName" filterable clearable placeholder="请选择检查地点" style="width: 400px;">
|
|
|
|
|
<el-option label="选择地图位置" :value="-1">
|
|
|
|
|
</el-option>
|
|
|
|
|
<el-option v-for="item in siteList" :key="item.id" :label="item.name" :value="item.id">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select> -->
|
|
|
|
|
<el-cascader v-model="form.siteName" v-if="showCasc" clearable :options="siteList" :props="{'label':'name','value':'id'}"
|
|
|
|
|
placeholder="请选择检查地点" style="width: 290px;margin-right: 10px;" @change="changeSite"></el-cascader>
|
|
|
|
|
<el-input v-model="form.siteName" v-if="!showCasc" type='text' placeholder="请选择检查地点" clearable
|
|
|
|
|
style="width: 290px;margin-right: 10px;" @focus="$refs.maps.box = true"></el-input>
|
|
|
|
|
<el-button type="primary" v-if="showCasc" @click="$refs.maps.box = true;showCasc=false;form.siteName=''">选择地图</el-button>
|
|
|
|
|
<el-button type="primary" v-if="!showCasc" @click="showCasc = true;form.siteName=''">选择站点</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:up_admin_id>
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
<div class="xy-table-item-label">
|
|
|
|
|
<span style="color: red;font-weight: 600;padding-right: 4px;"></span>建议科室:
|
|
|
|
|
<span style="color: red;font-weight: 600;padding-right: 4px;"></span>上报人:
|
|
|
|
|
</div>
|
|
|
|
|
<div class="xy-table-item-content">
|
|
|
|
|
<el-input v-model="form.ask_department" type='text' placeholder="请输入建议科室" clearable
|
|
|
|
|
style="width: 400px;"></el-input>
|
|
|
|
|
<el-select v-model="form.up_admin_id" filterable allow-create clearable placeholder="请选择上报人" style="width: 400px;">
|
|
|
|
|
<el-option v-for="item in userdata" :key="item.id" :label="item.name" :value="item.id">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:ask_introduce>
|
|
|
|
|
<template v-slot:ask_department>
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
<div class="xy-table-item-label">
|
|
|
|
|
<span style="color: red;font-weight: 600;padding-right: 4px;"></span>建议整改科室:
|
|
|
|
|
</div>
|
|
|
|
|
<div class="xy-table-item-content">
|
|
|
|
|
<el-select @change="changeDepartment" v-model="form.ask_department" filterable allow-create clearable placeholder="请选择或输入建议整改科室" style="width: 400px;">
|
|
|
|
|
<el-option v-for="item in depList" :key="item.id" :label="item.name" :value="item.name">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
<!-- <el-input v-model="form.ask_department" type='text' placeholder="请输入建议科室" clearable
|
|
|
|
|
style="width: 400px;"></el-input> -->
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<template v-slot:ask_introduce>
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
<div class="xy-table-item-label" style="font-weight: bold;">
|
|
|
|
|
<span style="color: red;font-weight: 600;padding-right: 4px;">*</span>问题描述:
|
|
|
|
|
</div>
|
|
|
|
|
<div class="xy-table-item-content">
|
|
|
|
|
@ -87,27 +111,27 @@
|
|
|
|
|
style="width: 400px;"></el-input>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<template v-slot:file_ids>
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
<div class="xy-table-item-label">
|
|
|
|
|
<span style="color: red;font-weight: 600;padding-right: 4px;"></span>附件:
|
|
|
|
|
</div>
|
|
|
|
|
<div class="xy-table-item-content">
|
|
|
|
|
<el-upload :action="action" class='upload-demo' list-type="picture-card" :file-list="pictureList"
|
|
|
|
|
ref="pictureUpload" style="width:600px" :auto-upload="true" :data="uploadOther"
|
|
|
|
|
:on-preview="handlePictureCardPreview" :on-success="handlesuccess" :on-remove="handleRemove">
|
|
|
|
|
<i class="el-icon-plus"></i>
|
|
|
|
|
</el-upload>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<template v-slot:file_ids>
|
|
|
|
|
<div class="xy-table-item">
|
|
|
|
|
<div class="xy-table-item-label">
|
|
|
|
|
<span style="color: red;font-weight: 600;padding-right: 4px;"></span>附件:
|
|
|
|
|
</div>
|
|
|
|
|
<div class="xy-table-item-content">
|
|
|
|
|
<el-upload :action="action" class='upload-demo' list-type="picture-card" :file-list="pictureList"
|
|
|
|
|
ref="pictureUpload" style="width:600px" :auto-upload="true" :data="uploadOther"
|
|
|
|
|
:on-preview="handlePictureCardPreview" :on-success="handlesuccess" :on-remove="handleRemove">
|
|
|
|
|
<i class="el-icon-plus"></i>
|
|
|
|
|
</el-upload>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</xy-dialog>
|
|
|
|
|
<el-dialog :visible.sync="showPic">
|
|
|
|
|
<img width="100%" :src="showPicUrl" alt="">
|
|
|
|
|
</el-dialog>
|
|
|
|
|
<avue-input-map ref="maps" :params="mapparams" placeholder="请选择地图" v-model="mapform"></avue-input-map>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
<avue-input-map ref="maps" :params="mapparams" placeholder="请选择地图" v-model="mapform"></avue-input-map>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
@ -150,31 +174,38 @@
|
|
|
|
|
id: '',
|
|
|
|
|
uploadOther: {
|
|
|
|
|
token: ""
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
login_id:'',
|
|
|
|
|
showCasc:true,
|
|
|
|
|
action: `${process.env.VUE_APP_BASE_API}api/admin/upload-file`,
|
|
|
|
|
pictureList: [],
|
|
|
|
|
showPic: false,
|
|
|
|
|
showPicUrl: '',
|
|
|
|
|
unitList: [],
|
|
|
|
|
siteList: [],
|
|
|
|
|
siteListArr: [],
|
|
|
|
|
askList: [],
|
|
|
|
|
mission_id:'',
|
|
|
|
|
mapparams: {
|
|
|
|
|
zoom: 11,
|
|
|
|
|
depList:[],
|
|
|
|
|
mission_id: '',
|
|
|
|
|
mapparams: {
|
|
|
|
|
zoom: 11,
|
|
|
|
|
},
|
|
|
|
|
userdata:[],
|
|
|
|
|
mapform: [],
|
|
|
|
|
form: {
|
|
|
|
|
mission_id: '',
|
|
|
|
|
date: '',
|
|
|
|
|
site_id: '',
|
|
|
|
|
siteName:'',
|
|
|
|
|
address:'',
|
|
|
|
|
lat:'',
|
|
|
|
|
lon:'',
|
|
|
|
|
ask_id: '',
|
|
|
|
|
ask_department:'',
|
|
|
|
|
date: '',
|
|
|
|
|
ask_id: '',
|
|
|
|
|
site_id: '',
|
|
|
|
|
siteName: '',
|
|
|
|
|
address: '',
|
|
|
|
|
lat: '',
|
|
|
|
|
lon: '',
|
|
|
|
|
up_admin_id:"",
|
|
|
|
|
ask_department: '',
|
|
|
|
|
accept_department_ids:[],
|
|
|
|
|
ask_introduce: '',
|
|
|
|
|
tips: '',
|
|
|
|
|
tips: '',
|
|
|
|
|
file_ids: [],
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
@ -194,21 +225,23 @@
|
|
|
|
|
ask_id: [{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请选择问题类型'
|
|
|
|
|
}],
|
|
|
|
|
ask_introduce: [{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入问题描述'
|
|
|
|
|
}],
|
|
|
|
|
ask_introduce: [{
|
|
|
|
|
required: true,
|
|
|
|
|
message: '请输入问题描述'
|
|
|
|
|
}]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.uploadOther.token = getToken();
|
|
|
|
|
created() {
|
|
|
|
|
// document.getElementById('casc').click()
|
|
|
|
|
this.uploadOther.token = getToken();
|
|
|
|
|
this.loadDeptOptions()
|
|
|
|
|
this.getUnit()
|
|
|
|
|
this.getAddress()
|
|
|
|
|
this.getAsk()
|
|
|
|
|
// this.loadDeptOptions()
|
|
|
|
|
// this.loadUser()
|
|
|
|
|
this.loadUser()
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
// 获取 专项任务
|
|
|
|
|
@ -216,29 +249,59 @@
|
|
|
|
|
const res = await listunit({
|
|
|
|
|
page: 1,
|
|
|
|
|
page_size: 9999
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
this.unitList = res.data
|
|
|
|
|
},
|
|
|
|
|
changeSite(e){
|
|
|
|
|
console.log(e)
|
|
|
|
|
if(e==-1){
|
|
|
|
|
this.form.site_id = ''
|
|
|
|
|
this.form.address = ''
|
|
|
|
|
this.form.lat = ''
|
|
|
|
|
this.form.lon = ''
|
|
|
|
|
this.form.siteName = ''
|
|
|
|
|
this.$refs.maps.box = true
|
|
|
|
|
loadUser() {
|
|
|
|
|
listCommonuser({
|
|
|
|
|
page_size: 999
|
|
|
|
|
}).
|
|
|
|
|
then((res) => {
|
|
|
|
|
this.userdata = res.data?res.data.reverse():[];
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
console.log(error)
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
loadDeptOptions() {
|
|
|
|
|
listdept().
|
|
|
|
|
then((res) => {
|
|
|
|
|
this.depList = res;
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
console.log(error)
|
|
|
|
|
reject(error)
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
changeSite(e) {
|
|
|
|
|
console.log("this.siteListArr", this.siteListArr)
|
|
|
|
|
console.log("e", e[1])
|
|
|
|
|
this.siteListArr.map(item => {
|
|
|
|
|
if (item.id == e[1]) {
|
|
|
|
|
this.form.site_id = item.id
|
|
|
|
|
this.form.address = item.address
|
|
|
|
|
this.form.lat = item.lat
|
|
|
|
|
this.form.lon = item.lon
|
|
|
|
|
// this.form.siteName = item.name
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
console.log("this.form.siteName", this.form.siteName)
|
|
|
|
|
// if(e[0]!=undefined){
|
|
|
|
|
// this.form.site_id = ''
|
|
|
|
|
// this.form.address = ''
|
|
|
|
|
// this.form.lat = ''
|
|
|
|
|
// this.form.lon = ''
|
|
|
|
|
// this.form.siteName = ''
|
|
|
|
|
// // this.$refs.maps.box = true
|
|
|
|
|
// }else{
|
|
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
},
|
|
|
|
|
changeDepartment(e){
|
|
|
|
|
console.log("e",e)
|
|
|
|
|
if(typeof(e)==='number'){
|
|
|
|
|
this.form.accept_department_ids.push(e)
|
|
|
|
|
}else{
|
|
|
|
|
this.siteList.map(item=>{
|
|
|
|
|
if(item.id==e){
|
|
|
|
|
this.form.site_id = item.id
|
|
|
|
|
this.form.address = item.address
|
|
|
|
|
this.form.lat = item.lat
|
|
|
|
|
this.form.lon = item.lon
|
|
|
|
|
this.form.siteName = item.name
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
this.form.accept_department_ids = []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
async getAddress() {
|
|
|
|
|
@ -246,38 +309,66 @@
|
|
|
|
|
page: 1,
|
|
|
|
|
page_size: 9999
|
|
|
|
|
})
|
|
|
|
|
this.siteList = res.data
|
|
|
|
|
this.siteListArr = res.data
|
|
|
|
|
let arr = this.contactSite(res.data)
|
|
|
|
|
this.siteList = arr
|
|
|
|
|
},
|
|
|
|
|
contactSite(arr) {
|
|
|
|
|
let tempArr = [],
|
|
|
|
|
newArr = []
|
|
|
|
|
for (let i = 0; i < arr.length; i++) {
|
|
|
|
|
if (tempArr.indexOf(arr[i].type) === -1) {
|
|
|
|
|
newArr.push({
|
|
|
|
|
type: arr[i].type,
|
|
|
|
|
name: arr[i]['type_detail']['value'],
|
|
|
|
|
children: [arr[i]]
|
|
|
|
|
})
|
|
|
|
|
tempArr.push(arr[i].type);
|
|
|
|
|
} else {
|
|
|
|
|
for (let j = 0; j < newArr.length; j++) {
|
|
|
|
|
if (newArr[j].type == arr[i].type) {
|
|
|
|
|
newArr[j].children.push(arr[i])
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return newArr
|
|
|
|
|
},
|
|
|
|
|
async getAsk(label) {
|
|
|
|
|
const res = await getparameteritem('askList')
|
|
|
|
|
this.askList = res.detail
|
|
|
|
|
},
|
|
|
|
|
handleRemove(file, fileList) {
|
|
|
|
|
this.pictureList = fileList
|
|
|
|
|
},
|
|
|
|
|
handlesuccess(response, file, fileList) {
|
|
|
|
|
this.pictureList = fileList
|
|
|
|
|
},
|
|
|
|
|
handlePictureCardPreview(file) {
|
|
|
|
|
this.showPicUrl = file.url;
|
|
|
|
|
this.showPic = true;
|
|
|
|
|
},
|
|
|
|
|
handleRemove(file, fileList) {
|
|
|
|
|
this.pictureList = fileList
|
|
|
|
|
},
|
|
|
|
|
handlesuccess(response, file, fileList) {
|
|
|
|
|
this.pictureList = fileList
|
|
|
|
|
},
|
|
|
|
|
handlePictureCardPreview(file) {
|
|
|
|
|
this.showPicUrl = file.url;
|
|
|
|
|
this.showPic = true;
|
|
|
|
|
},
|
|
|
|
|
async getDetail() {
|
|
|
|
|
const res = await get(this.id)
|
|
|
|
|
this.form = {
|
|
|
|
|
mission_id: res?.mission_id,
|
|
|
|
|
date: res?.date,
|
|
|
|
|
site_id: res?.site_id,
|
|
|
|
|
siteName:'',
|
|
|
|
|
address:res?.address,
|
|
|
|
|
lat:res?.lat,
|
|
|
|
|
lon:res?.lon,
|
|
|
|
|
ask_id: res?.ask_id,
|
|
|
|
|
ask_department:res?.ask_department,
|
|
|
|
|
date: res?.date,
|
|
|
|
|
ask_id: res?.ask_id,
|
|
|
|
|
site_id: res?.site_id,
|
|
|
|
|
siteName: res.site_id?[undefined,res.site_id]:res.address,
|
|
|
|
|
address: res?.address,
|
|
|
|
|
lat: res?.lat,
|
|
|
|
|
lon: res?.lon,
|
|
|
|
|
up_admin_id:res?.up_admin_id,
|
|
|
|
|
ask_department: res?.ask_department,
|
|
|
|
|
ask_introduce: res?.ask_introduce,
|
|
|
|
|
tips: res?.tips,
|
|
|
|
|
accept_department_ids:res.accept_department_ids?res.accept_department_ids:[],
|
|
|
|
|
file_ids: res?.file_ids,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.showCasc = res.site_id?true:false
|
|
|
|
|
console.log("12333",this.form.siteName)
|
|
|
|
|
this.$refs.cascader.computePresentText()
|
|
|
|
|
this.mapform = [res.lon, res.lat, res.address]
|
|
|
|
|
for (var f of res.files) {
|
|
|
|
|
this.pictureList.push({
|
|
|
|
|
@ -337,34 +428,37 @@
|
|
|
|
|
if (newVal) {
|
|
|
|
|
if (this.type === 'editor') {
|
|
|
|
|
this.getDetail()
|
|
|
|
|
}
|
|
|
|
|
if(this.type==='add'){
|
|
|
|
|
for(var k of this.unitList){
|
|
|
|
|
console.log("adddd",k.name)
|
|
|
|
|
if(k.name=='日常巡查'){
|
|
|
|
|
this.form.mission_id = k.id
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (this.type === 'add') {
|
|
|
|
|
this.form.up_admin_id = this.login_id
|
|
|
|
|
for (var k of this.unitList) {
|
|
|
|
|
console.log("adddd", k.name)
|
|
|
|
|
if (k.name == '日常巡查') {
|
|
|
|
|
this.form.mission_id = k.id
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
this.id = ''
|
|
|
|
|
this.pictureList = []
|
|
|
|
|
this.mission_id = ''
|
|
|
|
|
this.mapform=[]
|
|
|
|
|
this.pictureList = []
|
|
|
|
|
this.mission_id = ''
|
|
|
|
|
this.mapform = []
|
|
|
|
|
this.showCasc = true
|
|
|
|
|
this.$refs['dialog'].reset()
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mission_id(newval){
|
|
|
|
|
console.log("newval",newval)
|
|
|
|
|
if(newval){
|
|
|
|
|
this.form.mission_id = this.mission_id
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mapform(newVal, oldVal) {
|
|
|
|
|
this.form.lon = newVal[0];
|
|
|
|
|
this.form.lat = newVal[1];
|
|
|
|
|
this.form.address = newVal[2];
|
|
|
|
|
},
|
|
|
|
|
mission_id(newval) {
|
|
|
|
|
console.log("newval", newval)
|
|
|
|
|
if (newval) {
|
|
|
|
|
this.form.mission_id = this.mission_id
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mapform(newVal, oldVal) {
|
|
|
|
|
this.form.lon = newVal[0];
|
|
|
|
|
this.form.lat = newVal[1];
|
|
|
|
|
this.form.address = newVal[2];
|
|
|
|
|
this.form.siteName = newVal[2]
|
|
|
|
|
this.form.site_id = ''
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ -374,16 +468,24 @@
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
// .xy-table-item-label {
|
|
|
|
|
// width: 160px;
|
|
|
|
|
// }
|
|
|
|
|
::v-deep .ask_department{
|
|
|
|
|
flex-basis: 100%;
|
|
|
|
|
}
|
|
|
|
|
::v-deep .avue-input-map{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
::v-deep .site_id,::v-deep .address,::v-deep .lat,::v-deep .lon{
|
|
|
|
|
display: none;
|
|
|
|
|
// }
|
|
|
|
|
::v-deep .ask_department {
|
|
|
|
|
// flex-basis: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::v-deep .avue-input-map {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::v-deep .site_id,
|
|
|
|
|
::v-deep .address,
|
|
|
|
|
::v-deep .lat,
|
|
|
|
|
::v-deep .lon,
|
|
|
|
|
::v-deep .accept_department_ids
|
|
|
|
|
{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.img__delete {
|
|
|
|
|
transform: scale(0.8, 0.8);
|
|
|
|
|
|
|
|
|
|
|