123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632 |
- <template>
- <div>
- <div class="custom-tree-container">
- <div class="block-l">
- <el-card shadow="hover">
- <el-tag class="full space-vertical">当前所选:载体结构</el-tag>
- <!-- @node-click="handleDeptNodeClick" -->
- <el-tree
- ref="selectTree"
- default-expand-all
- :data="DeptTree"
- node-key="id"
- :indent="deptTreeIndent"
- accordion
- :expand-on-click-node="expandDeptClick"
- :default-expanded-keys="expandedDeptKey"
- node-click="(data, node, item) => nodeClick(data, node, item)"
- @node-click="getCheckedNodes"
- >
- <span slot-scope="{ node, data }" class="custom-tree-node">
- <span>
- <i v-if="data.level == 0" class="el-icon-s-home" />
- <i v-else-if="data.level == 1" class="el-icon-menu" />
- <i v-else class="el-icon-link" />
- {{ node.label }}
- </span>
- <span v-if="data.level == 0">
- <el-link class="space" type="primary" @click="() => unFoldAll()">展开</el-link>
- <el-link class="space" type="primary" @click="() => collapseAll()">折叠</el-link>
- </span>
- </span>
- </el-tree>
- </el-card>
- </div>
- <div class="block-r">
- <el-row class="handle-box" style="margin-bottom: 10px">
- <el-col :span="3">
- 单元/楼栋号
- </el-col>
- <el-col :span="20">
- <el-input v-model="queryParam.buildNum" size="small" placeholder="请输入楼栋号" class="ch-input-size" @keyup.enter.native="handleSearch()" />
- <el-button size="small" class="ch-button-export" style="float: right;margin-top: 4px" @click="handleExcel()"><i class="el-icon-menu" /> 导出Excel</el-button>
- <el-button size="small" class="ch-button-export" style="float: right;margin-top: 4px" @click="batchImport()"><i class="el-icon-menu" /> 批量导入</el-button>
- <el-button size="small" class="ch-button-add" style="float: right; margin-right: 10px; margin-top: 4px" @click="handleAdd()"><i class="el-icon-menu" /> 新增楼栋</el-button>
- <el-button size="small" class="ch-button" style="float: right;margin-top: 4px" @click="handleSearch()"><i class="el-icon-menu" /> 查询</el-button>
- <el-button size="small" class="ch-button-warning" style="float: right;margin-top: 4px" @click="handleReset()"><i class="el-icon-menu" /> 重置</el-button>
- </el-col>
- </el-row>
- <el-row class="handle-box">
- <el-col :span="24">
- <!-- @current-change="handleRowSelectChange" -->
- <el-table ref="singleTable" v-loading="loading" :data="AllData" highlight-current-row>
- <el-table-column label="编号" type="index" width="60" />
- <el-table-column label="楼盘/小区名称" prop="groupName" />
- <el-table-column label="分期名称" prop="discName" />
- <el-table-column label="单元/楼栋号" prop="buildNum" />
- <el-table-column label="总面积(㎡)" prop="area" />
- <el-table-column label="套数" prop="numberInfo" />
- <el-table-column label="操作" header-align="center" width="160">
- <template scope="scope">
- <el-button size="mini" type="text" class="editButton" @click="handleEdit(scope.row)">编辑</el-button>
- <el-button size="mini" type="text" class="deleButton" @click="handleDelete(scope.row)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- <div class="table-page">
- <el-pagination
- :current-page.sync="currentPage"
- :page-sizes="[10, 20, 50, 100]"
- :page-size="pageSize"
- background
- layout="total, sizes, prev, pager, next, jumper"
- :total="allpage"
- @size-change="handleSizeChange"
- @current-change="handleCurrentChange"
- />
- </div>
- </el-col>
- </el-row>
- </div>
- </div>
- <el-dialog :title="dialogTitle" :visible.sync="dialogVisible" width="950px" top="50px" append-to-body @open="dlgOpen" @close="dlgClose">
- <el-form ref="buildForm" :model="buildForm" style="width: 100%;padding: 5px" :rules="commitRules">
- <el-row>
- <el-col style="padding-bottom: 10px">
- <span class="card_title">基本信息</span>
- <el-card shadow="always" style="padding-top: 10px">
- <el-row>
- <el-col :span="4" class="col-txt"><span>父级</span></el-col>
- <el-col :span="20" class="col-input">
- <el-form-item>
- <!-- @change="handleChange" -->
- <el-cascader
- ref="findids"
- v-model="buildForm.findids"
- class="full"
- :options="options"
- clearable
- @change="handleChange"
- />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="4" class="col-txt"><span>*单元/楼栋号</span></el-col>
- <el-col :span="8" class="col-input">
- <el-form-item prop="buildNum">
- <el-input v-model="buildForm.buildNum" />
- </el-form-item>
- </el-col>
- <el-col :span="4" class="col-txt"><span>*施工号</span></el-col>
- <el-col :span="8" class="col-input">
- <el-form-item prop="constructionNum">
- <el-input v-model="buildForm.constructionNum" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="4" class="col-txt"><span>*总面积(㎡)</span></el-col>
- <el-col :span="8" class="col-input">
- <el-form-item prop="area">
- <el-input v-model="buildForm.area" />
- </el-form-item>
- </el-col>
- <el-col :span="4" class="col-txt"><span>*住宅面积(㎡)</span></el-col>
- <el-col :span="8" class="col-input">
- <el-form-item prop="residentialArea">
- <el-input v-model="buildForm.residentialArea" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="4" class="col-txt"><span>*非住宅面积(㎡)</span></el-col>
- <el-col :span="8" class="col-input">
- <el-form-item prop="unResidentialArea">
- <el-input v-model="buildForm.unResidentialArea" />
- </el-form-item>
- </el-col>
- <el-col :span="4" class="col-txt"><span>*占地面积</span></el-col>
- <el-col :span="8" class="col-input">
- <el-form-item prop="coverAnArea">
- <el-input v-model="buildForm.coverAnArea" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="4" class="col-txt"><span>*地下面积</span></el-col>
- <el-col :span="8" class="col-input">
- <el-form-item prop="undergroundArea">
- <el-input v-model="buildForm.undergroundArea" />
- </el-form-item>
- </el-col>
- <el-col :span="4" class="col-txt"><span>*房号</span></el-col>
- <el-col :span="8" class="col-input">
- <el-form-item prop="roomNum">
- <el-input v-model="buildForm.roomNum" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="4" class="col-txt"><span>*套数</span></el-col>
- <el-col :span="8" class="col-input">
- <el-form-item prop="numberInfo">
- <el-input v-model="buildForm.numberInfo" />
- </el-form-item>
- </el-col>
- <el-col :span="4" class="col-txt"><span>*总层数</span></el-col>
- <el-col :span="8" class="col-input">
- <el-form-item prop="floors">
- <el-input v-model="buildForm.floors" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="4" class="col-txt"><span>*地上层数</span></el-col>
- <el-col :span="8" class="col-input">
- <el-form-item prop="overgroundFloors">
- <el-input v-model="buildForm.overgroundFloors" />
- </el-form-item>
- </el-col>
- <el-col :span="4" class="col-txt"><span>*地下层数</span></el-col>
- <el-col :span="8" class="col-input">
- <el-form-item prop="undergroundFloors">
- <el-input v-model="buildForm.undergroundFloors" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="4" class="col-txt"><span>*结构</span></el-col>
- <el-col :span="8" class="col-input">
- <el-form-item prop="structure">
- <el-select v-model="buildForm.structure" placeholder="" filterable :disabled="isView">
- <el-option
- v-for="item in dc_data.BUILD_STRUCTURE"
- :key="item.value"
- :label="item.label"
- :value="item.value"
- />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="4" class="col-txt"><span>*行政区划</span></el-col>
- <el-col :span="8" class="col-input">
- <el-form-item prop="regionalismCode">
- <el-input v-model="buildForm.regionalismCode" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="4" class="col-txt"><span>*地号</span></el-col>
- <el-col :span="8" class="col-input">
- <el-form-item prop="landCode">
- <el-input v-model="buildForm.landCode" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="4" class="col-txt"><span>备注</span></el-col>
- <el-col :span="20" class="col-input">
- <el-form-item>
- <el-input v-model="buildForm.remark" type="textarea" :autosize="{ minRows: 2, maxRows: 100}" placeholder="请输入内容" />
- </el-form-item>
- </el-col>
- </el-row>
- <el-row>
- <el-col :span="7" class="col-txt"><span>标准价格参考层及差价系数备注说明</span></el-col>
- <el-col :span="17" class="col-input">
- <el-form-item>
- <el-input v-model="buildForm.priceRemark" type="textarea" :autosize="{ minRows: 2, maxRows: 100}" placeholder="请输入内容" />
- </el-form-item>
- </el-col>
- </el-row>
- </el-card>
- </el-col>
- </el-row>
- </el-form>
- <div slot="footer">
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button type="primary" @click="confirmSubmit()">确 定</el-button>
- </div>
- </el-dialog>
- <el-dialog
- :visible.sync="dialogViewVisible"
- :close-on-click-modal="false"
- :close-on-press-escape="false"
- width="950px"
- top="50px"
- append-to-body
- >
- <build-view ref="buildView" @cancel="cancel" />
- </el-dialog>
- <!-- 批量导入 -->
- <upload-cost
- v-if="importVisible"
- :dialog-visible="importVisible"
- :import-type="importType"
- :upload-title="uploadTitle"
- :import-title="importTitle"
- @cancelUpload="cancelImport"
- />
- </div>
- </template>
- <script>
- import Base from '@/views/base/base'
- import BaseData from '@/views/base/baseData'
- import BaseDept from '@/views/base/baseDept'
- import constant from '../../../static/utils/constant'
- import BuildView from './buildView'
- import uploadCost from '@/views/parkAssets/component/uploadCost.vue'
- // import textEdit from '../../textEdit/index'
- export default {
- name: 'User',
- components: { uploadCost, BuildView },
- mixins: [Base, BaseData, BaseDept],
- data() {
- return {
- dc_key: ['BUILD_STRUCTURE'],
- // 查询参数
- queryParam: {
- ldmc: ''
- },
- buildForm: {
- },
- DeptTree: [],
- options: [],
- // 字典项
- dc_gender: [],
- dc_map: {},
- AllData: [],
- loading: false,
- dialogVisible: false,
- dialogTitle: '新增用户',
- isAdd: true,
- LeaderData: [],
- commitRules: {
- buildNum: [{ required: true, trigger: 'blur', message: '请输入单元/楼栋号' }],
- constructionNum: [{ required: true, trigger: 'blur', message: '请输入施工号' }],
- area: [{ required: true, trigger: 'blur', message: '请输入总面积' }],
- residentialArea: [{ required: true, trigger: 'blur', message: '请输入住宅面积' }],
- unResidentialArea: [{ required: true, trigger: 'blur', message: '请输入非面积' }],
- coverAnArea: [{ required: true, trigger: 'blur', message: '请输入占地面积' }],
- undergroundArea: [{ required: true, trigger: 'blur', message: '请输入地下面积' }],
- roomNum: [{ required: true, trigger: 'blur', message: '请输入房号' }],
- numberInfo: [{ required: true, trigger: 'blur', message: '请输入套数' }],
- floors: [{ required: true, trigger: 'blur', message: '请输入总层数' }],
- overgroundFloors: [{ required: true, trigger: 'blur', message: '请输入地上层数' }],
- undergroundFloors: [{ required: true, trigger: 'blur', message: '请输入地下层数' }],
- structure: [{ required: true, trigger: 'blur', message: '请输入结构' }],
- regionalismCode: [{ required: true, trigger: 'blur', message: '请输入行政区划' }],
- landCode: [{ required: true, trigger: 'blur', message: '请输入地号' }]
- },
- nodeId: '',
- level: '',
- dialogViewVisible: false,
- // 批量导入
- importVisible: false,
- importType: '',
- importTitle: '',
- uploadTitle: [],
- isView: false
- }
- },
- mounted() {
- this.initDict(this.dc_key).then((res) => {
- this.getList()
- })
- this.getTreeData()
- this.getTreeSelectData()
- },
- methods: {
- handleChange(value) {
- },
- handleSearch: function() {
- this.getList()
- },
- getTreeData: function() {
- this.baseInfoRequest('getTreeData2', {}).then((res) => {
- this.DeptTree = res.data.data
- }).catch(() => {
- })
- },
- getTreeSelectData: function() {
- this.baseInfoRequest('getTreeData3', {}).then((res) => {
- this.options = res.data.data
- }).catch(() => {
- })
- },
- handleReset: function() {
- this.queryParam = {}
- this.getList()
- },
- getList: function() {
- const _this = this
- _this.loading = true
- _this.AllData = []
- this.queryParam.pageNum = this.currentPage
- this.queryParam.pageSize = this.pageSize
- this.baseRequest('list', this.queryParam).then((res) => {
- _this.AllData = res.data.rows
- _this.allpage = res.data.total
- _this.loading = false
- }).catch(() => {
- })
- },
- handleAdd: function() {
- this.dialogVisible = true
- this.dialogTitle = '新增楼栋'
- },
- // 导入
- batchImport() {
- this.importVisible = true
- this.importType = 'buildInsert'
- this.importTitle = '楼栋批量导入'
- },
- // 导出
- handleExcel: function() {
- const _this = this
- this.OutData = []
- const title = ['楼盘/小区名称', '分期名称', '单元号/楼栋号', '总面积(㎡)', '套数']
- this.OutData.push(title)
- const temp = []
- this.baseRequest('excelListAll', _this.queryParam).then(res => {
- const data = res.data
- data.forEach(function(item) {
- const json = _this.getItemJson(item)
- temp.push(json)
- })
- temp.forEach(function(item) {
- const jsonArray = []
- jsonArray.push(item.groupName)
- jsonArray.push(item.discName)
- jsonArray.push(item.buildNum)
- jsonArray.push(item.area)
- jsonArray.push(item.numberInfo)
- _this.OutData.push(jsonArray)
- })
- const OutSize = [{ wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 }, { wch: 15 }]
- const fileName = '楼栋管理导出 ' + new Date().Format('yyyyMMddhhmm')
- _this.$outputXlsxFile(this.OutData, OutSize, fileName)
- })
- },
- handleEdit: function(val) {
- this.buildForm = val
- this.buildForm.findids = []
- if (this.buildForm.groupId != null &&
- this.buildForm.groupId !== '') {
- this.buildForm.findids[0] = this.buildForm.groupId
- if (this.buildForm.discId != null &&
- this.buildForm.discId !== '') {
- this.buildForm.findids[1] = this.buildForm.discId
- }
- }
- this.dialogVisible = true
- this.dialogTitle = '编辑楼栋'
- },
- confirmSubmit: function() {
- this.$refs.buildForm.validate(valid => {
- if (valid) {
- const _this = this
- const extraData = {}
- const postData = Object.assign({}, _this.buildForm, extraData)
- // 父级
- const ids = this.buildForm.findids
- const arr = this.$refs['findids'].getCheckedNodes()[0].pathLabels
- if (ids != null && ids != [] && ids != '') {
- postData.groupId = ids[0]
- postData.discId = ids[1]
- }
- if (arr != null && arr != [] && arr != '') {
- postData.groupName = arr[0]
- postData.lpmc = arr[1]
- }
- let urlAdd = 'add'
- if (undefined != this.buildForm.id && this.buildForm.id != null && this.buildForm.id != '') {
- urlAdd = 'edit'
- }
- this.baseRequest(urlAdd, postData).then((res) => {
- if (res.data.code == 200) {
- // this.buildForm = {}
- this.dialogVisible = false
- // this.getList()
- this.getTreeData()
- this.$message({
- message: '提交成功',
- type: 'success'
- })
- }
- }).catch((err) => {
- this.$message({
- message: err,
- type: 'error'
- })
- })
- }
- })
- },
- getCheckedNodes(data, node, item) {
- const _this = this
- console.log('节点====', node)
- console.log('节点id====', node.data.id)
- console.log('层级====', node.level)
- _this.queryParam.nodeId = node.data.id
- _this.queryParam.level = node.level
- _this.getList()
- },
- getItemJson: function(item) {
- return item
- },
- dlgOpen: function() {
- },
- dlgClose: function() {
- const _this = this
- _this.buildForm = {}
- _this.getList()
- },
- cancel() {
- this.dialogViewVisible = false
- },
- test(val) {
- // this.$set(this.buildForm, 'introduction', val)
- },
- cancelImport(refresh) {
- this.importVisible = false
- this.importType = ''
- this.getTreeData()
- this.getList()
- },
- handleDelete(val) {
- this.$confirm('确认删除该数据,删除后将无法恢复,确认删除吗?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- this.baseRequest('delete', { id: val.id }).then(res => {
- if (res.data.code == 200) {
- this.getList()
- this.getTreeData()
- this.$message({
- type: 'success',
- message: '删除成功!'
- })
- } else {
- this.$message({
- type: 'error',
- message: res.data.msg
- })
- }
- }).catch((err) => {
- this.$message({
- type: 'error',
- message: err
- })
- })
- }).catch(() => {
- this.$message({
- type: 'info',
- message: '已取消删除'
- })
- })
- },
- // 请求封装,继承类中调用,必须存在
- baseRequest: function(opUrl, postData) {
- return this.$channel.baseRequest('MnpBuildingController', opUrl, postData, 'User')
- },
- baseInfoRequest: function(opUrl, postData) {
- return this.$channel.baseRequest('ParkInfoController', opUrl, postData, 'User')
- },
- postRequest: function(opUrl, postData) {
- return this.$channel.baseRequest('PostController', opUrl, postData, 'Post')
- }
- }
- }
- </script>
- <style scoped>
- .el-cascader-menu{
- max-width:250px;
- }
- .custom-tree-node {
- flex: 1;
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 16px;
- padding-right: 8px;
- }
- .custom-tree-container{
- display: flex;
- }
- .custom-tree-container .block-l {
- /*flex-grow: 2 ;*/
- //float: left;
- width: 20%;
- padding: 0 8px 0 0;
- }
- .custom-tree-container .block-r {
- /*flex-grow: 10;*/
- //float: left;
- width: 80%;
- /*padding: 0 0 0 8px;*/
- }
- </style>
- <style scoped>
- /*.ch-input .el-input__inner {*/
- /*border-radius: 0px;*/
- /*border-color: #32323A;*/
- /*}*/
- /*.ch-input-size {*/
- /*width: 200px;*/
- /*margin-right: 10px;*/
- /*}*/
- /*.ch-button {*/
- /*border-radius: 0px;*/
- /*border-color: #32323A;*/
- /*background-color: #32323A;*/
- /*color: #fff;*/
- /*}*/
- .ch-input .el-input__inner {
- border-color: #32323A;
- }
- .ch-input-size {
- width: 150px;
- }
- .ch-button {
- border-color: #32323A;
- background-color: #32323A;
- color: #fff;
- }
- .ch-button-warning {
- margin-left: 10px;
- border-color: #E6A23C;
- background-color: #E6A23C;
- color: #fff;
- }
- .ch-button-export {
- margin-left: 10px;
- border-color: #98CC1F;
- background-color: #98CC1F;
- color: #fff;
- }
- /deep/ .el-card{
- max-height: 952px;
- overflow: hidden;
- overflow-y: scroll;
- }
- </style>
|