|
@ -32,15 +32,15 @@ |
|
|
</div> |
|
|
</div> |
|
|
<div class="div_btn"> |
|
|
<div class="div_btn"> |
|
|
<el-button style="float:left" |
|
|
<el-button style="float:left" |
|
|
type="warning" |
|
|
type="yellow" |
|
|
size="small" |
|
|
size="small" |
|
|
@click="handleExport">导出</el-button> |
|
|
@click="handleExport">导出</el-button> |
|
|
<el-button style="float:left" |
|
|
<el-button style="float:left" |
|
|
type="success" |
|
|
type="green" |
|
|
size="small" |
|
|
size="small" |
|
|
@click="handleAdd">新增小区</el-button> |
|
|
@click="handleAdd">新增小区</el-button> |
|
|
<el-button style="float:left" |
|
|
<el-button style="float:left" |
|
|
type="primary" |
|
|
type="blue" |
|
|
size="small" |
|
|
size="small" |
|
|
@click="handleExportModule">下载小区模板</el-button> |
|
|
@click="handleExportModule">下载小区模板</el-button> |
|
|
|
|
|
|
|
@ -55,7 +55,7 @@ |
|
|
:http-request="uploadFile"> |
|
|
:http-request="uploadFile"> |
|
|
<el-button style="margin-left:10px" |
|
|
<el-button style="margin-left:10px" |
|
|
size="small" |
|
|
size="small" |
|
|
type="danger">导入小区数据</el-button> |
|
|
type="red">导入小区数据</el-button> |
|
|
</el-upload> |
|
|
</el-upload> |
|
|
|
|
|
|
|
|
</div> |
|
|
</div> |
|
@ -90,6 +90,10 @@ |
|
|
class="operate"> |
|
|
class="operate"> |
|
|
<template slot-scope="scope"> |
|
|
<template slot-scope="scope"> |
|
|
|
|
|
|
|
|
|
|
|
<!-- <el-button type="text" |
|
|
|
|
|
style="color:#00A7A9;text-decoration: underline;" |
|
|
|
|
|
size="small" |
|
|
|
|
|
@click="handleToBuild(scope.row)">进入</el-button> --> |
|
|
<el-button type="text" |
|
|
<el-button type="text" |
|
|
style="color:#1C6AFD;text-decoration: underline;" |
|
|
style="color:#1C6AFD;text-decoration: underline;" |
|
|
size="small" |
|
|
size="small" |
|
@ -123,7 +127,7 @@ |
|
|
:close-on-click-modal="false" |
|
|
:close-on-click-modal="false" |
|
|
:close-on-press-escape="false" |
|
|
:close-on-press-escape="false" |
|
|
:title="formTitle" |
|
|
:title="formTitle" |
|
|
width="900px" |
|
|
width="850px" |
|
|
top="5vh" |
|
|
top="5vh" |
|
|
@closed="diaClose"> |
|
|
@closed="diaClose"> |
|
|
<community-form ref="ref_form" |
|
|
<community-form ref="ref_form" |
|
@ -446,6 +450,26 @@ export default { |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|
<style lang="scss" scoped > |
|
|
<style lang="scss" scoped > |
|
|
|
|
|
.el-button--green { |
|
|
|
|
|
color: #fff; |
|
|
|
|
|
background-color: #22c1c3; |
|
|
|
|
|
border-color: #22c1c3; |
|
|
|
|
|
} |
|
|
|
|
|
.el-button--yellow { |
|
|
|
|
|
color: #fff; |
|
|
|
|
|
background-color: #feb349; |
|
|
|
|
|
border-color: #feb349; |
|
|
|
|
|
} |
|
|
|
|
|
.el-button--blue { |
|
|
|
|
|
color: #fff; |
|
|
|
|
|
background-color: #2195fe; |
|
|
|
|
|
border-color: #2195fe; |
|
|
|
|
|
} |
|
|
|
|
|
.el-button--red { |
|
|
|
|
|
color: #fff; |
|
|
|
|
|
background-color: #fe6252; |
|
|
|
|
|
border-color: #fe6252; |
|
|
|
|
|
} |
|
|
.div_search { |
|
|
.div_search { |
|
|
display: flex; |
|
|
display: flex; |
|
|
|
|
|
|
|
|