无等级网格版合并
This commit is contained in:
		| @@ -1,7 +1,7 @@ | ||||
| <template> | ||||
|   <ai-detail class="reportAtWillDetail" v-loading="isLoading"> | ||||
|     <template #title> | ||||
|       <ai-title title="随手拍详情" isShowBack isShowBottomBorder  @onBackClick="cancel(false)"> | ||||
|       <ai-title title="随手拍详情" isShowBack isShowBottomBorder @onBackClick="cancel(false)"> | ||||
|         <template #rightBtn> | ||||
|           <div class="title-btns"> | ||||
|             <el-button type="primary" icon="iconfont iconPerson_Transfered" @click="isShowForward = true" v-if="detail.eventStatus < 2">指派事件</el-button> | ||||
| @@ -36,10 +36,10 @@ | ||||
|             <template #content> | ||||
|               <el-steps direction="vertical" :active="1"> | ||||
|                 <el-step | ||||
|                   v-for="(item, i) in processList" | ||||
|                   :key="i" | ||||
|                   :title="item.systemExplain" | ||||
|                   :description="item.doTime"> | ||||
|                     v-for="(item, i) in processList" | ||||
|                     :key="i" | ||||
|                     :title="item.systemExplain" | ||||
|                     :description="item.doTime"> | ||||
|                   <template #title> | ||||
|                     <h2 class="step-title" style="font-weight: 500; font-size: 14px;"> | ||||
|                       {{ item.systemExplain }} | ||||
| @@ -57,17 +57,17 @@ | ||||
|         </div> | ||||
|       </div> | ||||
|       <ai-dialog | ||||
|         :visible.sync="isShowAdd" | ||||
|         width="800px" | ||||
|         title="事件处理" | ||||
|         @closed="onClose" | ||||
|         @onConfirm="handleEvent"> | ||||
|           :visible.sync="isShowAdd" | ||||
|           width="800px" | ||||
|           title="事件处理" | ||||
|           @closed="onClose" | ||||
|           @onConfirm="handleEvent"> | ||||
|         <el-form class="ai-form" label-width="120px" :model="form" ref="form"> | ||||
|           <el-form-item label="事件分类" prop="groupId" style="width: 100%;" :rules="[{ required: true, message: '请选择事件分类' }]"> | ||||
|             <ai-select | ||||
|               v-model="form.groupId" | ||||
|               placeholder="请选择事件分类" | ||||
|               :selectList="dictList"> | ||||
|                 v-model="form.groupId" | ||||
|                 placeholder="请选择事件分类" | ||||
|                 :selectList="dictList"> | ||||
|             </ai-select> | ||||
|           </el-form-item> | ||||
|           <el-form-item label="处理结果" prop="eventStatus" style="width: 100%;" :rules="[{ required: true, message: '请选择处理结果' }]"> | ||||
| @@ -81,20 +81,20 @@ | ||||
|           </el-form-item> | ||||
|           <el-form-item label="图片" prop="files" style="width: 100%;"> | ||||
|             <ai-uploader | ||||
|               :instance="instance" | ||||
|               isShowTip | ||||
|               v-model="form.files" | ||||
|               :limit="9"> | ||||
|                 :instance="instance" | ||||
|                 isShowTip | ||||
|                 v-model="form.files" | ||||
|                 :limit="9"> | ||||
|             </ai-uploader> | ||||
|           </el-form-item> | ||||
|         </el-form> | ||||
|       </ai-dialog> | ||||
|       <ai-dialog | ||||
|         :visible.sync="isShowForward" | ||||
|         width="800px" | ||||
|         @close="onClose" | ||||
|         title="事件指派" | ||||
|         @onConfirm="onForwardConfirm"> | ||||
|           :visible.sync="isShowForward" | ||||
|           width="800px" | ||||
|           @close="onClose" | ||||
|           title="事件指派" | ||||
|           @onConfirm="onForwardConfirm"> | ||||
|         <el-form class="ai-form" label-width="120px" :model="forwardForm" ref="forwardForm"> | ||||
|           <el-form-item label="转交" prop="name" style="width: 100%;" :rules="[{ required: true, message: '请选择网格员或网格' }]"> | ||||
|             <el-input disabled size="small" v-model="forwardForm.name" clearable placeholder="请选择网格员或网格"> | ||||
| @@ -108,35 +108,35 @@ | ||||
|           </el-form-item> | ||||
|           <el-form-item label="图片" prop="files" style="width: 100%;"> | ||||
|             <ai-uploader | ||||
|               :instance="instance" | ||||
|               v-model="forwardForm.files" | ||||
|               isShowTip | ||||
|               :limit="9"> | ||||
|                 :instance="instance" | ||||
|                 v-model="forwardForm.files" | ||||
|                 isShowTip | ||||
|                 :limit="9"> | ||||
|             </ai-uploader> | ||||
|           </el-form-item> | ||||
|         </el-form> | ||||
|       </ai-dialog> | ||||
|       <ai-dialog | ||||
|         :visible.sync="isShowUser" | ||||
|         width="800px" | ||||
|         title="选择网格或网格员" | ||||
|         @onConfirm="onConfirm"> | ||||
|           :visible.sync="isShowUser" | ||||
|           width="800px" | ||||
|           title="选择网格或网格员" | ||||
|           @onConfirm="onConfirm"> | ||||
|         <div class="grid-wrapper"> | ||||
|           <el-input | ||||
|             style="margin-bottom: 10px;" | ||||
|             size="small" | ||||
|             placeholder="请输入网格名称/网格员姓名/网格员电话" | ||||
|             v-model="name" | ||||
|             suffix-icon="iconfont iconSearch"> | ||||
|               style="margin-bottom: 10px;" | ||||
|               size="small" | ||||
|               placeholder="请输入网格名称/网格员姓名/网格员电话" | ||||
|               v-model="name" @change="$refs.tree.filter(name)" | ||||
|               suffix-icon="iconfont iconSearch"> | ||||
|           </el-input> | ||||
|           <el-tree | ||||
|             :filter-node-method="filterNode" | ||||
|             ref="tree" | ||||
|             :props="defaultProps" | ||||
|             node-key="id" | ||||
|             :data="tree" | ||||
|             highlight-current | ||||
|             @current-change="onTreeChange"> | ||||
|               :filter-node-method="filterNode" | ||||
|               ref="tree" | ||||
|               :props="defaultProps" | ||||
|               node-key="id" | ||||
|               :data="tree" | ||||
|               highlight-current | ||||
|               @current-change="onTreeChange"> | ||||
|             <div class="tree-container" slot-scope="{ data }"> | ||||
|               <div class="tree-container__user"> | ||||
|                 <div class="tree-user__item"> | ||||
| @@ -152,451 +152,436 @@ | ||||
| </template> | ||||
|  | ||||
| <script> | ||||
|   import AMapLoader from '@amap/amap-jsapi-loader' | ||||
|   import { mapState } from 'vuex' | ||||
| import AMapLoader from '@amap/amap-jsapi-loader' | ||||
| import {mapState} from 'vuex' | ||||
|  | ||||
|   export default { | ||||
|     name: 'Detail', | ||||
|     props: ['dict', 'instance', 'params'], | ||||
| export default { | ||||
|   name: 'Detail', | ||||
|   props: ['dict', 'instance', 'params'], | ||||
|  | ||||
|     data() { | ||||
|       return { | ||||
|         forwardForm: { | ||||
|           content: '', | ||||
|           girdId: '', | ||||
|           girdName: '', | ||||
|           girdMemberId: '', | ||||
|           girdMemberName: '', | ||||
|           name: '' | ||||
|         }, | ||||
|         isLoading: true, | ||||
|         name: '', | ||||
|         detail: {}, | ||||
|         isShowUser: false, | ||||
|         eventList: [], | ||||
|         isShowAdd: false, | ||||
|         userList: [], | ||||
|         processList: [], | ||||
|         dictList: [], | ||||
|         defaultProps: { | ||||
|           children: 'girdList', | ||||
|           label: 'girdName' | ||||
|         }, | ||||
|         isShowForward: false, | ||||
|         tree: [], | ||||
|         gridInfo: {}, | ||||
|         form: { | ||||
|           files: [], | ||||
|           groupId: '', | ||||
|           groupName: '', | ||||
|           content: [], | ||||
|           eventStatus: '2' | ||||
|   data() { | ||||
|     return { | ||||
|       forwardForm: { | ||||
|         content: '', | ||||
|         girdId: '', | ||||
|         girdName: '', | ||||
|         girdMemberId: '', | ||||
|         girdMemberName: '', | ||||
|         name: '' | ||||
|       }, | ||||
|       isLoading: true, | ||||
|       name: '', | ||||
|       detail: {}, | ||||
|       isShowUser: false, | ||||
|       eventList: [], | ||||
|       isShowAdd: false, | ||||
|       userList: [], | ||||
|       processList: [], | ||||
|       dictList: [], | ||||
|       defaultProps: { | ||||
|         children: 'girdList', | ||||
|         label: 'girdName' | ||||
|       }, | ||||
|       isShowForward: false, | ||||
|       tree: [], | ||||
|       gridInfo: {}, | ||||
|       form: { | ||||
|         files: [], | ||||
|         groupId: '', | ||||
|         groupName: '', | ||||
|         content: [], | ||||
|         eventStatus: '2' | ||||
|       } | ||||
|     } | ||||
|   }, | ||||
|  | ||||
|   computed: { | ||||
|     ...mapState(['user']) | ||||
|   }, | ||||
|  | ||||
|   created() { | ||||
|     this.getDict() | ||||
|     this.getGirdList() | ||||
|     this.dict.load('clapEventStatus').then(() => { | ||||
|       this.getDetail() | ||||
|     }) | ||||
|   }, | ||||
|  | ||||
|   methods: { | ||||
|     getDetail() { | ||||
|       this.instance.post('/app/appclapeventinfo/queryDetailById', null, { | ||||
|         params: {id: this.params.id} | ||||
|       }).then(res => { | ||||
|         if (res?.data) { | ||||
|           this.detail = res.data | ||||
|           this.processList = res.data.processList | ||||
|           this.form.groupId = res.data.groupId | ||||
|  | ||||
|           this.$nextTick(() => { | ||||
|             this.initMap() | ||||
|           }) | ||||
|           this.isLoading = false | ||||
|         } | ||||
|       } | ||||
|     }, | ||||
|  | ||||
|     computed: { | ||||
|       ...mapState(['user']) | ||||
|     }, | ||||
|  | ||||
|     watch: { | ||||
|       name (val) { | ||||
|         this.$refs.tree.filter(val) | ||||
|       } | ||||
|     }, | ||||
|  | ||||
|     created() { | ||||
|       this.getDict() | ||||
|       this.getGirdList() | ||||
|       this.dict.load('clapEventStatus').then(() => { | ||||
|         this.getDetail() | ||||
|       }).catch(() => { | ||||
|         this.isLoading = false | ||||
|       }) | ||||
|     }, | ||||
|  | ||||
|     methods: { | ||||
|       getDetail() { | ||||
|         this.instance.post('/app/appclapeventinfo/queryDetailById', null, { | ||||
|           params: { id: this.params.id } | ||||
|         }).then(res => { | ||||
|           if (res?.data) { | ||||
|             this.detail = res.data | ||||
|             this.processList = res.data.processList | ||||
|             this.form.groupId = res.data.groupId | ||||
|  | ||||
|             this.$nextTick(() => { | ||||
|               this.initMap() | ||||
|             }) | ||||
|             this.isLoading = false | ||||
|           } | ||||
|         }).catch(() => { | ||||
|           this.isLoading = false | ||||
|         }) | ||||
|       }, | ||||
|  | ||||
|       getGirdList () { | ||||
|         this.instance.post(`/app/appgirdinfo/listAllByTop`).then(res => { | ||||
|           if (res.code == 0) { | ||||
|             this.tree = this.formatList(res.data) | ||||
|           } | ||||
|         }) | ||||
|       }, | ||||
|  | ||||
|       onClose () { | ||||
|         this.form.files = [] | ||||
|         this.form.groupId = '' | ||||
|         this.form.groupName = '' | ||||
|         this.form.content = '' | ||||
|         this.form.eventStatus = '' | ||||
|         this.forwardForm.content = '' | ||||
|         this.forwardForm.girdId = '' | ||||
|         this.forwardForm.girdName = '' | ||||
|         this.forwardForm.girdMemberId = '' | ||||
|         this.forwardForm.girdMemberName = '' | ||||
|         this.forwardForm.name = '' | ||||
|       }, | ||||
|  | ||||
|       formatList (list) { | ||||
|         var arr = [] | ||||
|         for (let item of list) { | ||||
|           if (item.girdMemberList && item.girdMemberList.length) { | ||||
|             let userList = JSON.parse(JSON.stringify(item.girdMemberList)).map(v => { | ||||
|               return { | ||||
|                   ...v, | ||||
|                 isUser: true, | ||||
|                 girdName: item.girdName, | ||||
|                 girdId: item.id | ||||
|               } | ||||
|             }) | ||||
|  | ||||
|             item.girdList = [ | ||||
|               ...userList | ||||
|             ] | ||||
|             delete item.girdMemberList | ||||
|           } | ||||
|  | ||||
|           if (item.girdList && item.girdList.length) { | ||||
|             this.formatList(item.girdList) | ||||
|           } | ||||
|  | ||||
|           arr.push(item) | ||||
|     getGirdList() { | ||||
|       this.instance.post(`/app/appgirdinfo/listAllByTop`).then(res => { | ||||
|         if (res?.data) { | ||||
|           this.tree = this.formatList([res.data]) | ||||
|         } | ||||
|       }) | ||||
|     }, | ||||
|  | ||||
|         return arr | ||||
|       }, | ||||
|     onClose() { | ||||
|       this.form.files = [] | ||||
|       this.form.groupId = '' | ||||
|       this.form.groupName = '' | ||||
|       this.form.content = '' | ||||
|       this.form.eventStatus = '' | ||||
|       this.forwardForm.content = '' | ||||
|       this.forwardForm.girdId = '' | ||||
|       this.forwardForm.girdName = '' | ||||
|       this.forwardForm.girdMemberId = '' | ||||
|       this.forwardForm.girdMemberName = '' | ||||
|       this.forwardForm.name = '' | ||||
|     }, | ||||
|  | ||||
|       filterNode (value, data) { | ||||
|         if (!value) return true | ||||
|  | ||||
|         return (data.girdName && data.girdName.indexOf(value) !== -1) || (data.name && data.name.indexOf(value) !== -1) || (data.name && data.phone.indexOf(value) !== -1) | ||||
|       }, | ||||
|  | ||||
|       onTreeChange (e) { | ||||
|         this.gridInfo = e | ||||
|       }, | ||||
|  | ||||
|       onForwardConfirm () { | ||||
|         this.$refs.forwardForm.validate(v => { | ||||
|           if (v) { | ||||
|             this.instance.post('/app/appclapeventinfo/transferByManager', { | ||||
|               ...this.forwardForm, | ||||
|               id: this.params.id | ||||
|             }).then(res => { | ||||
|               if (res?.code == 0) { | ||||
|                 this.isShowForward = false | ||||
|                 this.getDetail() | ||||
|                 this.$message.success('转交成功!') | ||||
|               } | ||||
|             }) | ||||
|           } | ||||
|         }) | ||||
|       }, | ||||
|  | ||||
|       onConfirm () { | ||||
|         if (this.gridInfo.userId || this.gridInfo.girdLevel === '2') { | ||||
|           if (this.gridInfo.userId) { | ||||
|             this.forwardForm.girdId = this.gridInfo.girdId | ||||
|             this.forwardForm.girdName = this.gridInfo.girdName | ||||
|             this.forwardForm.girdMemberId = this.gridInfo.id | ||||
|             this.forwardForm.girdMemberName = this.gridInfo.name | ||||
|           } else { | ||||
|             this.forwardForm.girdId = this.gridInfo.id | ||||
|           } | ||||
|  | ||||
|           this.forwardForm.girdName = this.gridInfo.girdName | ||||
|           this.forwardForm.name = `${this.gridInfo.girdName}${this.gridInfo.name ? '-' + this.gridInfo.name : ''}` | ||||
|  | ||||
|           this.isShowUser = false | ||||
|         } else { | ||||
|           return this.$message.error('请选择网格员或者最后层网格') | ||||
|         } | ||||
|       }, | ||||
|  | ||||
|       getDict () { | ||||
|         this.instance.post(`/app/appclapeventgroup/list?current=1&size=100000`).then(res => { | ||||
|           if (res.code == 0) { | ||||
|             this.dictList = res.data.records.map(v => { | ||||
|               return { | ||||
|                 dictValue: v.id, | ||||
|                 dictName: v.groupName | ||||
|               } | ||||
|             }) | ||||
|           } | ||||
|         }) | ||||
|       }, | ||||
|  | ||||
|       close () { | ||||
|         this.$confirm('确定关闭该事件?').then(() => { | ||||
|           this.instance.post(`/app/appmininotice/delete?ids=${this.params.id}`).then(res => { | ||||
|             if (res.code == 0) { | ||||
|               this.$message.success('删除成功!') | ||||
|               this.getList() | ||||
|     formatList(list) { | ||||
|       let arr = [] | ||||
|       for (let item of list) { | ||||
|         if (item.girdMemberList && item.girdMemberList.length) { | ||||
|           let userList = JSON.parse(JSON.stringify(item.girdMemberList)).map(v => { | ||||
|             return { | ||||
|               ...v, | ||||
|               isUser: true, | ||||
|               girdName: item.girdName, | ||||
|               girdId: item.id | ||||
|             } | ||||
|           }) | ||||
|         }) | ||||
|       }, | ||||
|  | ||||
|       cancel (isRefresh) { | ||||
|         this.$emit('change', { | ||||
|           type: 'list', | ||||
|           isRefresh: !!isRefresh | ||||
|         }) | ||||
|       }, | ||||
|  | ||||
|       onChange(e) { | ||||
|         this.instance.post(`/app/appvillagerintegralrule/list?size=1000&classification=${e}&ruleStatus=1`).then(res => { | ||||
|           if (res.code === 0) { | ||||
|             this.form.ruleId = '' | ||||
|             this.eventList = res.data.records | ||||
|           } | ||||
|         }) | ||||
|       }, | ||||
|  | ||||
|       initMap() { | ||||
|         let { lng, lat } = this.detail | ||||
|         let center = [lng, lat] | ||||
|         AMapLoader.load({ | ||||
|           key: 'b553334ba34f7ac3cd09df9bc8b539dc', | ||||
|           version: '2.0' | ||||
|         }).then(AMap => { | ||||
|           let map = new AMap.Map('map', { | ||||
|             center, | ||||
|             zoom: 14 | ||||
|           }) | ||||
|           let marker = new AMap.Marker({ | ||||
|             position: new AMap.LngLat(lng, lat), | ||||
|             title: this.detail.address | ||||
|           }) | ||||
|           map.add(marker) | ||||
|         }) | ||||
|       }, | ||||
|  | ||||
|       handleEvent() { | ||||
|         this.$refs.form.validate(v => { | ||||
|           if (v) { | ||||
|             this.instance.post('/app/appclapeventinfo/finishByManager', { | ||||
|               ...this.form, | ||||
|               groupName: this.dictList.filter(v => v.dictValue === this.form.groupId)[0].dictName, | ||||
|               id: this.params.id | ||||
|             }).then(res => { | ||||
|               if (res?.code == 0) { | ||||
|                 this.isShowAdd = false | ||||
|                 this.getDetail() | ||||
|                 this.$message.success('处理成功!') | ||||
|               } | ||||
|             }) | ||||
|           } | ||||
|         }) | ||||
|           item.girdList = [ | ||||
|             ...userList | ||||
|           ] | ||||
|           delete item.girdMemberList | ||||
|         } | ||||
|         if (item.girdList && item.girdList.length) { | ||||
|           this.formatList(item.girdList) | ||||
|         } | ||||
|         arr.push(item) | ||||
|       } | ||||
|       return arr | ||||
|     }, | ||||
|  | ||||
|     filterNode(value, data) { | ||||
|       if (!value) return true | ||||
|  | ||||
|       return (data.girdName && data.girdName.indexOf(value) !== -1) || (data.name && data.name.indexOf(value) !== -1) || (data.name && data.phone.indexOf(value) !== -1) | ||||
|     }, | ||||
|  | ||||
|     onTreeChange(e) { | ||||
|       this.gridInfo = e | ||||
|     }, | ||||
|  | ||||
|     onForwardConfirm() { | ||||
|       this.$refs.forwardForm.validate(v => { | ||||
|         if (v) { | ||||
|           this.instance.post('/app/appclapeventinfo/transferByManager', { | ||||
|             ...this.forwardForm, | ||||
|             id: this.params.id | ||||
|           }).then(res => { | ||||
|             if (res?.code == 0) { | ||||
|               this.isShowForward = false | ||||
|               this.getDetail() | ||||
|               this.$message.success('转交成功!') | ||||
|             } | ||||
|           }) | ||||
|         } | ||||
|       }) | ||||
|     }, | ||||
|  | ||||
|     onConfirm() { | ||||
|       if (this.gridInfo.userId) { | ||||
|         this.forwardForm.girdId = this.gridInfo.girdId | ||||
|         this.forwardForm.girdName = this.gridInfo.girdName | ||||
|         this.forwardForm.girdMemberId = this.gridInfo.id | ||||
|         this.forwardForm.girdMemberName = this.gridInfo.name | ||||
|       } else { | ||||
|         this.forwardForm.girdId = this.gridInfo.id | ||||
|       } | ||||
|       this.forwardForm.girdName = this.gridInfo.girdName | ||||
|       this.forwardForm.name = `${this.gridInfo.girdName}${this.gridInfo.name ? '-' + this.gridInfo.name : ''}` | ||||
|       this.isShowUser = false | ||||
|     }, | ||||
|     getDict() { | ||||
|       this.instance.post(`/app/appclapeventgroup/list?current=1&size=100000`).then(res => { | ||||
|         if (res.code == 0) { | ||||
|           this.dictList = res.data.records.map(v => { | ||||
|             return { | ||||
|               dictValue: v.id, | ||||
|               dictName: v.groupName | ||||
|             } | ||||
|           }) | ||||
|         } | ||||
|       }) | ||||
|     }, | ||||
|  | ||||
|     close() { | ||||
|       this.$confirm('确定关闭该事件?').then(() => { | ||||
|         this.instance.post(`/app/appmininotice/delete?ids=${this.params.id}`).then(res => { | ||||
|           if (res.code == 0) { | ||||
|             this.$message.success('删除成功!') | ||||
|             this.getList() | ||||
|           } | ||||
|         }) | ||||
|       }) | ||||
|     }, | ||||
|  | ||||
|     cancel(isRefresh) { | ||||
|       this.$emit('change', { | ||||
|         type: 'list', | ||||
|         isRefresh: !!isRefresh | ||||
|       }) | ||||
|     }, | ||||
|  | ||||
|     onChange(e) { | ||||
|       this.instance.post(`/app/appvillagerintegralrule/list?size=1000&classification=${e}&ruleStatus=1`).then(res => { | ||||
|         if (res.code === 0) { | ||||
|           this.form.ruleId = '' | ||||
|           this.eventList = res.data.records | ||||
|         } | ||||
|       }) | ||||
|     }, | ||||
|  | ||||
|     initMap() { | ||||
|       let {lng, lat} = this.detail | ||||
|       let center = [lng, lat] | ||||
|       AMapLoader.load({ | ||||
|         key: 'b553334ba34f7ac3cd09df9bc8b539dc', | ||||
|         version: '2.0' | ||||
|       }).then(AMap => { | ||||
|         let map = new AMap.Map('map', { | ||||
|           center, | ||||
|           zoom: 14 | ||||
|         }) | ||||
|         let marker = new AMap.Marker({ | ||||
|           position: new AMap.LngLat(lng, lat), | ||||
|           title: this.detail.address | ||||
|         }) | ||||
|         map.add(marker) | ||||
|       }) | ||||
|     }, | ||||
|  | ||||
|     handleEvent() { | ||||
|       this.$refs.form.validate(v => { | ||||
|         if (v) { | ||||
|           this.instance.post('/app/appclapeventinfo/finishByManager', { | ||||
|             ...this.form, | ||||
|             groupName: this.dictList.filter(v => v.dictValue === this.form.groupId)[0].dictName, | ||||
|             id: this.params.id | ||||
|           }).then(res => { | ||||
|             if (res?.code == 0) { | ||||
|               this.isShowAdd = false | ||||
|               this.getDetail() | ||||
|               this.$message.success('处理成功!') | ||||
|             } | ||||
|           }) | ||||
|         } | ||||
|       }) | ||||
|     } | ||||
|   } | ||||
| } | ||||
| </script> | ||||
|  | ||||
| <style lang="scss" scoped> | ||||
|   .reportAtWillDetail { | ||||
|     height: 100%; | ||||
| .reportAtWillDetail { | ||||
|   height: 100%; | ||||
|  | ||||
|     .grid-wrapper { | ||||
|       min-height: 360px; | ||||
|   .grid-wrapper { | ||||
|     min-height: 360px; | ||||
|   } | ||||
|  | ||||
|   .title-btns { | ||||
|     display: flex; | ||||
|     align-items: center; | ||||
|   } | ||||
|  | ||||
|   ::v-deep .el-tree { | ||||
|     background: transparent; | ||||
|  | ||||
|     .el-tree-node__expand-icon.is-leaf { | ||||
|       color: transparent !important; | ||||
|     } | ||||
|  | ||||
|     .title-btns { | ||||
|       display: flex; | ||||
|       align-items: center; | ||||
|     } | ||||
|       ::v-deep .el-tree { | ||||
|         background: transparent; | ||||
|  | ||||
|         .el-tree-node__expand-icon.is-leaf { | ||||
|           color: transparent !important; | ||||
|         } | ||||
|  | ||||
|         .el-tree-node__content > .el-tree-node__expand-icon { | ||||
|           padding: 4px; | ||||
|         } | ||||
|  | ||||
|         .el-tree-node__content { | ||||
|           height: 32px; | ||||
|         } | ||||
|  | ||||
|         .el-tree__empty-text { | ||||
|           color: #222; | ||||
|           font-size: 14px; | ||||
|         } | ||||
|  | ||||
|         .el-tree-node__children .el-tree-node__content { | ||||
|           height: 32px; | ||||
|         } | ||||
|  | ||||
|         .el-tree-node__content:hover { | ||||
|           background: #E8EFFF; | ||||
|           color: #222222; | ||||
|           border-radius: 2px; | ||||
|         } | ||||
|  | ||||
|         .is-current > .el-tree-node__content { | ||||
|           &:hover { | ||||
|             background: #2266FF; | ||||
|             color: #fff; | ||||
|           } | ||||
|  | ||||
|           background: #2266FF; | ||||
|  | ||||
|           span { | ||||
|             color: #fff; | ||||
|           } | ||||
|         } | ||||
|       } | ||||
|  | ||||
|     .el-steps { | ||||
|       ::v-deep .el-step__icon { | ||||
|         font-size: 12px; | ||||
|         color: #555555; | ||||
|         border-color: #d0d4dc; | ||||
|       } | ||||
|  | ||||
|       ::v-deep .el-step__head.is-finish { | ||||
|         .el-step__icon.is-text { | ||||
|           border: none; | ||||
|           color: #fff; | ||||
|           font-size: 12px; | ||||
|           background: #2266ff; | ||||
|         } | ||||
|       } | ||||
|  | ||||
|       ::v-deep .el-step__line { | ||||
|         background-color: #d0d4dc; | ||||
|       } | ||||
|     .el-tree-node__content > .el-tree-node__expand-icon { | ||||
|       padding: 4px; | ||||
|     } | ||||
|  | ||||
|     .imgs { | ||||
|       font-size: 0; | ||||
|  | ||||
|       img { | ||||
|         width: 108px; | ||||
|         height: 108px; | ||||
|         margin-right: 4px; | ||||
|         margin-bottom: 4px; | ||||
|         cursor: pointer; | ||||
|         user-select: none; | ||||
|  | ||||
|         &:hover { | ||||
|           opacity: 0.8; | ||||
|         } | ||||
|  | ||||
|         &:nth-of-type(2n) { | ||||
|           margin-right: 0; | ||||
|         } | ||||
|       } | ||||
|     .el-tree-node__content { | ||||
|       height: 32px; | ||||
|     } | ||||
|  | ||||
|     ::v-deep .report-dialog { | ||||
|       .el-select { | ||||
|         width: 100%; | ||||
|       } | ||||
|     .el-tree__empty-text { | ||||
|       color: #222; | ||||
|       font-size: 14px; | ||||
|     } | ||||
|  | ||||
|     ::v-deep .el-step__head.is-process { | ||||
|       color: #555; | ||||
|       border-color: #555; | ||||
|     .el-tree-node__children .el-tree-node__content { | ||||
|       height: 32px; | ||||
|     } | ||||
|  | ||||
|     ::v-deep .is-finish h2 { | ||||
|       color: #2266ff; | ||||
|     .el-tree-node__content:hover { | ||||
|       background: #E8EFFF; | ||||
|       color: #222222; | ||||
|       border-radius: 2px; | ||||
|     } | ||||
|  | ||||
|     .step-title { | ||||
|       color: #555; | ||||
|     } | ||||
|  | ||||
|     .detail-content__wrapper { | ||||
|       display: flex; | ||||
|       width: 100%; | ||||
|  | ||||
|       .detail-content__wrapper--left { | ||||
|         flex: 1; | ||||
|         margin-right: 20px; | ||||
|       } | ||||
|     } | ||||
|  | ||||
|     ::v-deep .ai-detail__content { | ||||
|       background: #f3f6f9; | ||||
|  | ||||
|       .ai-detail__content--wrapper { | ||||
|         display: flex; | ||||
|         gap: 16px; | ||||
|         width: 100%; | ||||
|         max-width: 100%; | ||||
|         padding: 16px; | ||||
|         box-sizing: border-box; | ||||
|  | ||||
|         & > .el-card { | ||||
|           flex: 1; | ||||
|           min-width: 0; | ||||
|         } | ||||
|  | ||||
|         .rightZone { | ||||
|           width: 400px; | ||||
|           flex-shrink: 0; | ||||
|           display: flex; | ||||
|           flex-direction: column; | ||||
|           gap: 16px; | ||||
|         } | ||||
|       } | ||||
|     } | ||||
|  | ||||
|     ::v-deep .el-card { | ||||
|       .el-card__header { | ||||
|         padding: 12px 16px; | ||||
|         font-weight: bold; | ||||
|     .is-current > .el-tree-node__content { | ||||
|       &:hover { | ||||
|         background: #2266FF; | ||||
|         color: #fff; | ||||
|       } | ||||
|  | ||||
|       .el-card__body { | ||||
|         padding: 8px; | ||||
|       } | ||||
|       background: #2266FF; | ||||
|  | ||||
|       #amap { | ||||
|         width: 466px; | ||||
|         height: 232px; | ||||
|       } | ||||
|  | ||||
|       .el-steps { | ||||
|         margin-left: 8px; | ||||
|       } | ||||
|  | ||||
|       .imgFormItem > .el-form-item__content { | ||||
|         display: flex; | ||||
|         gap: 16px; | ||||
|         flex-wrap: wrap; | ||||
|  | ||||
|         &:before { | ||||
|           content: none; | ||||
|         } | ||||
|  | ||||
|         .el-image__inner { | ||||
|           width: 82px; | ||||
|           height: 82px; | ||||
|         } | ||||
|       span { | ||||
|         color: #fff; | ||||
|       } | ||||
|     } | ||||
|   } | ||||
|  | ||||
|   .el-steps { | ||||
|     ::v-deep .el-step__icon { | ||||
|       font-size: 12px; | ||||
|       color: #555555; | ||||
|       border-color: #d0d4dc; | ||||
|     } | ||||
|  | ||||
|     ::v-deep .el-step__head.is-finish { | ||||
|       .el-step__icon.is-text { | ||||
|         border: none; | ||||
|         color: #fff; | ||||
|         font-size: 12px; | ||||
|         background: #2266ff; | ||||
|       } | ||||
|     } | ||||
|  | ||||
|     ::v-deep .el-step__line { | ||||
|       background-color: #d0d4dc; | ||||
|     } | ||||
|   } | ||||
|  | ||||
|   .imgs { | ||||
|     font-size: 0; | ||||
|  | ||||
|     img { | ||||
|       width: 108px; | ||||
|       height: 108px; | ||||
|       margin-right: 4px; | ||||
|       margin-bottom: 4px; | ||||
|       cursor: pointer; | ||||
|       user-select: none; | ||||
|  | ||||
|       &:hover { | ||||
|         opacity: 0.8; | ||||
|       } | ||||
|  | ||||
|       &:nth-of-type(2n) { | ||||
|         margin-right: 0; | ||||
|       } | ||||
|     } | ||||
|   } | ||||
|  | ||||
|   ::v-deep .report-dialog { | ||||
|     .el-select { | ||||
|       width: 100%; | ||||
|     } | ||||
|   } | ||||
|  | ||||
|   ::v-deep .el-step__head.is-process { | ||||
|     color: #555; | ||||
|     border-color: #555; | ||||
|   } | ||||
|  | ||||
|   ::v-deep .is-finish h2 { | ||||
|     color: #2266ff; | ||||
|   } | ||||
|  | ||||
|   .step-title { | ||||
|     color: #555; | ||||
|   } | ||||
|  | ||||
|   .detail-content__wrapper { | ||||
|     display: flex; | ||||
|     width: 100%; | ||||
|  | ||||
|     .detail-content__wrapper--left { | ||||
|       flex: 1; | ||||
|       margin-right: 20px; | ||||
|     } | ||||
|   } | ||||
|  | ||||
|   ::v-deep .ai-detail__content { | ||||
|     background: #f3f6f9; | ||||
|  | ||||
|     .ai-detail__content--wrapper { | ||||
|       display: flex; | ||||
|       gap: 16px; | ||||
|       width: 100%; | ||||
|       max-width: 100%; | ||||
|       padding: 16px; | ||||
|       box-sizing: border-box; | ||||
|  | ||||
|       & > .el-card { | ||||
|         flex: 1; | ||||
|         min-width: 0; | ||||
|       } | ||||
|  | ||||
|       .rightZone { | ||||
|         width: 400px; | ||||
|         flex-shrink: 0; | ||||
|         display: flex; | ||||
|         flex-direction: column; | ||||
|         gap: 16px; | ||||
|       } | ||||
|     } | ||||
|   } | ||||
|  | ||||
|   ::v-deep .el-card { | ||||
|     .el-card__header { | ||||
|       padding: 12px 16px; | ||||
|       font-weight: bold; | ||||
|     } | ||||
|  | ||||
|     .el-card__body { | ||||
|       padding: 8px; | ||||
|     } | ||||
|  | ||||
|     #amap { | ||||
|       width: 466px; | ||||
|       height: 232px; | ||||
|     } | ||||
|  | ||||
|     .el-steps { | ||||
|       margin-left: 8px; | ||||
|     } | ||||
|  | ||||
|     .imgFormItem > .el-form-item__content { | ||||
|       display: flex; | ||||
|       gap: 16px; | ||||
|       flex-wrap: wrap; | ||||
|  | ||||
|       &:before { | ||||
|         content: none; | ||||
|       } | ||||
|  | ||||
|       .el-image__inner { | ||||
|         width: 82px; | ||||
|         height: 82px; | ||||
|       } | ||||
|     } | ||||
|   } | ||||
| } | ||||
| </style> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user