Merge branch 'dev'
Showing
8 changed files
with
38 additions
and
13 deletions
| 1 | /* | 1 | /* |
| 2 | * @Description: 企业银行接口 | 2 | * @Description: 企业银行接口 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-09-20 14:49:22 | 4 | * @LastEditTime: 2023-10-31 10:45:35 |
| 5 | */ | 5 | */ |
| 6 | import request from '@/utils/request' | 6 | import request from '@/utils/request' |
| 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) | 7 | let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl')) |
| ... | @@ -64,6 +64,22 @@ export function uploadBatch (data) { | ... | @@ -64,6 +64,22 @@ export function uploadBatch (data) { |
| 64 | }) | 64 | }) |
| 65 | } | 65 | } |
| 66 | 66 | ||
| 67 | /** | ||
| 68 | * @description: 上传单个文件 | ||
| 69 | * @param {*} data | ||
| 70 | * @author: renchao | ||
| 71 | */ | ||
| 72 | export function uploadSjClmx (data) { | ||
| 73 | return request({ | ||
| 74 | url: SERVER.SERVERAPI + '/rest/sys/company/uploadSjClmx', | ||
| 75 | method: 'post', | ||
| 76 | headers: { | ||
| 77 | 'Content-Type': 'multipart/form-data' | ||
| 78 | }, | ||
| 79 | data | ||
| 80 | }) | ||
| 81 | } | ||
| 82 | |||
| 67 | 83 | ||
| 68 | 84 | ||
| 69 | /** | 85 | /** | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-10-13 15:02:59 | 4 | * @LastEditTime: 2023-10-31 10:21:32 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="rlPopup"> | 7 | <div class="rlPopup"> |
| ... | @@ -53,7 +53,7 @@ | ... | @@ -53,7 +53,7 @@ |
| 53 | <script> | 53 | <script> |
| 54 | import PhotoZoom from '@/components/PhotoZoom' | 54 | import PhotoZoom from '@/components/PhotoZoom' |
| 55 | import { getAltimeterInfo, getUuid } from '@/utils/operation.js' | 55 | import { getAltimeterInfo, getUuid } from '@/utils/operation.js' |
| 56 | import { uploadBatch, deleteClmx, move } from "@/api/clxx.js"; | 56 | import { uploadBatch, deleteClmx, move, uploadSjClmx } from "@/api/clxx.js"; |
| 57 | import publicPicture from '@/components/publicPicture/index.vue' | 57 | import publicPicture from '@/components/publicPicture/index.vue' |
| 58 | export default { | 58 | export default { |
| 59 | name: 'PreviewImage', | 59 | name: 'PreviewImage', |
| ... | @@ -194,9 +194,12 @@ | ... | @@ -194,9 +194,12 @@ |
| 194 | formData.append('file', file) | 194 | formData.append('file', file) |
| 195 | formData.append("bsmSj", this.previewImg.bsmSj); | 195 | formData.append("bsmSj", this.previewImg.bsmSj); |
| 196 | formData.append("bsmSlsq", this.previewImg.bsmSlsq); | 196 | formData.append("bsmSlsq", this.previewImg.bsmSlsq); |
| 197 | if (this.previewImg.imgList.length > 0) { | ||
| 198 | formData.append("ssBsmClmx", this.previewImg.imgList[this.previewImg.index].bsmClmx); | ||
| 199 | } | ||
| 197 | uploadSjClmx(formData).then((res) => { | 200 | uploadSjClmx(formData).then((res) => { |
| 198 | if (res.code == 200) { | 201 | if (res.code == 200) { |
| 199 | this.$emit('updateList', res.result) | 202 | this.$emit('updateList', { children: res.result, bsmSj: this.previewImg.bsmSj }) |
| 200 | this.$message({ | 203 | this.$message({ |
| 201 | message: '上传成功!', | 204 | message: '上传成功!', |
| 202 | type: 'success' | 205 | type: 'success' | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-10-12 10:00:08 | 4 | * @LastEditTime: 2023-10-31 10:48:04 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="rlPopup"> | 7 | <div class="rlPopup"> |
| ... | @@ -53,7 +53,7 @@ | ... | @@ -53,7 +53,7 @@ |
| 53 | <script> | 53 | <script> |
| 54 | import PhotoZoom from '@/components/PhotoZoom' | 54 | import PhotoZoom from '@/components/PhotoZoom' |
| 55 | import { getAltimeterInfo, getUuid } from '@/utils/operation.js' | 55 | import { getAltimeterInfo, getUuid } from '@/utils/operation.js' |
| 56 | import { uploadBatch, deleteClmx, move } from "@/api/clxx.js"; | 56 | import { uploadBatch, deleteClmx, move, uploadSjClmx } from "@/api/clxx.js"; |
| 57 | import publicPicture from '@/components/publicPicture/index.vue' | 57 | import publicPicture from '@/components/publicPicture/index.vue' |
| 58 | export default { | 58 | export default { |
| 59 | name: 'PreviewImage', | 59 | name: 'PreviewImage', |
| ... | @@ -194,6 +194,9 @@ | ... | @@ -194,6 +194,9 @@ |
| 194 | formData.append('file', file) | 194 | formData.append('file', file) |
| 195 | formData.append("bsmSj", this.previewImg.bsmSj); | 195 | formData.append("bsmSj", this.previewImg.bsmSj); |
| 196 | formData.append("bsmSlsq", this.previewImg.bsmSlsq); | 196 | formData.append("bsmSlsq", this.previewImg.bsmSlsq); |
| 197 | if (this.previewImg.imgList.length > 0) { | ||
| 198 | formData.append("ssBsmClmx", this.previewImg.imgList[this.previewImg.index].bsmClmx); | ||
| 199 | } | ||
| 197 | uploadSjClmx(formData).then((res) => { | 200 | uploadSjClmx(formData).then((res) => { |
| 198 | if (res.code == 200) { | 201 | if (res.code == 200) { |
| 199 | this.$emit('updateList', res.result) | 202 | this.$emit('updateList', res.result) | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: workFrame左侧菜单列表-普通 | 2 | * @Description: workFrame左侧菜单列表-普通 |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-10-18 14:06:31 | 4 | * @LastEditTime: 2023-10-31 10:42:21 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> | 7 | <div class="leftmenu" :class="{ 'animation-map-drawer': isShowdrawer }"> | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-10-12 09:55:54 | 4 | * @LastEditTime: 2023-10-31 10:46:54 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="rlPopup"> | 7 | <div class="rlPopup"> |
| ... | @@ -53,7 +53,7 @@ | ... | @@ -53,7 +53,7 @@ |
| 53 | <script> | 53 | <script> |
| 54 | import PhotoZoom from '@/components/PhotoZoom' | 54 | import PhotoZoom from '@/components/PhotoZoom' |
| 55 | import { getAltimeterInfo, getUuid } from '@/utils/operation.js' | 55 | import { getAltimeterInfo, getUuid } from '@/utils/operation.js' |
| 56 | import { uploadBatch, deleteFile, move } from "@/api/company.js" | 56 | import { uploadBatch, deleteFile, move, uploadSjClmx } from "@/api/company.js" |
| 57 | import publicPicture from '@/components/publicPicture/index.vue' | 57 | import publicPicture from '@/components/publicPicture/index.vue' |
| 58 | export default { | 58 | export default { |
| 59 | name: 'PreviewImage', | 59 | name: 'PreviewImage', |
| ... | @@ -198,6 +198,9 @@ | ... | @@ -198,6 +198,9 @@ |
| 198 | formData.append('file', file) | 198 | formData.append('file', file) |
| 199 | formData.append("bsmMaterial ", this.previewImg.bsmMaterial); | 199 | formData.append("bsmMaterial ", this.previewImg.bsmMaterial); |
| 200 | formData.append("bsmSlsq", this.previewImg.bsmSlsq); | 200 | formData.append("bsmSlsq", this.previewImg.bsmSlsq); |
| 201 | if (this.previewImg.imgList.length > 0) { | ||
| 202 | formData.append("ssbsmMaterial", this.previewImg.imgList[this.previewImg.index].bsmMaterial); | ||
| 203 | } | ||
| 201 | uploadSjClmx(formData).then((res) => { | 204 | uploadSjClmx(formData).then((res) => { |
| 202 | if (res.code == 200) { | 205 | if (res.code == 200) { |
| 203 | this.$emit('updateList', res.result) | 206 | this.$emit('updateList', res.result) | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Description: | 2 | * @Description: |
| 3 | * @Autor: renchao | 3 | * @Autor: renchao |
| 4 | * @LastEditTime: 2023-10-26 15:12:41 | 4 | * @LastEditTime: 2023-10-31 10:49:31 |
| 5 | --> | 5 | --> |
| 6 | <template> | 6 | <template> |
| 7 | <div class="from-clues"> | 7 | <div class="from-clues"> |
| ... | @@ -282,6 +282,7 @@ | ... | @@ -282,6 +282,7 @@ |
| 282 | handleRowClick (row) { | 282 | handleRowClick (row) { |
| 283 | this.queryForm.bhqkbsm = row.bhqkbsm | 283 | this.queryForm.bhqkbsm = row.bhqkbsm |
| 284 | this.radioVal = row.bdcdyh | 284 | this.radioVal = row.bdcdyh |
| 285 | row.bglx = '1' | ||
| 285 | selectZdjbxxSplitMergeLast({ ...this.queryForm }).then((res) => { | 286 | selectZdjbxxSplitMergeLast({ ...this.queryForm }).then((res) => { |
| 286 | this.$endLoading(); | 287 | this.$endLoading(); |
| 287 | if (res.code === 200) { | 288 | if (res.code === 200) { | ... | ... |
| ... | @@ -65,9 +65,8 @@ class data extends filter { | ... | @@ -65,9 +65,8 @@ class data extends filter { |
| 65 | }, | 65 | }, |
| 66 | { | 66 | { |
| 67 | label: '操作', | 67 | label: '操作', |
| 68 | width: '90', | 68 | width: '80', |
| 69 | align: 'center', | 69 | align: 'center', |
| 70 | fixed: 'right', | ||
| 71 | render: (h, scope) => { | 70 | render: (h, scope) => { |
| 72 | return <el-button type="text" icon="el-icon-film" onClick={() => { vm.openlpbClick(scope) }}>楼盘表</el-button> | 71 | return <el-button type="text" icon="el-icon-film" onClick={() => { vm.openlpbClick(scope) }}>楼盘表</el-button> |
| 73 | } | 72 | } | ... | ... |
-
Please register or sign in to post a comment