3d3e620d by renchao@pashanhoo.com

style:国有建设用地使用权分割模块功能完善

1 parent f3126dd8
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-13 15:02:59
* @LastEditTime: 2023-10-31 10:21:32
-->
<template>
<div class="rlPopup">
......@@ -53,7 +53,7 @@
<script>
import PhotoZoom from '@/components/PhotoZoom'
import { getAltimeterInfo, getUuid } from '@/utils/operation.js'
import { uploadBatch, deleteClmx, move } from "@/api/clxx.js";
import { uploadBatch, deleteClmx, move, uploadSjClmx } from "@/api/clxx.js";
import publicPicture from '@/components/publicPicture/index.vue'
export default {
name: 'PreviewImage',
......@@ -194,9 +194,12 @@
formData.append('file', file)
formData.append("bsmSj", this.previewImg.bsmSj);
formData.append("bsmSlsq", this.previewImg.bsmSlsq);
if (this.previewImg.imgList.length > 0) {
formData.append("ssBsmClmx", this.previewImg.imgList[this.previewImg.index].bsmClmx);
}
uploadSjClmx(formData).then((res) => {
if (res.code == 200) {
this.$emit('updateList', res.result)
this.$emit('updateList', { children: res.result, bsmSj: this.previewImg.bsmSj })
this.$message({
message: '上传成功!',
type: 'success'
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-12 10:00:08
* @LastEditTime: 2023-10-31 09:54:53
-->
<template>
<div class="rlPopup">
......@@ -53,7 +53,7 @@
<script>
import PhotoZoom from '@/components/PhotoZoom'
import { getAltimeterInfo, getUuid } from '@/utils/operation.js'
import { uploadBatch, deleteClmx, move } from "@/api/clxx.js";
import { uploadBatch, deleteClmx, move, uploadSjClmx } from "@/api/clxx.js";
import publicPicture from '@/components/publicPicture/index.vue'
export default {
name: 'PreviewImage',
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-12 09:55:54
* @LastEditTime: 2023-10-31 09:55:03
-->
<template>
<div class="rlPopup">
......@@ -53,7 +53,7 @@
<script>
import PhotoZoom from '@/components/PhotoZoom'
import { getAltimeterInfo, getUuid } from '@/utils/operation.js'
import { uploadBatch, deleteFile, move } from "@/api/company.js"
import { uploadBatch, deleteFile, move, uploadSjClmx } from "@/api/company.js"
import publicPicture from '@/components/publicPicture/index.vue'
export default {
name: 'PreviewImage',
......
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-26 15:07:21
* @LastEditTime: 2023-10-31 10:33:11
-->
<template>
<div class="from-clues">
......@@ -282,6 +282,7 @@
handleRowClick (row) {
this.queryForm.bhqkbsm = row.bhqkbsm
this.radioVal = row.bdcdyh
row.bglx = '1'
selectZdjbxxSplitMergeLast({ ...this.queryForm }).then((res) => {
this.$endLoading();
if (res.code === 200) {
......
......@@ -65,9 +65,8 @@ class data extends filter {
},
{
label: '操作',
width: '90',
width: '80',
align: 'center',
fixed: 'right',
render: (h, scope) => {
return <el-button type="text" icon="el-icon-film" onClick={() => { vm.openlpbClick(scope) }}>楼盘表</el-button>
}
......