addinformation.vue 12.7 KB
<template>
  <div>
    <el-form :model="ruleForm" :rules="rulesHetong" ref="heForm" label-width="130px" class="demo-ruleForm">
      <el-form-item label="商铺名称" prop="shopName">
        <el-input v-model="ruleForm.shopName" placeholder="请输入" maxlength="50"></el-input>
      </el-form-item>
      <el-form-item label="商铺类型" prop="shopType">
        <el-select v-model="ruleForm.shopType" placeholder="请选择" style="width: 100%;">
          <el-option label="移动铺位" value="1"></el-option>
          <el-option label="固定铺位" value="2"></el-option>
        </el-select>

      </el-form-item>
      <el-form-item label="测绘面积" prop="surveyingArea">
        <el-input v-model="ruleForm.surveyingArea" placeholder="请输入">
          <template slot="append">M<sup>2</sup></template>
        </el-input>
      </el-form-item>
      <el-form-item label="产权面积" prop="propertyArea">
        <el-input v-model="ruleForm.propertyArea" placeholder="请输入">
          <template slot="append">M<sup>2</sup></template>
        </el-input>
      </el-form-item>
      <el-form-item label="实际使用面积" prop="actualUsableArea">
        <el-input v-model="ruleForm.actualUsableArea" placeholder="请输入">
          <template slot="append">M<sup>2</sup></template>
        </el-input>
      </el-form-item>
      <el-form-item label="所属区域" prop="belongingRegion">
        <el-select v-model="ruleForm.belongingRegion" placeholder="请选择" style="width: 100%;">
          <el-option label="成华区" value="成华区"></el-option>
          <el-option label="武侯区" value="武侯区"></el-option>
          <el-option label="锦江区" value="锦江区"></el-option>
          <el-option label="青羊区" value="青羊区"></el-option>
          <el-option label="金牛区" value="金牛区"></el-option>
          <el-option label="双流区" value="双流区"></el-option>
          <el-option label="郫都区" value="郫都区"></el-option>
          <el-option label="龙泉驿区" value="龙泉驿区"></el-option>
          <el-option label="温江区" value="温江区"></el-option>
        </el-select>
      </el-form-item>
      <el-form-item label="归属部门" prop="belongingDepartment">
        <el-input v-model="ruleForm.belongingDepartment" placeholder="请输入" maxlength="50">
        </el-input>
      </el-form-item>
      <el-form-item label="负责人" prop="head">
        <el-input v-model="ruleForm.head" placeholder="请输入" maxlength="20">
        </el-input>
      </el-form-item>
      <el-form-item label="联系人" prop="contacts">
        <el-input v-model="ruleForm.contacts" placeholder="请输入" maxlength="20">
        </el-input>
      </el-form-item>
      <el-form-item label="联系方式" prop="telephone">
        <el-input v-model="ruleForm.telephone" placeholder="请输入" maxlength="20">
        </el-input>
      </el-form-item>
      <el-form-item label="详细位置" prop="detailedLocation">
        <el-input v-model="ruleForm.detailedLocation" placeholder="请输入" maxlength="100">
        </el-input>
      </el-form-item>
      <el-form-item label="地图标点" prop="mapPunctuation">
        <div style="width: 100%;height: 300px;">
          <newmap :lat="lat" :lng="lng" @updatecenter="updatecenter"></newmap>
        </div>
      </el-form-item>
      <el-form-item label="商铺描述" prop="shopDescription">
        <el-input maxlength="200" show-word-limit rows="4" v-model="ruleForm.shopDescription" placeholder="请输入"
          type="textarea" />
      </el-form-item>
      <el-form-item label="建筑图纸" prop="architecturalDrawings">
        <upimg filePath="sp" inputtype="architecturalDrawings" :value="ruleForm.architecturalDrawings"
          @changimg="e=>changimg(e,'architecturalDrawings')"></upimg>
      </el-form-item>
      <el-form-item label="展示主图" prop="displayMainImage">
        <upimg filePath="sp" inputtype="displayMainImage" :value="ruleForm.displayMainImage"
          @changimg="e=>changimg(e,'displayMainImage')"></upimg>
      </el-form-item>
      <el-row :gutter="20">
        <el-col :span="12">
          <el-form-item>
            <div style="margin-top: 20px">
              <el-button @click="add()" style="background-color: #3F9B6A;color: #fff;">确定</el-button>
              <el-button @click="close()" class="buttonHover"
                style="color: #606266;border: 1px solid #DBDBDB;background-color: #fff;">取消</el-button>
            </div>
          </el-form-item>
        </el-col>
      </el-row>
    </el-form>
  </div>
