12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166 |
- <template>
- <div class="app-container">
- <el-form
- :model="queryParams"
- ref="queryForm"
- :inline="true"
- v-show="showSearch"
- label-width="100px"
- >
- <el-form-item prop="unitId" style="margin-left: -40px" label-width="50px">
- <!-- <el-input
- v-model="queryParams.unitId"
- placeholder="请输入单位"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- /> -->
- <treeselect
- v-model="queryParams.unitId"
- :options="users"
- placeholder="请选择到访单位"
- class="threeselects"
- @select="selectPeo1"
- />
- </el-form-item>
- <el-form-item
- prop="peopleId"
- label-width="50px"
- style="margin-left: -23px"
- >
- <!-- <el-input
- v-model="queryParams.peopleId"
- placeholder="请输入人员"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- /> -->
- <el-select
- v-model="queryParams.peopleName"
- ref="peoplenames"
- placeholder="请选择人员"
- @change="handleQuery"
- >
- <el-option
- v-for="item in executors"
- :key="item.id"
- :label="item.name"
- :value="item.name"
- />
- </el-select>
- </el-form-item>
- <!-- <el-form-item label="部职别" prop="duty" label-width="110px">
- <el-input
- v-model="queryParams.duty"
- placeholder="请输入部职别"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item>
- <el-form-item label="住房待遇等级" prop="grade">
- <el-input
- v-model="queryParams.grade"
- placeholder="请输入住房待遇等级"
- clearable
- size="small"
- @keyup.enter.native="handleQuery"
- />
- </el-form-item> -->
- <el-form-item style="margin-left: 0px" prop="type">
- <!-- <el-select v-model="queryParams.type" placeholder="请选择申请住房类别" clearable size="small">
- <el-option label="请选择字典生成" value="" />
- </el-select> -->
- <el-select
- v-model="queryParams.type"
- placeholder="请选择申请住房类别"
- @change="leibie"
- >
- <!-- <el-option label="请选择字典生成" value="" /> -->
- <el-option
- v-for="(item, i) in ziDian"
- :key="i"
- :label="item.dictLabel"
- :value="item.dictLabel"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item>
- <!-- <el-button size="btn" @click="handleQuery">搜索</el-button> -->
- <el-button size="btr" @click="resetQuery">重置</el-button>
- </el-form-item>
- </el-form>
- <el-row :gutter="10" class="mb8">
- <el-col :span="1.5">
- <el-button
- type="primary"
- plain
- icon="el-icon-plus"
- size="mini"
- @click="handleAdd"
- v-hasPermi="['barracksManagement:flats:add']"
- >新增</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="success"
- plain
- icon="el-icon-edit"
- size="mini"
- :disabled="single"
- @click="handleUpdate"
- v-hasPermi="['barracksManagement:flats:edit']"
- >修改</el-button
- >
- </el-col>
- <el-col :span="1.5">
- <el-button
- type="danger"
- plain
- icon="el-icon-delete"
- size="mini"
- :disabled="multiple"
- @click="handleDelete"
- v-hasPermi="['barracksManagement:flats:remove']"
- >删除</el-button
- >
- </el-col>
- <!-- <el-col :span="1.5">
- <el-button
- type="warning"
- plain
- icon="el-icon-download"
- size="mini"
- :loading="exportLoading"
- @click="handleExport"
- v-hasPermi="['barracksManagement:flats:export']"
- >导出</el-button>
- </el-col> -->
- <!-- <right-toolbar
- :showSearch.sync="showSearch"
- @queryTable="getList"
- ></right-toolbar> -->
- </el-row>
- <el-table
- v-loading="loading"
- :data="flatsList"
- @selection-change="handleSelectionChange"
- :header-cell-style="{ background: '#003C69', color: 'white' }"
- >
- <el-table-column type="selection" width="55" align="center" />
- <el-table-column label="序号" type="index" width="50"> </el-table-column>
- <el-table-column
- label="单位"
- align="center"
- prop="unitName"
- width="130"
- />
- <el-table-column
- label="人员"
- align="center"
- prop="peopleName"
- width="130"
- />
- <el-table-column label="部职别" align="center" prop="duty" width="130" />
- <el-table-column
- label="是否符合申请条件"
- align="center"
- prop="whether"
- width="150"
- />
- <el-table-column
- label="住房待遇等级"
- align="center"
- prop="grade"
- width="150"
- />
- <el-table-column
- label="申请住房户型"
- align="center"
- prop="houseType"
- width="150"
- />
- <el-table-column
- label="出生时间"
- align="center"
- prop="birthDate"
- width="180"
- >
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.birthDate, "{y}-{m}-{d}") }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="入伍年月"
- align="center"
- prop="enlistDate"
- width="160"
- >
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.enlistDate, "{y}-{m}-{d}") }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="参加工作时间"
- align="center"
- prop="jobTime"
- width="180"
- >
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.jobTime, "{y}-{m}-{d}") }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="地方普通高等学校入学时间"
- align="center"
- prop="entranceDate"
- width="180"
- >
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.entranceDate, "{y}-{m}-{d}") }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="享受相应住房待遇职级时间"
- align="center"
- prop="jobDate"
- width="180"
- >
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.jobDate, "{y}-{m}-{d}") }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="任现职级时间"
- align="center"
- prop="jobsDate"
- width="150"
- >
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.jobsDate, "{y}-{m}-{d}") }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="配偶是否军队人员"
- align="center"
- prop="whethers"
- width="150"
- />
- <el-table-column
- label="军衔"
- align="center"
- prop="rankId"
- :formatter="unit4Format"
- width="150"
- />
- <el-table-column
- label="军衔时间"
- align="center"
- prop="rankDate"
- width="150"
- >
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.rankDate, "{y}-{m}-{d}") }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="备注"
- align="center"
- prop="remark"
- show-overflow-tooltip
- width="150"
- />
- <!-- <el-table-column label="登记时间" align="center" prop="createtime" />
- <el-table-column label="登记人" align="center" prop="adminId" /> -->
- <el-table-column
- label="配偶姓名"
- align="center"
- prop="pName"
- width="150"
- />
- <el-table-column
- label="配偶单位"
- align="center"
- prop="pUnit"
- width="150"
- />
- <el-table-column
- label="配偶户口所在地"
- align="center"
- prop="pAccount"
- width="150"
- />
- <el-table-column label="结婚时间" align="center" prop="pTime" width="150">
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.pTime, "{y}-{m}-{d}") }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="配偶入伍或随军时间"
- align="center"
- prop="pTimeOne"
- width="150"
- >
- <template slot-scope="scope">
- <span>{{ parseTime(scope.row.pTimeOne, "{y}-{m}-{d}") }}</span>
- </template>
- </el-table-column>
- <el-table-column
- label="配偶现住房"
- align="center"
- prop="pCeace"
- width="150"
- />
- <el-table-column
- label="申请住房类别"
- align="center"
- prop="type"
- width="150"
- />
- <el-table-column
- label="操作"
- align="center"
- class-name="small-padding fixed-width"
- width="150px"
- fixed="right"
- >
- <template slot-scope="scope">
- <el-button
- size="btu"
- type="text"
- @click="handleUpdate(scope.row)"
- v-hasPermi="['barracksManagement:flats:edit']"
- >修改</el-button
- >
- <el-button
- size="btd"
- type="text"
- @click="handleDelete(scope.row)"
- v-hasPermi="['barracksManagement:flats:remove']"
- >删除</el-button
- >
- </template>
- </el-table-column>
- </el-table>
- <pagination
- v-show="total > 0"
- :total="total"
- :page.sync="queryParams.pageNum"
- :limit.sync="queryParams.pageSize"
- @pagination="getList"
- />
- <!-- 添加或修改公寓住房申请人员资格审查登记对话框 -->
- <el-dialog
- :title="title"
- :visible.sync="open"
- width="1250px"
- append-to-body
- :close-on-click-modal="false"
- >
- <el-form
- ref="form"
- :model="form"
- :rules="rules"
- label-width="110px"
- :inline="true"
- >
- <div class="jiben">个人信息</div>
- <el-form-item label="单位" prop="unitId">
- <!-- <el-input v-model="form.unitId" placeholder="请输入单位" /> -->
- <treeselect
- v-model="form.unitId"
- :options="users"
- placeholder="请选择单位"
- class="threeselects"
- @select="selectPeo"
- />
- </el-form-item>
- <el-form-item label="人员" prop="peopleId">
- <el-select
- v-model="form.peopleId"
- placeholder="请选择人员"
- ref="peoplenames"
- >
- <el-option
- v-for="item in executor"
- :key="item.id"
- :label="item.name"
- :value="item.id"
- @click.native="peopleIds(item.name, item)"
- />
- </el-select>
- </el-form-item>
- <el-form-item label="部职别" prop="duty" style="margin-left: -5px">
- <el-input v-model="form.duty" />
- </el-form-item>
- <el-form-item label="军衔" prop="rankId">
- <!-- <el-input v-model="form.rankId" class="zhufnag" :disabled="true" /> -->
- <!-- <el-input v-model="form.rankName" placeholder="请输入军衔" /> -->
- <el-select
- v-model="form.rankId"
- :disabled="true"
- placeholder="请选择军衔"
- >
- <!-- <el-option label="请选择字典生成" value="" /> -->
- <el-option
- v-for="(item, i) in ziDian1"
- :key="i"
- :label="item.dictLabel"
- :value="item.dictSort"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <el-form-item label="军衔时间" prop="rankDate">
- <el-date-picker
- clearable
- size="small"
- v-model="form.rankDate"
- type="date"
- value-format="yyyy-MM-dd"
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item
- label="出生时间"
- style="margin-left: 13px"
- prop="birthDate"
- placeholder="请选择出生时间"
- >
- <el-date-picker
- clearable
- size="small"
- v-model="form.birthDate"
- type="date"
- value-format="yyyy-MM-dd"
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item
- label="住房待遇等级"
- prop="grade"
- style="margin-left: 0px"
- >
- <el-input v-model="form.grade" />
- </el-form-item>
- <!-- <el-form-item label="配偶现住房" prop="pCeace" style="margin-left:25px">
- <el-input v-model="form.pCeace" />
- </el-form-item> -->
- <el-form-item
- label="入伍年月"
- prop="enlistDate"
- style="margin-left: 0px"
- >
- <el-date-picker
- clearable
- size="small"
- v-model="form.enlistDate"
- type="date"
- value-format="yyyy-MM-dd"
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item label="结婚时间" prop="pTime" style="margin-left: 13px">
- <el-date-picker
- clearable
- size="small"
- v-model="form.pTime"
- type="date"
- value-format="yyyy-MM-dd"
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item
- label="享受相应住房待遇职级时间"
- prop="jobDate"
- label-width="200px"
- style="margin-left: -90px"
- >
- <el-date-picker
- clearable
- size="small"
- v-model="form.jobDate"
- type="date"
- value-format="yyyy-MM-dd"
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item
- label="任现职级时间"
- style="margin-left: 15px"
- prop="jobsDate"
- >
- <el-date-picker
- clearable
- size="small"
- v-model="form.jobsDate"
- type="date"
- value-format="yyyy-MM-dd"
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item
- label="参加工作时间"
- prop="jobTime"
- style="margin-left: 15px"
- >
- <el-date-picker
- clearable
- size="small"
- v-model="form.jobTime"
- type="date"
- value-format="yyyy-MM-dd"
- >
- </el-date-picker>
- </el-form-item>
- <el-form-item
- label="地方普通高等学校入学时间"
- style="margin-left: -70px"
- prop="entranceDate"
- label-width="180px"
- >
- <el-date-picker
- clearable
- size="small"
- v-model="form.entranceDate"
- type="date"
- value-format="yyyy-MM-dd"
- >
- </el-date-picker>
- </el-form-item>
- <!-- <el-form-item label="登记人" prop="adminId">
- <el-input v-model="form.adminId" placeholder="请输入登记人" />
- </el-form-item> -->
- <div class="jiben">配偶信息</div>
- <el-form-item label="配偶姓名" prop="pName">
- <el-input v-model="form.pName" />
- </el-form-item>
- <el-form-item label="配偶单位" prop="pUnit">
- <el-input v-model="form.pUnit" />
- </el-form-item>
- <el-form-item
- label="配偶现住房"
- prop="pCeace"
- style="margin-left: -10px"
- >
- <el-input v-model="form.pCeace" />
- </el-form-item>
- <el-form-item
- label="配偶是否军队人员(含职工)"
- style="margin-left: -70px"
- label-width="180px"
- prop="whethers"
- >
- <el-input v-model="form.whethers" />
- </el-form-item>
- <el-form-item
- label="配偶户口所在地"
- prop="pAccount"
- style="margin-left: -20px"
- label-width="130px"
- >
- <el-input v-model="form.pAccount" />
- </el-form-item>
- <el-form-item
- style="margin-left: -80px"
- label="配偶入伍或随军时间"
- prop="pTimeOne"
- label-width="180px"
- >
- <el-date-picker
- clearable
- size="small"
- v-model="form.pTimeOne"
- type="date"
- value-format="yyyy-MM-dd"
- >
- </el-date-picker>
- </el-form-item>
- <div class="jiben">信息确认</div>
- <el-form-item
- label="是否符合申请条件"
- prop="whether"
- style="margin-left: -20px"
- label-width="127px"
- >
- <el-input v-model="form.whether" />
- </el-form-item>
- <el-form-item
- label="申请住房户型"
- prop="houseType"
- style="margin-left: 5px"
- >
- <!-- <el-select v-model="form.houseType" placeholder="请选择申请住房户型" class="zhufnag">
- <el-option label="请选择字典生成" value="" class="zhufnag" /> -->
- <el-input v-model="form.houseType" class="zhufnag" />
- <!-- </el-select> -->
- </el-form-item>
- <el-form-item
- label="申请住房类别"
- prop="type"
- style="margin-left: -13px"
- >
- <el-select v-model="form.type" placeholder="请选择申请住房类别">
- <!-- <el-option label="请选择字典生成" value="" /> -->
- <el-option
- v-for="(item, i) in ziDian"
- :key="i"
- :label="item.dictLabel"
- :value="item.dictLabel"
- >
- </el-option>
- </el-select>
- </el-form-item>
- <div class="jiben">备注</div>
- <el-form-item prop="remark">
- <el-input
- v-model="form.remark"
- type="textarea"
- placeholder="请输入内容"
- />
- </el-form-item>
- </el-form>
- <div slot="footer" class="dialog-footer">
- <el-button type="primary" @click="submitForm">确 定</el-button>
- <el-button @click="cancel">取 消</el-button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- listFlats,
- getFlats,
- delFlats,
- addFlats,
- updateFlats,
- exportFlats,
- } from "@/api/barracksManagement/flats";
- import { getDicts } from "@/api/system/dict/data";
- import Treeselect from "@riophae/vue-treeselect";
- import "@riophae/vue-treeselect/dist/vue-treeselect.css";
- import { getDept2, getAll } from "@/api/grassrootsregistration/bdglmeeting";
- import { deptUser } from "@/api/doormanManage/bdglVisit";
- import { allUser, getDeptList } from "@/api/workingArrangements/workTask";
- export default {
- name: "Flats",
- components: { Treeselect },
- data() {
- return {
- // 执行单位列表
- users: [],
- // 遮罩层
- loading: true,
- // 导出遮罩层
- exportLoading: false,
- // 选中数组
- ids: [],
- // 非单个禁用
- single: true,
- // 非多个禁用
- multiple: true,
- // 显示搜索条件
- showSearch: true,
- // 总条数
- total: 0,
- // 公寓住房申请人员资格审查登记表格数据
- flatsList: [],
- // 弹出层标题
- title: "",
- // 是否显示弹出层
- open: false,
- // 查询参数
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- unitId: null,
- peopleId: null,
- duty: null,
- whether: null,
- grade: null,
- houseType: null,
- birthDate: null,
- enlistDate: null,
- jobTime: null,
- entranceDate: null,
- jobDate: null,
- jobsDate: null,
- whethers: null,
- rankId: null,
- rankDate: null,
- createtime: null,
- updatetime: null,
- adminId: null,
- pName: null,
- pUnit: null,
- pAccount: null,
- pTime: null,
- pTimeOne: null,
- pCeace: null,
- type: null,
- },
- // 查询字典
- dictType: {
- dictType: "accommodation_type",
- // 军衔
- dictType1: "sys_user_rank",
- },
- ziDian: [],
- ziDian1: [],
- // 单位
- getdeptList: [],
- // 表单参数
- form: {},
- rylist: [],
- executor: [],
- // 获取外面人员
- executors: [],
- // 表单校验
- rules: {
- enlistDate: [
- { required: true, message: "入伍年月不能为空", trigger: "blur" },
- ],
- // rankId: [{ required: true, message: "军衔不能为空", trigger: "blur" }],
- rankDate: [
- { required: true, message: "军衔时间不能为空", trigger: "blur" },
- ],
- },
- };
- },
- created() {
- this.getSuoYou();
- this.getList();
- this.getdict();
- this.getdict1();
- allUser().then((res) => {
- this.rylist = res.rows;
- });
- getDeptList().then((res) => {
- this.getdeptList = res.data;
- });
- this.selectPeo1();
- },
- methods: {
- // 获取所有人员
- getSuoYou() {
- getAll().then((response) => {
- console.log(response);
- this.executors = response.rows;
- });
- },
- unit4Format(row, column) {
- // console.log(row)
- var deptName = "";
- // console.log(this.ziDian1)
- // console.log(row.type)
- this.ziDian1.map((item) => {
- // console.log(item)
- // console.log(item.dictSort,item.dictLabel)
- if (item.dictSort == row.rankId) {
- // console.log(item.dictLabel)
- deptName = item.dictLabel;
- }
- });
- return deptName;
- },
- // 查询计划类型
- getdict1() {
- getDicts(this.dictType.dictType).then((res) => {
- // console.log(res);
- this.ziDian = res.data;
- // console.log(this.ziDian);
- });
- },
- // 查询计划类型
- getdict() {
- getDicts(this.dictType.dictType1).then((res) => {
- // console.log(res);
- this.ziDian1 = res.data;
- // console.log(this.ziDian1);
- });
- },
- // 军衔
- junxian(id, name) {
- this.form.rankId = id;
- this.form.rankName = name;
- // console.log(id)
- },
- // peopleIds(val){
- // this.form.peopleId=val.id;
- // this.form.peopleName=val.name;
- // console.log(val)
- // // console.log(item
- // this.form.rankId=val.rankId
- // // getDicts(this.dictType.dictType1).then((res) => {
- // // this.ziDian1 = res.data;
- // // this.ziDian1.map((item) => {
- // // if (item.dictSort == row.type) {
- // // this.ziDian1 = item.dictLabel;
- // // }
- // // });
- // // });
- // },
- peopleIds(name, item) {
- console.log(item);
- this.form.rankName = "";
- this.form.peopleName = name;
- this.form.duty = item.duty;
- this.form.rankDate = item.rankDate;
- this.form.birthDate = item.birthDate;
- // this.form.grade=item.grade
- this.form.enlistDate = item.enlistDate;
- // this.form.pTime=item.pTime
- this.form.rankId = item.rankId;
- this.form.jobDate = item.jobDate;
- this.form.jobsDate = item.jobsDate;
- this.form.jobTime = item.jobTime;
- this.ziDian1.forEach((item) => {
- if (this.form.rankId == item.dictSort)
- this.form.rankName = item.dictLabel;
- // console.log(this.form.rankName)
- });
- // console.log(this.form.rankId)
- },
- peopleIds1(id, name) {
- this.queryParams.id = id;
- this.queryParams.peopleName = name;
- // console.log(id);
- this.getList();
- },
- leibie() {
- this.getList();
- },
- // 到访单位选中触发
- selectPeo1(val) {
- // 获取执行单位列表
- getDept2().then((res) => {
- // console.log(res,2)
- this.users = res.data;
- // console.log(this.users);
- });
- this.queryParams.unitId = val.id;
- // this.queryParams.peopleName = "";
- // this.queryParams.unitName = val.label;
- // // console.log(this.queryParams);
- this.getZhuChi(this.queryParams.unitId);
- this.getList();
- },
- // 获取执行人
- getZhuChi(id) {
- // console.log(id)
- deptUser(id).then((res) => {
- this.executor = res.data;
- this.executors = res.data;
- // console.log(this.executor)
- // this.form.unitName=this.executor
- });
- },
- // 到访单位选中触发
- selectPeo(val) {
- // console.log(val)
- this.form.unitId = val.id;
- // console.log(val)
- this.form.peopleName = "";
- this.form.name = "";
- this.form.rankName = "";
- this.form.peopleId = "";
- // this.form.name=""
- this.form.unitName = val.label;
- // console.log(this.form.unitId)
- this.getZhuChi(this.form.unitId);
- },
- // // 查询计划类型
- // getdict() {
- // getDicts(this.dictType.dictType).then((res) => {
- // this.ziDian = res.data;
- // });
- // getDicts(this.dictType.dictType1).then((res) => {
- // this.ziDian1 = res.data;
- // });
- // },
- /** 查询公寓住房申请人员资格审查登记列表 */
- getList() {
- this.loading = true;
- listFlats(this.queryParams).then((response) => {
- this.flatsList = response.rows;
- console.log(this.flatsList);
- this.total = response.total;
- this.loading = false;
- });
- },
- // 取消按钮
- cancel() {
- this.open = false;
- this.reset();
- },
- // 表单重置
- reset() {
- this.form = {
- id: null,
- unitId: null,
- peopleId: null,
- duty: null,
- whether: null,
- grade: null,
- houseType: null,
- birthDate: null,
- enlistDate: null,
- jobTime: null,
- entranceDate: null,
- jobDate: null,
- jobsDate: null,
- whethers: null,
- rankId: null,
- rankDate: null,
- remark: null,
- createtime: null,
- updatetime: null,
- adminId: null,
- pName: null,
- pUnit: null,
- pAccount: null,
- pTime: null,
- pTimeOne: null,
- pCeace: null,
- type: null,
- };
- this.resetForm("form");
- },
- /** 搜索按钮操作 */
- handleQuery() {
- // this.queryParams.name=""
- this.queryParams.pageNum = 1;
- this.getList();
- },
- /** 重置按钮操作 */
- resetQuery() {
- this.queryParams = {};
- this.getList();
- this.getSuoYou();
- },
- // 多选框选中数据
- handleSelectionChange(selection) {
- this.ids = selection.map((item) => item.id);
- this.single = selection.length !== 1;
- this.multiple = !selection.length;
- },
- /** 新增按钮操作 */
- handleAdd() {
- this.reset();
- this.open = true;
- this.title = "添加公寓住房申请人员资格审查登记";
- // 获取执行单位列表
- getDept2().then((res) => {
- // console.log(res,2)
- this.users = res.data;
- // console.log(this.users);
- });
- },
- /** 修改按钮操作 */
- handleUpdate(row) {
- this.reset();
- const id = row.id || this.ids;
- getFlats(id).then((response) => {
- this.form = response.data;
- // this.form.name=this.form.peopleName
- // console.log(this.form)
- this.form.peopleId = this.form.peopleName;
- // this.executor.forEach
- this.ziDian1.forEach((item) => {
- if (item.dictSort == this.form.rankId) {
- this.form.rankName = item.dictLabel;
- // console.log(this.form.rankName)
- }
- });
- this.open = true;
- this.title = "修改公寓住房申请人员资格审查登记";
- });
- },
- /** 提交按钮 */
- submitForm() {
- console.log(this.form);
- this.$refs["form"].validate((valid) => {
- if (valid) {
- if (this.form.id != null) {
- updateFlats(this.form).then((response) => {
- this.$modal.msgSuccess("修改成功");
- this.open = false;
- this.getList();
- });
- } else {
- addFlats(this.form).then((response) => {
- this.$modal.msgSuccess("新增成功");
- this.open = false;
- this.getList();
- });
- }
- }
- });
- },
- /** 删除按钮操作 */
- handleDelete(row) {
- const ids = row.id || this.ids;
- this.$modal
- .confirm("是否确认删除?")
- .then(function () {
- return delFlats(ids);
- })
- .then(() => {
- this.getList();
- this.$modal.msgSuccess("删除成功");
- })
- .catch(() => {});
- },
- /** 导出按钮操作 */
- handleExport() {
- const queryParams = this.queryParams;
- this.$modal
- .confirm("是否确认导出所有公寓住房申请人员资格审查登记数据项?")
- .then(() => {
- this.exportLoading = true;
- return exportFlats(queryParams);
- })
- .then((response) => {
- this.$download.name(response.msg);
- this.exportLoading = false;
- })
- .catch(() => {});
- },
- },
- };
- </script>
- <style scoped>
- ::v-deep .el-dialog {
- background-color: #004d86 !important;
- }
- /* 输入框 */
- ::v-deep .el-dialog .el-input__inner {
- background-color: #004d86 !important;
- width: 216px;
- color: white;
- margin-right: 20px;
- border: 1px solid white !important;
- }
- ::v-deep .el-input__inner {
- border: 1px solid white !important;
- }
- /* 标题弹框 */
- ::v-deep .el-dialog__title {
- color: white;
- /* border-bottom: 1px solid white; */
- }
- /* 标题下划线 */
- ::v-deep .el-dialog__header {
- border-bottom: 1px solid white;
- }
- /* 文本域 */
- ::v-deep .el-textarea__inner {
- width: 1150px;
- height: 80px;
- margin-left: -47px;
- }
- ::v-deep .el-form-item__label {
- text-align: end;
- }
- ::v-deep .el-dialog__body {
- padding: 0px;
- margin-left: 58px;
- margin-top: 20px;
- }
- ::v-deep .el-table .el-table__header-wrapper th,
- .el-table .el-table__fixed-header-wrapper th {
- background-color: rgb(0, 60, 105);
- color: white;
- }
- ::v-deep .el-input__suffix {
- right: 20px;
- }
- ::v-deep .zhufnag .el-form-item__label {
- margin-left: 16px;
- }
- /* 树形样式 */
- ::v-deep .vue-treeselect__control {
- background-color: #004d86;
- width: 216px;
- margin-right: 25px;
- color: white;
- }
- .threeselects {
- width: 216px;
- margin-right: 22px;
- }
- .peiou .el-input__inner {
- width: 300px;
- }
- ::v-deep .vue-treeselect__single-value {
- color: white;
- }
- ::v-deep .el-date-editor .el-input__inner {
- height: 36px;
- }
- ::v-deep .vue-treeselect__control {
- background-color: transparent;
- }
- ::v-deep .el-table__cell .cell {
- text-align: center;
- }
- ::v-deep .el-select .el-input__inner {
- background-color: transparent;
- color: white;
- }
- /* 文字多余部分省略 */
- ::v-deep .el-table__cell .cell {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- /* 调整输入框提示文字颜色 */
- ::v-deep .vue-treeselect__placeholder {
- color: #bdbdbd4f !important;
- }
- ::v-deep input::-webkit-input-placeholder {
- color: #bdbdbd4f !important;
- }
- ::v-deep input:-moz-placeholder {
- color: #bdbdbd4f !important;
- }
- ::v-deep .peiou .el-date-editor .el-input__inner {
- width: 330px;
- }
- ::v-deep .shifou .el-input--medium .el-input__inner {
- width: 330px;
- }
- ::v-deep .shifou1 .el-input--medium .el-input__inner {
- width: 330px;
- }
- ::v-deep .el-form-item__label {
- margin-left: 25px;
- }
- ::v-deep .peious .el-input__inner {
- width: 351px;
- }
- ::v-deep .el-form {
- margin-left: 40px;
- }
- .jiben {
- margin-left: -48px;
- }
- ::v-deep .dialog-footer {
- margin-right: 34px;
- }
- </style>
|