修复布局

master
许宏杰 8 months ago
parent 2020ea3a23
commit 9d4f8432ef

@ -101,6 +101,16 @@
</el-option> </el-option>
</el-select> </el-select>
<el-select v-model="queryParams.mzcgf" placeholder="选择民族" clearable>
<el-option
v-for="dict in dict.type.sys_nationality"
:key="dict.value"
:label="dict.label"
:value="dict.value"
>
</el-option>
</el-select>
<el-radio v-model="queryParams.type" :label="1"></el-radio> <el-radio v-model="queryParams.type" :label="1"></el-radio>
<el-radio v-model="queryParams.type" :label="2"></el-radio> <el-radio v-model="queryParams.type" :label="2"></el-radio>
@ -262,8 +272,8 @@
<div>数据更新时间</div> <div>数据更新时间</div>
<div>{{ infoData.updateTime || "/" }}</div> <div>{{ infoData.updateTime || "/" }}</div>
<div class="no-left">参保单位</div> <div class="no-left">社保联系电话</div>
<div>{{ infoData.qymc || "/" }} </div> <div>{{ infoData.lxdh || "/" }}</div>
<div>参保类型</div> <div>参保类型</div>
<div> <div>
<dict-tag <dict-tag
@ -279,8 +289,8 @@
/> />
</div> </div>
<div>社保联系电话</div> <div>参保单位</div>
<div style="width: 80%">{{ infoData.lxdh || "/" }}</div> <div style="width: 80%">{{ infoData.qymc || "/" }}</div>
<div>社保联系地址</div> <div>社保联系地址</div>
<div style="width: 80%">{{ infoData.lxdzDzmc || "/" }}</div> <div style="width: 80%">{{ infoData.lxdzDzmc || "/" }}</div>
@ -361,6 +371,7 @@ export default {
color: undefined, color: undefined,
type: undefined, type: undefined,
qymc: undefined, qymc: undefined,
mzcgf: undefined,
pageNum: 1, pageNum: 1,
pageSize: 20, pageSize: 20,
}, },
@ -478,7 +489,9 @@ export default {
} }
if (this.currentIndex == 1) this.queryParams.phone = this.keyWord; if (this.currentIndex == 1) this.queryParams.phone = this.keyWord;
if (this.currentIndex == 2) this.queryParams.name = this.keyWord; if (this.currentIndex == 2) this.queryParams.name = this.keyWord;
if (this.currentIndex == 3) this.queryParams.qymc = this.keyWord; if (this.currentIndex == 3)
this.queryParams.qymc = this.keyWord ? this.keyWord : "null";
this.load(); this.load();
}, },
@ -530,7 +543,10 @@ export default {
this.queryParams.yuanid = undefined; this.queryParams.yuanid = undefined;
this.queryParams.buildingId = undefined; this.queryParams.buildingId = undefined;
this.queryParams.houseid = undefined; this.queryParams.houseid = undefined;
(this.queryParams.qymc = undefined), (this.colorList = []); this.queryParams.mzcgf = undefined;
this.queryParams.qymc = undefined;
this.colorList = [];
this.isCheck = []; this.isCheck = [];
this.reset(); this.reset();
this.load(); this.load();

@ -101,6 +101,16 @@
</el-option> </el-option>
</el-select> </el-select>
<el-select v-model="queryParams.mzcgf" placeholder="选择民族" clearable>
<el-option
v-for="dict in dict.type.sys_nationality"
:key="dict.value"
:label="dict.label"
:value="dict.value"
>
</el-option>
</el-select>
<el-radio v-model="queryParams.mark" label=""></el-radio> <el-radio v-model="queryParams.mark" label=""></el-radio>
<el-radio v-model="queryParams.mark" label="ninety">3</el-radio> <el-radio v-model="queryParams.mark" label="ninety">3</el-radio>
<el-radio v-model="queryParams.mark" label="eighty"></el-radio> <el-radio v-model="queryParams.mark" label="eighty"></el-radio>
@ -223,7 +233,7 @@
<div class="border-top">社区名称</div> <div class="border-top">社区名称</div>
<div class="border-top">{{ infoData.shequ_name }}</div> <div class="border-top">{{ infoData.shequ_name }}</div>
<div class="border-top no-left">姓名</div> <div class="border-top no-left">姓名</div>
<div class="border-top">{{ infoData.name }}</div> <div class="border-top">{{ infoData.pname }}</div>
<div>小区名称</div> <div>小区名称</div>
<div>{{ infoData.xiaoqu_name }}</div> <div>{{ infoData.xiaoqu_name }}</div>
<div class="no-left">身份证号</div> <div class="no-left">身份证号</div>
@ -264,8 +274,8 @@
<div>{{ infoData.updateTime || "/" }}</div> <div>{{ infoData.updateTime || "/" }}</div>
<div>未更新天数</div> <div>未更新天数</div>
<div>{{ infoData.daycount || "/" }} </div> <div>{{ infoData.daycount || "/" }} </div>
<div class="no-left">参保单位</div> <div class="no-left">社保联系电话</div>
<div>{{ infoData.qymc || "/" }} </div> <div>{{ infoData.lxdh || "/" }}</div>
<div>参保类型</div> <div>参保类型</div>
<div> <div>
<dict-tag <dict-tag
@ -281,8 +291,8 @@
/> />
</div> </div>
<div>社保联系电话</div> <div>参保单位</div>
<div style="width: 80%">{{ infoData.lxdh || "/" }}</div> <div style="width: 80%">{{ infoData.qymc || "/" }}</div>
<div>社保联系地址</div> <div>社保联系地址</div>
<div style="width: 80%">{{ infoData.lxdzDzmc || "/" }}</div> <div style="width: 80%">{{ infoData.lxdzDzmc || "/" }}</div>
@ -356,6 +366,7 @@ export default {
// phone: undefined, // phone: undefined,
// name: undefined, // name: undefined,
color: undefined, color: undefined,
mzcgf: undefined,
// type: undefined, // type: undefined,
mark: "", mark: "",
pageNum: 1, pageNum: 1,
@ -511,6 +522,7 @@ export default {
: undefined; : undefined;
this.queryParams.parentid = undefined; this.queryParams.parentid = undefined;
this.queryParams.yuanid = undefined; this.queryParams.yuanid = undefined;
this.queryParams.mzcgf = undefined;
this.queryParams.buildingId = undefined; this.queryParams.buildingId = undefined;
this.queryParams.houseid = undefined; this.queryParams.houseid = undefined;

@ -290,7 +290,9 @@ export default {
> .body-rows[data-v-a33623d4]:nth-child(even) { > .body-rows[data-v-a33623d4]:nth-child(even) {
background: rgba(0, 169, 255, 0.15); background: rgba(0, 169, 255, 0.15);
} }
.table-body {
background: rgba(15, 42, 79, 1);
}
.typeis { .typeis {
height: 18px; height: 18px;
width: 18px; width: 18px;

Loading…
Cancel
Save