Browse Source

土地管理

master
wklion 4 years ago
parent
commit
9b9d81ed30
  1. 2
      public/index.html
  2. 8
      src/const/website.js
  3. 2
      src/page/index/logo.vue
  4. 2
      src/router/avue-router.js
  5. 6
      src/styles/public.scss
  6. 34
      src/views/land/api/noLand.js
  7. 283
      src/views/land/handLand/index.vue
  8. 263
      src/views/land/noneHandLand/index.vue

2
public/index.html

@ -14,7 +14,7 @@
<!-- <link rel="stylesheet" href="<%= BASE_URL %>cdn/avue/2.5.3/avue.css"> -->
<link rel="stylesheet" href="<%= BASE_URL %>cdn/avue/2.5.3/index.css">
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
<title>cinderella</title>
<title>艾儿后台数据管理系统</title>
</head>
<body>

8
src/const/website.js

@ -1,13 +1,13 @@
export default {
title: 'cinderella',
logo: 'cinderella',
title: '艾儿后台数据管理系统',
logo: '',
key: 'cinderella', // 配置主键,目前用于存储
indexTitle: 'cinderella',
indexTitle: '艾儿后台数据管理系统',
whiteList: ['/login', '/404', '/401', '/lock'], // 配置无权限可以访问的页面
whiteTagList: ['/login', '/404', '/401', '/lock'], // 配置不添加tags页面 ('/advanced-router/mutative-detail/*'——*为通配符)
lockPage: '/lock',
tokenTime: 6000,
infoTitle: 'cinderella',
infoTitle: '艾儿后台数据管理系统',
statusWhiteList: [428],
// 配置首页不可关闭
isFirstPage: false,

2
src/page/index/logo.vue

@ -17,7 +17,7 @@
</span>
</template>
</transition-group> -->
<p class="title">cinderella</p>
<p class="title"></p>
<!-- <p class="subtitle">国数字版权综合服务平台</p> -->
</div>
</template>

2
src/router/avue-router.js

@ -18,7 +18,7 @@ RouterPlugin.install = function (router, store) {
this.$router.$avueRouter = {
// 全局配置
$website: this.$store.getters.website,
$defaultTitle: 'Cinderella',
$defaultTitle: '艾儿后台数据管理系统',
routerList: [],
group: '',
safe: this,

6
src/styles/public.scss

@ -132,12 +132,16 @@
.normal_page{
margin: 20px;
background-color: white;
display: flex;
flex-direction: column;
.page_search{
padding: 20px;
background-color: white;
}
.page_content{
flex: 1;
margin-top: 20px;
background-color: white;
.page_content_head{
padding: 20px;
.page_content_head_left {

34
src/views/land/api/noLand.js

@ -38,11 +38,13 @@ export function queryNoHandLandObj(id) {
}
// 发送到已挂牌
export function sendNoHandLandList(query) {
export function sendNoHandLandList(proposedseriaId) {
return request({
url: '/api/landtolist/sendLandList',
url: '/api/landtolist/sendLandList?',
method: 'post',
params: query
params: {
proposedseriaId: proposedseriaId
}
})
}
@ -61,4 +63,30 @@ export function downloadNoHandLandTemplate() {
headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
method: 'get'
})
}
// 通过公告序号经纬度列表查询
export function queryLonLatList(proposedseriaId) {
return request({
url: '/api/landtolistlonlat/list/' + proposedseriaId,
method: 'get'
})
}
// 新增已挂牌地块经纬度
export function addLonLat(param) {
return request({
url: '/api/landtolistlonlat',
method: 'post',
headers: {'Content-Type': 'application/json'},
data: param
})
}
// 通过ID删除拟挂牌地块
export function delLandLonLat(proposedseriaId,landCode) {
return request({
url: '/api/landtolistlonlat/'+proposedseriaId+"/"+landCode,
method: 'delete'
})
}

283
src/views/land/handLand/index.vue

@ -93,7 +93,8 @@
:data="tableData"
border
@selection-change="handleSelectionChange"
style="width: 100%"
style="width: 100%;"
max-height="630"
ref="multipleTable"
v-loading="loading"
>
@ -104,6 +105,7 @@
:prop="item.prop"
:label="item.label"
:width="item.width"
:fixed="item.fixed"
:show-overflow-tooltip="item.hideMore"
>
</el-table-column>
@ -141,20 +143,21 @@
width="70%"
:modal="false"
>
<span>*数据为必填项</span>
<span><span style="color:red;">*</span>数据为必填项</span>
<el-form
:model="editForm"
:rules="rules"
size="mini"
ref="ruleForm"
style="height: 500px"
style="height: 500px; flex: 1; overflow: auto"
:disabled="readOnly"
>
<el-collapse v-model="activeNames" @change="editItemChange">
<el-collapse-item name="2">
<el-collapse-item name="1">
<template slot="title">
<div class="ti-box">
<span>公告信息</span>
<span class="ti-tag">{{ setTagName(2) }}</span>
<span class="ti-tag">{{ setTagName(1) }}</span>
</div>
</template>
<el-row>
@ -275,11 +278,11 @@
</el-col>
</el-row>
</el-collapse-item>
<el-collapse-item name="3">
<el-collapse-item name="2">
<template slot="title">
<div class="ti-box">
<span>规划条件</span>
<span class="ti-tag">{{ setTagName(3) }}</span>
<span class="ti-tag">{{ setTagName(2) }}</span>
</div>
</template>
<el-row>
@ -311,11 +314,11 @@
</el-col>
</el-row>
</el-collapse-item>
<el-collapse-item name="4">
<el-collapse-item name="3">
<template slot="title">
<div class="ti-box">
<span>建设条件</span>
<span class="ti-tag">{{ setTagName(4) }}</span>
<span class="ti-tag">{{ setTagName(3) }}</span>
</div>
</template>
<el-row>
@ -366,11 +369,11 @@
</el-col>
</el-row>
</el-collapse-item>
<el-collapse-item name="5">
<el-collapse-item name="4">
<template slot="title">
<div class="ti-box">
<span>竞买条件</span>
<span class="ti-tag">{{ setTagName(5) }}</span>
<span class="ti-tag">{{ setTagName(4) }}</span>
</div>
</template>
<el-row>
@ -415,11 +418,11 @@
</el-col>
</el-row>
</el-collapse-item>
<el-collapse-item name="6">
<el-collapse-item name="5">
<template slot="title">
<div class="ti-box">
<span>地理信息</span>
<span class="ti-tag">{{ setTagName(6) }}</span>
<span class="ti-tag">{{ setTagName(5) }}</span>
</div>
</template>
<el-row>
@ -472,7 +475,7 @@
</el-col>
</el-row>
</el-collapse-item>
<el-collapse-item name="7">
<el-collapse-item name="6">
<template slot="title">
<div class="ti-box">
<span>成交信息</span>
@ -557,11 +560,11 @@
</el-col>
</el-row>
</el-collapse-item>
<el-collapse-item name="8">
<el-collapse-item name="7">
<template slot="title">
<div class="ti-box">
<span>项目开发</span>
<span class="ti-tag">{{ setTagName(9) }}</span>
<span class="ti-tag">{{ setTagName(7) }}</span>
</div>
</template>
<el-row>
@ -614,7 +617,7 @@
</el-col>
</el-row>
</el-collapse-item>
<el-collapse-item name="9">
<el-collapse-item name="8">
<template slot="title">
<div class="ti-box">
<span>经纬度数据</span>
@ -622,27 +625,112 @@
</div>
</template>
<el-table :data="landLonLat" style="width: 100%">
<el-table-column prop="zdCode" label="宗地编号" width="180">
<el-table-column label="宗地编号" width="120">
<template scope="scope">
<el-input
v-model="scope.row.landCode"
v-if="scope.row.edit"
size="small"
></el-input>
<span style="margin-left: 10px" v-else>{{
scope.row.landCode
}}</span>
</template>
</el-table-column>
<el-table-column prop="lonLat" label="经纬度" width="180">
<el-table-column label="经纬度">
<template scope="scope">
<el-input
v-model="scope.row.landLonLat"
v-if="scope.row.edit"
size="small"
></el-input>
<span style="margin-left: 10px" v-else>{{
scope.row.landLonLat
}}</span>
</template>
</el-table-column>
<el-table-column prop="lineWidth" label="线条宽度" width="180">
<el-table-column label="线条宽度" width="80">
<template scope="scope">
<el-input
v-model="scope.row.lineWidth"
v-if="scope.row.edit"
size="small"
></el-input>
<span style="margin-left: 10px" v-else>{{
scope.row.lineWidth
}}</span>
</template>
</el-table-column>
<el-table-column prop="lineColor" label="线条颜色" width="180">
<el-table-column label="线条颜色" width="80">
<template scope="scope">
<el-color-picker v-model="scope.row.lineColor" :disabled="!scope.row.edit" size="small"></el-color-picker>
</template>
</el-table-column>
<el-table-column prop="lineT" label="线条不透明度" width="180">
<el-table-column label="线条不透明度" width="110">
<template scope="scope">
<el-input
v-model="scope.row.lineOpaqueness"
v-if="scope.row.edit"
size="small"
></el-input>
<span style="margin-left: 10px" v-else>{{
scope.row.lineOpaqueness
}}</span>
</template>
</el-table-column>
<el-table-column prop="fillColor" label="填充颜色" width="180">
<el-table-column label="填充颜色" width="80">
<template scope="scope">
<el-color-picker v-model="scope.row.fillColor" :disabled="!scope.row.edit" size="small"></el-color-picker>
</template>
</el-table-column>
<el-table-column prop="fillT" label="填充不透明度" width="180">
<el-table-column
prop="fillOpaqueness"
label="填充不透明度"
width="110"
>
<template scope="scope">
<el-input
v-model="scope.row.fillOpaqueness"
v-if="scope.row.edit"
size="small"
></el-input>
<span style="margin-left: 10px" v-else>{{
scope.row.fillOpaqueness
}}</span>
</template>
</el-table-column>
<el-table-column fixed="right" label="操作" width="100">
<template slot-scope="scope">
<el-button type="text" size="small">编辑</el-button>
<el-button type="text" size="small">删除</el-button>
<el-button type="text" size="small" v-show="scope.row.edit" @click="handleLonLatOKClick(scope.row)"
>确定</el-button
>
<el-button type="text" size="small" v-show="!scope.row.edit"
>编辑</el-button
>
<el-button
type="text"
size="small"
v-show="!scope.row.edit"
@click="handleLonLatDelClick(scope.row)"
>删除</el-button
>
<el-button type="text" size="small" v-show="scope.row.edit" @click="handleLonLatCancelClick(scope.row)"
>取消</el-button
>
</template>
</el-table-column>
</el-table>
<el-row style="text-align: center">
<el-button
type="text"
style="color: gray"
@click="addOneRowForLonLat"
>+添加一行</el-button
>
</el-row>
<el-row style="text-align: center">
<el-button type="text" style="color: gray">导入</el-button>
</el-row>
<el-row>
<el-col :span="8"> </el-col>
<el-col :span="8"> </el-col>
@ -651,11 +739,11 @@
</el-col>
</el-row>
</el-collapse-item>
<el-collapse-item name="10">
<el-collapse-item name="9">
<template slot="title">
<div class="ti-box">
<span>土拍举牌记录</span>
<span class="ti-tag">{{ setTagName(10) }}</span>
<span class="ti-tag">{{ setTagName(9) }}</span>
</div>
</template>
<el-table :data="landLonLat" style="width: 100%">
@ -709,14 +797,14 @@
</el-row>
</el-collapse-item>
<el-collapse-item name="11">
<el-collapse-item name="10">
<template slot="title">
<div class="ti-box">
<span>项目资料</span>
<span class="ti-tag">{{ setTagName(11) }}</span>
<span class="ti-tag">{{ setTagName(10) }}</span>
</div>
</template>
<el-tabs v-model="activeName" type="card" @tab-click="handleClick">
<el-tabs v-model="activeType" type="card">
<el-tab-pane label="规划条件函" name="tab1">
<el-upload action="#" list-type="picture-card">
<i class="el-icon-plus"></i> </el-upload
@ -764,6 +852,11 @@
</el-collapse-item>
</el-collapse>
</el-form>
<div class="dialog_op">
<el-button type="primary" @click="saveAllData" v-show="!readOnly"
>保存所有数据</el-button
>
</div>
</el-dialog>
</div>
</template>
@ -777,7 +870,7 @@ import {
downloadHandLandTemplate,
queryLonLatList,
addLonLat,
delLandLonLat
delLandLonLat,
} from "@/views/land/api/land";
import { downUrlFile } from "@/util/file";
@ -804,29 +897,25 @@ export default {
label: "公告序号",
prop: "annoId",
width: 150,
search: true,
rules: [
{
required: true,
message: "请输入公告序号",
trigger: "blur",
},
],
fixed: true,
},
{
label: "地块编号",
prop: "landCode",
width: 150,
fixed: true,
},
{
label: "地块位置",
prop: "landPosition",
width: 150,
fixed: true,
},
{
label: "土地用途",
prop: "landUsage",
width: 150,
fixed: true,
},
{
label: "土地出让面积(㎡)",
@ -1130,7 +1219,7 @@ export default {
dialogTitle: "新增数据",
// Form
editForm: {},
activeNames: [],
activeNames: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10"],
//
loading: false,
//
@ -1139,6 +1228,8 @@ export default {
readOnly: true,
//
hasSelectData: false,
// tab
activeType: "",
rules: {
annoId: [
{ required: true, message: "请输入公告序号", trigger: "blur" },
@ -1213,7 +1304,6 @@ export default {
},
this.searchForm
);
console.debug(param);
fetchHandLandList(param)
.then((response) => {
this.tableData = response.data.data.records;
@ -1272,6 +1362,7 @@ export default {
this.readOnly = false;
this.dialogFormVisible = true;
this.editForm = row;
this.queryLonLatList(row.landListedId);
},
//
@ -1305,15 +1396,7 @@ export default {
},
save() {
saveHandLandList(JSON.stringify(this.editForm)).then((res) => {
if (res.success) {
this.$message("保存成功");
this.dialogFormVisible = false;
} else {
console.debug(res);
this.$message.error("保存失败");
}
});
},
//
@ -1338,39 +1421,79 @@ export default {
},
//
queryLonLatList() {
let landListedId = "";
queryLonLatList(landListedId) {
queryLonLatList(landListedId).then((response) => {
this.landLonLat = response.data.data.records;
if (response.data.success) {
this.landLonLat = response.data.data;
} else {
this.landLonLat = [];
}
});
},
//
addLonLat(){
let param = {};
addLonLat(param).then(res=>{
if (res.success) {
//
saveAllData() {
saveHandLandList(JSON.stringify(this.editForm)).then((res) => {
if (res.data.success) {
this.$message("保存成功");
this.dialogFormVisible = false;
} else {
console.debug(res);
this.$message.error("保存失败");
}
});
},
// ID
delLandLonLat(){
let landListedId = "";
let landCode = '';
delLandLonLat(landListedId, landCode).then(res=>{
if (res.success) {
//
addOneRowForLonLat() {
let index = 0;
this.landLonLat.forEach((item) => {
item.edit = false;
item.index = index;
index++;
});
this.landLonLat.push({
annoId: this.editForm.annoId,
landListedId: this.editForm.landListedId,
landCode: "",
landLonLat: "",
lineColor: "#FF0000",
lineWidth: "",
lineOpaqueness: "",
fillColor: "#FF0000",
fillOpaqueness: "",
edit: true,
index:index
});
},
//
handleLonLatDelClick(row) {
delLandLonLat(row.landListedId, row.landCode).then((res) => {
if (res.data.success) {
this.$message("删除成功");
this.dialogFormVisible = false;
this.queryLonLatList(row.landListedId);
} else {
console.debug(res);
this.$message.error("删除失败");
}
});
},
//
handleLonLatOKClick(row){
row.edit = false;
addLonLat(row).then(res=>{
if (res.data.success) {
this.$message("保存成功");
this.queryLonLatList(row.landListedId);
} else {
this.$message.error("保存失败");
}
});
},
//
handleLonLatCancelClick(row){
this.landLonLat = this.landLonLat.splice(this.landLonLat.findIndex(item => item.index === row.index), 1);
}
},
};
@ -1384,14 +1507,38 @@ export default {
}
/deep/ .el-dialog__body {
height: 82vh;
background-color: #f0f2f5;
position: relative;
display: flex;
flex-direction: column;
}
/deep/ .el-input {
width: 90%;
}
/deep/ .el-collapse-item {
margin-top: 10px;
padding-left: 10px;
background-color: white;
}
/deep/ .el-collapse-item__wrap {
border-top: 1px solid #e8eaec;
}
.ti-box {
span {
font-size: 1rem;
}
}
.dialog_op {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
text-align: right;
background-color: white;
border-top: 1px solid #e8eaec;
padding: 5px;
}
</style>

263
src/views/land/noneHandLand/index.vue

@ -104,6 +104,7 @@
:prop="item.prop"
:label="item.label"
:width="item.width"
:fixed="item.fixed"
:show-overflow-tooltip="item.hideMore"
>
</el-table-column>
@ -115,7 +116,7 @@
<el-button type="text" size="small" @click="editItem(scope.row)"
>编辑</el-button
>
<el-button type="text" size="small">发送</el-button>
<el-button type="text" size="small" @click="send(scope.row)">发送</el-button>
<el-button type="text" size="small" @click="delItem(scope.row)"
>删除</el-button
>
@ -142,8 +143,8 @@
width="70%"
:modal="false"
>
<span>*数据为必填项</span>
<el-form :model="editForm" style="height: 500px" :disabled="readOnly">
<span><span style="color:red;">*</span>数据为必填项</span>
<el-form :model="editForm" style="height: 500px;flex:1;overflow:auto;" size="mini" :disabled="readOnly">
<el-collapse v-model="activeNames" @change="editItemChange">
<el-collapse-item name="1">
<template slot="title">
@ -656,27 +657,112 @@
</div>
</template>
<el-table :data="landLonLat" style="width: 100%">
<el-table-column prop="zdCode" label="宗地编号" width="180">
<el-table-column label="宗地编号" width="120">
<template scope="scope">
<el-input
v-model="scope.row.landCode"
v-if="scope.row.edit"
size="small"
></el-input>
<span style="margin-left: 10px" v-else>{{
scope.row.landCode
}}</span>
</template>
</el-table-column>
<el-table-column prop="lonLat" label="经纬度" width="180">
<el-table-column label="经纬度">
<template scope="scope">
<el-input
v-model="scope.row.landLonLat"
v-if="scope.row.edit"
size="small"
></el-input>
<span style="margin-left: 10px" v-else>{{
scope.row.landLonLat
}}</span>
</template>
</el-table-column>
<el-table-column prop="lineWidth" label="线条宽度" width="180">
<el-table-column label="线条宽度" width="80">
<template scope="scope">
<el-input
v-model="scope.row.lineWidth"
v-if="scope.row.edit"
size="small"
></el-input>
<span style="margin-left: 10px" v-else>{{
scope.row.lineWidth
}}</span>
</template>
</el-table-column>
<el-table-column prop="lineColor" label="线条颜色" width="180">
<el-table-column label="线条颜色" width="80">
<template scope="scope">
<el-color-picker v-model="scope.row.lineColor" :disabled="!scope.row.edit" size="small"></el-color-picker>
</template>
</el-table-column>
<el-table-column prop="lineT" label="线条不透明度" width="180">
<el-table-column label="线条不透明度" width="110">
<template scope="scope">
<el-input
v-model="scope.row.lineOpaqueness"
v-if="scope.row.edit"
size="small"
></el-input>
<span style="margin-left: 10px" v-else>{{
scope.row.lineOpaqueness
}}</span>
</template>
</el-table-column>
<el-table-column prop="fillColor" label="填充颜色" width="180">
<el-table-column label="填充颜色" width="80">
<template scope="scope">
<el-color-picker v-model="scope.row.fillColor" :disabled="!scope.row.edit" size="small"></el-color-picker>
</template>
</el-table-column>
<el-table-column prop="fillT" label="填充不透明度" width="180">
<el-table-column
prop="fillOpaqueness"
label="填充不透明度"
width="110"
>
<template scope="scope">
<el-input
v-model="scope.row.fillOpaqueness"
v-if="scope.row.edit"
size="small"
></el-input>
<span style="margin-left: 10px" v-else>{{
scope.row.fillOpaqueness
}}</span>
</template>
</el-table-column>
<el-table-column fixed="right" label="操作" width="100">
<template slot-scope="scope">
<el-button type="text" size="small">编辑</el-button>
<el-button type="text" size="small">删除</el-button>
<el-button type="text" size="small" v-show="scope.row.edit" @click="handleLonLatOKClick(scope.row)"
>确定</el-button
>
<el-button type="text" size="small" v-show="!scope.row.edit"
>编辑</el-button
>
<el-button
type="text"
size="small"
v-show="!scope.row.edit"
@click="handleLonLatDelClick(scope.row)"
>删除</el-button
>
<el-button type="text" size="small" v-show="scope.row.edit" @click="handleLonLatCancelClick(scope.row)"
>取消</el-button
>
</template>
</el-table-column>
</el-table>
<el-row style="text-align: center">
<el-button
type="text"
style="color: gray"
@click="addOneRowForLonLat"
>+添加一行</el-button
>
</el-row>
<el-row style="text-align: center">
<el-button type="text" style="color: gray">导入</el-button>
</el-row>
<el-row>
<el-col :span="8"> </el-col>
<el-col :span="8"> </el-col>
@ -686,14 +772,14 @@
</el-row>
</el-collapse-item>
<el-collapse-item name="11">
<el-collapse-item name="10">
<template slot="title">
<div class="ti-box">
<span>项目资料</span>
<span class="ti-tag">{{ setTagName(11) }}</span>
<span class="ti-tag">{{ setTagName(10) }}</span>
</div>
</template>
<el-tabs v-model="activeNames" type="card">
<el-tabs v-model="activeType" type="card">
<el-tab-pane label="规划条件函" name="tab1">
<el-upload action="#" list-type="picture-card">
<i class="el-icon-plus"></i> </el-upload
@ -741,6 +827,9 @@
</el-collapse-item>
</el-collapse>
</el-form>
<div class="dialog_op">
<el-button type="primary" @click="saveAllData" v-show="!readOnly">保存所有数据</el-button>
</div>
</el-dialog>
</div>
</template>
@ -752,6 +841,10 @@ import {
delNoHandLandObj,
exportNoHandLandToListExcel,
downloadNoHandLandTemplate,
queryLonLatList,
addLonLat,
delLandLonLat,
sendNoHandLandList
} from "@/views/land/api/noLand";
import { downUrlFile } from "@/util/file";
import fileDownload from "js-file-download";
@ -779,29 +872,25 @@ export default {
label: "公告序号",
prop: "annoId",
width: 150,
search: true,
rules: [
{
required: true,
message: "请输入公告序号",
trigger: "blur",
},
],
fixed: true,
},
{
label: "地块编号",
prop: "landCode",
width: 150,
fixed: true,
},
{
label: "地块位置",
prop: "landPosition",
width: 150,
fixed: true,
},
{
label: "土地用途",
prop: "landUsage",
width: 150,
fixed: true,
},
{
label: "土地出让面积(㎡)",
@ -1109,7 +1198,7 @@ export default {
dialogTitle: "新增数据",
// Form
editForm: {},
activeNames: [],
activeNames: ['1','2','3','4','5','6','7','8','9','10'],
//
loading: false,
//
@ -1118,6 +1207,8 @@ export default {
readOnly: true,
//
hasSelectData: false,
// tab
activeType:'',
};
},
created() {},
@ -1233,7 +1324,7 @@ export default {
this.readOnly = false;
this.dialogFormVisible = true;
this.editForm = row;
console.debug(this.editForm);
this.queryLonLatList(row.proposedseriaId);
},
//
@ -1267,15 +1358,6 @@ export default {
},
save() {
saveNoHandLandList(JSON.stringify(this.editForm)).then((res) => {
if (res.success) {
this.$message("保存成功");
this.dialogFormVisible = false;
} else {
console.debug(res);
this.$message.error("保存失败");
}
});
},
//
@ -1298,6 +1380,96 @@ export default {
clearSelection() {
this.$refs.multipleTable.clearSelection();
},
//
queryLonLatList(proposedseriaId) {
queryLonLatList(proposedseriaId).then((response) => {
if (response.data.success) {
this.landLonLat = response.data.data;
} else {
this.landLonLat = [];
}
});
},
//
saveAllData(){
saveNoHandLandList(JSON.stringify(this.editForm)).then((res) => {
if (res.data.success) {
this.$message("保存成功");
this.dialogFormVisible = false;
} else {
this.$message.error("保存失败");
}
});
},
//
addOneRowForLonLat() {
let index = 0;
this.landLonLat.forEach((item) => {
item.edit = false;
item.index = index;
index++;
});
this.landLonLat.push({
// annoId: this.editForm.annoId,
proposedseriaId: this.editForm.proposedseriaId,
landCode: "",
landLonLat: "",
lineColor: "#FF0000",
lineWidth: "",
lineOpaqueness: "",
fillColor: "#FF0000",
fillOpaqueness: "",
edit: true,
index:index
});
},
//
handleLonLatDelClick(row) {
delLandLonLat(row.proposedseriaId, row.landCode).then((res) => {
if (res.data.success) {
this.$message("删除成功");
this.queryLonLatList(row.proposedseriaId);
} else {
this.$message.error("删除失败");
}
});
},
//
handleLonLatOKClick(row){
row.edit = false;
addLonLat(row).then(res=>{
if (res.data.success) {
this.$message("保存成功");
this.queryLonLatList(row.proposedseriaId);
} else {
this.$message.error("保存失败");
}
});
},
//
handleLonLatCancelClick(row){
this.landLonLat = this.landLonLat.splice(this.landLonLat.findIndex(item => item.index === row.index), 1);
},
//
send(row){
console.debug(row.proposedseriaId);
sendNoHandLandList(row.proposedseriaId).then(res=>{
if(res.data.success){
this.$message("发送成功");
this.onSubmit();
}
else{
this.$message.error("发送失败");
}
});
}
},
};
</script>
@ -1310,15 +1482,38 @@ export default {
}
/deep/ .el-dialog__body {
height: 82vh;
background-color: #F0F2F5;
position: relative;
display: flex;
flex-direction: column;
}
/deep/ .el-input {
width: 90%;
}
/deep/ .el-collapse-item{
margin-top: 10px;
padding-left: 10px;
background-color: white;
}
/deep/ .el-collapse-item__wrap{
border-top: 1px solid #E8EAEC;
}
.ti-box {
span {
font-size: 1rem;
}
}
.dialog_op{
position: absolute;
left: 0;
bottom: 0;
width: 100%;
text-align: right;
background-color: white;
border-top: 1px solid #E8EAEC;
padding: 5px;
}
</style>

Loading…
Cancel
Save