</template>

<script>
  import MapMark from "@/components/MapContainer/MapMark";
  import upimg from "@/components/ImageUpload/index"
  import upfile from "@/components/fujianUpload/fujianList"
  import {
    uploadUrl
  } from '@/utils/request'
  import {
    miniioupload
  } from '../../api/commodityLease.js'
  import {
    gongyuan,
    lvdaoduan,
    addList,
    editList
  } from '../../api/information.js';
  import newmap from "@/components/newmap/index";
  export default {
    components: {
      upfile,
      upimg,
      MapMark,
      newmap
    },
    data() {
      return {
        lat:30.67,
        lng:104.06,
        uploadFileUrl: uploadUrl, // 请求地址
        ruleForm: {
          shopName: '', // 商铺名称
          venueNumber: '', // 场地编号
          houseNumber: '', // 门牌号
          architecturalForm: '', // 建筑形式
          actualUsableArea: '', // 实际使用面积
          belongingRegion: '', // 所属区域
          belongingDepartment: '', // 归属部门
          head: '', // 负责人
          detailedLocation: '', // 详细位置
          mapPunctuation: '', // 地图标点
          architecturalDrawings: '', // 建筑图纸
          shopDescription: '', // 商铺描述
          displayMainImage: '', // 展示主图
          otherImageVideos: '', // 其他图片视频
          rentalStatus: '', // 租赁状态(0.待租  1.已租)
          publishStatus: '', // 发布状态
          leaseExpirationDate: '', // 租赁到期时间
          createDate: '', // 创建时间
          createUser: '', // 创建人
          updateDate: '', // 修改时间
          updateUser: '', // 修改人
          businessNature: '', // 经营性质
          telephone: '', // 联系方式
          identityCard: '', // 身份证号码
          belongingGreenwaySection: '', // 所属绿道段
          belongingParkTrail: '', // 所属公园/步道
          floorSpace: '', // 建筑面积
          contractNumber: '' // 合同编号
        },
        rulesHetong: {
          shopName: [{
            required: true,
            message: '请输入商铺名称',
            trigger: 'blur'
          }, ],
          houseNumber: [{
            required: true,
            message: '请输入门牌号',
            trigger: 'blur'
          }, ],
          architecturalForm: [{
            required: true,
            message: '请选择建筑形式',
            trigger: 'change'
          }],
          actualUsableArea: [{
            required: true,
            message: '请输入实际使用面积',
            trigger: 'blur'
          }],
          belongingRegion: [{
            required: true,
            message: '请选择所属区域',
            trigger: 'change'
          }],
          head: [{
            required: true,
            message: '请输入负责人',
            trigger: 'blur'
          }, ],
          detailedLocation: [{
            required: true,
            message: '请输入详细位置',
            trigger: 'blur'
          }, ],
          // displayMainImage: [{
          //   required: true,
          //   message: '请上传主图',
          //   trigger: 'blur'
          // }, ],
          // belongingGreenwaySection: [{
          //   required: true,
          //   message: '请选择所属绿道段',
          //   trigger: 'change'
          // }],
        },
        uploadFiles: [],
        filesLength: 1,
        lvdaoList: [],
        gongyuanList: [],
        parentMessage: {},
        edit: true
      };
    },
    props: {
      info: {
        type: Object,
        default: {}
      }
    },
    async created() {
      console.error(this.info)
      if (this.info.id) {
        this.ruleForm = this.info
  
      }
      const lvdao = await lvdaoduan()
      this.lvdaoList = lvdao.data
    },
    methods: {
      updatecenter(e) {
        console.error('-----------',e)
        this.ruleForm.detailedLocation = e.address
      },
      changimg(e, type) {
        this.ruleForm[type] = e
      },
      //获取当前时间
      updateCurrentTime() {
        const now = new Date();
        const year = now.getFullYear();
        const month = (now.getMonth() + 1).toString().padStart(2, '0');
        const day = now.getDate().toString().padStart(2, '0');
        const hours = now.getHours().toString().padStart(2, '0');
        const minutes = now.getMinutes().toString().padStart(2, '0');
        const seconds = now.getSeconds().toString().padStart(2, '0');

        return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
      },
      //获取地图点击的经纬度
      getChildDate(mapData) {
        this.mapData = mapData

      },
      lvdaoSel(vaule) {
        this.ruleForm.belongingParkTrail = ''
        this.gongyuan(vaule)
      },
      async gongyuan(value) {
        const gongyaun = await gongyuan()
        this.gongyuanList = gongyaun.data.filter(item => item.superior == value);
      },
      add() {
        console.log({
          ...this.ruleForm
        })
        // return
        if (this.ruleForm.id) {
          this.$refs.heForm.validate((valid) => {
            console.log(valid)
            if (valid) {
              this.ruleForm.updateDate = this.updateCurrentTime()
              // if (Object.keys(this.mapData).length != 0) {
              //   this.ruleForm.mapPunctuation = JSON.stringify(this.mapData)
              // }
              editList(this.ruleForm).then(res => {
                if (res.code == 200) {
                  this.$message({
                    message: '修改成功',
                    type: 'success'
                  })
                  this.$emit('removeonaction', '1')
                } else {
                  this.$message({
                    message: res.msg,
                    type: 'error'
                  })
                }
              })
            } else {
              this.$message({
                message: '请填写完整信息',
                type: 'error'
              })
              return false;
            }


          })
        } else {
          this.$refs.heForm.validate((valid) => {
            console.log(valid)
            if (valid) {
              this.ruleForm.createDate = this.updateCurrentTime()
              this.ruleForm.mapPunctuation = JSON.stringify(this.mapData)
              this.ruleForm.rentalStatus = 0
              this.ruleForm.publishStatus = 0
              addList(this.ruleForm).then(res => {
                if (res.code == 200) {
                  this.$message({
                    message: '添加成功',
                    type: 'success'
                  })
                  this.$emit('removeonaction', '1')
                } else {
                  this.$message({
                    message: res.msg,
                    type: 'error'
                  })
                }
              })
            } else {
              this.$message({
                message: '请填写完整信息',
                type: 'error'
              })
              return false;
            }
          })

        }
      },
      close() {
        this.$emit('removeonaction', '1')
      },
      hefuRemove(e) {
        // this.ruleForm[e] = ''
      },
      hefuSuccess(response, e) {
        console.error(response)
        console.error(e)
        this.ruleForm[e] = ''
        let fd = new FormData()
        fd.append('file', response.raw)
        fd.append('filePath', 'sp')
        miniioupload(fd).then(res => {
          console.error(res)
          this.ruleForm[e] = res.data
        })
      }


    },
  };
</script>
<style lang="scss">
  .el-dialog__header {
    background-color: #F2F3F5;
    text-align: left;
  }

  .el-dialog__title {
    line-height: 30px;
    font-size: 15px;
    color: #303133;
  }

  .avatar-uploader .el-upload {
    border: 1px dashed #3F9B6A;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .avatar-uploader .el-upload:hover {
    border-color: #3F9B6A;
  }

  .avatar-uploader-icon {
    font-size: 28px;
    color: #8c939d;
    width: 178px;
    height: 178px;
    line-height: 178px;
    text-align: center;
  }

  .avatar {
    width: 178px;
    height: 178px;
    display: block;
  }
</style>