Browse Source

Merge branch 'test' of http://git.elinkit.com.cn:7070/r/epmet-oper-gov into test

shibei_master
jiangyy 4 years ago
parent
commit
9d4fa4bf11
  1. BIN
      src/assets/img/shuju/measure/qydw.png
  2. 4
      src/assets/scss/modules/search.scss
  3. 2
      src/router/index.js
  4. 2
      src/views/components/editResi.vue
  5. 4
      src/views/modules/communityParty/elegant/index.vue
  6. 2
      src/views/modules/shequ/index.vue
  7. 2
      src/views/modules/visual/communityParty/community.vue
  8. 2
      src/views/modules/visual/communityParty/party.vue
  9. 6
      src/views/modules/visual/heart/index.vue
  10. 2
      src/views/modules/visual/measure/service.vue
  11. 2
      src/views/modules/visual/measure/volunteer.vue
  12. 36
      src/views/modules/visual/warning/components/screen-table/index.vue
  13. 2
      src/views/modules/visual/warning/index.vue

BIN
src/assets/img/shuju/measure/qydw.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

4
src/assets/scss/modules/search.scss

@ -207,10 +207,10 @@
.cnt { .cnt {
display: flex; display: flex;
.chart { .chart {
width: 500px; width: 520px;
} }
.tb { .tb {
width: calc(100% - 500px); width: calc(100% - 520px);
} }
} }
} }

2
src/router/index.js

@ -52,7 +52,7 @@ export const moduleRoutes = {
component: () => import("@/views/main"), component: () => import("@/views/main"),
name: "main", name: "main",
redirect: { redirect: {
path: "/main/base-resi", path: "/main/shequ-index",
}, },
meta: { meta: {
title: "主入口布局", title: "主入口布局",

2
src/views/components/editResi.vue

@ -14,7 +14,7 @@
<el-row v-if="fixed" class="resi-row"> <el-row v-if="fixed" class="resi-row">
<!-- <el-col v-for="n in item" :key="n.id" :span="n.itemType === 'textarea'&&24 || (24/columns)"> --> <!-- <el-col v-for="n in item" :key="n.id" :span="n.itemType === 'textarea'&&24 || (24/columns)"> -->
<el-col :span="6"> <el-col :span="6">
<el-form-item prop="GRID_ID" label="所属网格" required> <el-form-item prop="GRID_ID" label="所属网格">
<!-- <div class="resi-cell"> --> <!-- <div class="resi-cell"> -->
<!-- <div class="resi-cell-label">{{n.label}}</div> --> <!-- <div class="resi-cell-label">{{n.label}}</div> -->
<div class="resi-cell-value"> <div class="resi-cell-value">

4
src/views/modules/communityParty/elegant/index.vue

@ -28,7 +28,7 @@
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button type="primary" @click="handleSearch">查询</el-button> <el-button type="primary" @click="handleSearch">查询</el-button>
<el-button @click="resetForm('searchForm')">重置</el-button> <el-button type="yellow" @click="resetForm('searchForm')">重置</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
</div> </div>
@ -585,6 +585,8 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@import "@/assets/scss/buttonstyle.scss";
.resi-container .resi-card-table { .resi-container .resi-card-table {
::v-deep .el-table th { ::v-deep .el-table th {
color: #fff; color: #fff;

2
src/views/modules/shequ/index.vue

@ -378,7 +378,7 @@
<div class="cnt"> <div class="cnt">
<div class="chart"> <div class="chart">
<pan-chart <pan-chart
:width="480" :width="520"
:height="420" :height="420"
v-if="warningChart.loading" v-if="warningChart.loading"
:total="warningChart.total" :total="warningChart.total"

2
src/views/modules/visual/communityParty/community.vue

@ -648,7 +648,7 @@ export default {
margin-left: 10px; margin-left: 10px;
.el-input__inner { .el-input__inner {
font-size: 18px; font-size: 18px;
font-weight: 800; // font-weight: 800;
color: #fff; color: #fff;
background: #06186d; background: #06186d;
border: 1px solid #1a64cc; border: 1px solid #1a64cc;

2
src/views/modules/visual/communityParty/party.vue

@ -843,7 +843,7 @@ export default {
width: 180px; width: 180px;
.el-input__inner { .el-input__inner {
font-size: 18px; font-size: 18px;
font-weight: 800; // font-weight: 800;
color: #fff; color: #fff;
background: #06186d; background: #06186d;
border: 1px solid #1a64cc; border: 1px solid #1a64cc;

6
src/views/modules/visual/heart/index.vue

@ -221,7 +221,11 @@ export default {
// //
async getTb1 () { async getTb1 () {
const { agencyId, areaCode } = this; const { agencyId, areaCode } = this;
const url = "/data/report/screen/index/advancedbranchrank";
const url =
localStorage.getItem("customerId") == "b09527201c4409e19d1dbc5e3c3429a1"
? "/data/report/screen/index/advancedbranchrank-shibei"
: "/data/report/screen/index/advancedbranchrank";
let params = { let params = {
agencyId, agencyId,
areaCode, areaCode,

2
src/views/modules/visual/measure/service.vue

@ -634,7 +634,7 @@ export default {
width: 180px; width: 180px;
.el-input__inner { .el-input__inner {
font-size: 18px; font-size: 18px;
font-weight: 800; // font-weight: 800;
color: #fff; color: #fff;
background: #06186d; background: #06186d;
border: 1px solid #1a64cc; border: 1px solid #1a64cc;

2
src/views/modules/visual/measure/volunteer.vue

@ -649,7 +649,7 @@ export default {
width: 180px; width: 180px;
.el-input__inner { .el-input__inner {
font-size: 18px; font-size: 18px;
font-weight: 800; // font-weight: 800;
color: #fff; color: #fff;
background: #06186d; background: #06186d;
border: 1px solid #1a64cc; border: 1px solid #1a64cc;

36
src/views/modules/visual/warning/components/screen-table/index.vue

@ -23,23 +23,32 @@
:key="indexs" :key="indexs"
:style="tableContentStyle[indexs]" :style="tableContentStyle[indexs]"
> >
<span @click="toUserInfo(item)">{{ item }}</span> <div v-if="Array.isArray(item)">
<span
v-show="rIndex < 1"
:key="resi.userId"
v-for="(resi, rIndex) in item"
>
{{ rIndex != 0 ? "、" : "" }}
<a @click="toUserInfo(resi.userId)">{{ resi.residentName }}</a>
</span>
</div>
<span v-else>{{ item }}</span>
<span <span
v-if="indexs + 1 == value.length && item.length > 8" v-if="indexs + 1 == value.length && item.length > 1"
class="more" class="more"
@click.stop="onClickMorePop(index)" @click.stop="onClickMorePop(index)"
ref="morePop" ref="morePop"
> >
更多> 更多>
<span <div class="more-pop" v-if="visiblePopList[index]">
class="more-pop" <span :key="resi.userId" v-for="(resi, rIndex) in item">
@click="toUserInfo(item)" {{ rIndex != 0 ? "、" : "" }}
v-if="visiblePopList[index]" <a @click="toUserInfo(resi.userId)">{{
> resi.residentName
<!-- 李佳琪刘阳赵欣丁一嘉敏李岩何嘉慧 }}</a>
李易峰赵敏何军曲树惠 --> </span>
{{ item }} </div>
</span>
</span> </span>
</div> </div>
</div> </div>
@ -185,7 +194,7 @@ export default {
methods: { methods: {
toUserInfo(uid) { toUserInfo(uid) {
// this.$router.push({ path: `/main-shuju/visual-basicinfo-people/${uid}` }); this.$router.push({ path: `/main-shuju/visual-basicinfo-people/${uid}` });
}, },
onClickMorePop(index) { onClickMorePop(index) {
@ -245,6 +254,9 @@ export default {
.td { .td {
text-align: center; text-align: center;
width: calc(100% / 5); width: calc(100% / 5);
a {
cursor: pointer;
}
.more { .more {
font-size: 18px; font-size: 18px;
font-weight: 400; font-weight: 400;

2
src/views/modules/visual/warning/index.vue

@ -133,7 +133,7 @@ export default {
item.gridName, item.gridName,
item.neighborhoodName, item.neighborhoodName,
item.buildingName, item.buildingName,
item.residentNames ? item.residentNames : "暂无", item.userList,
]); ]);
}); });
this.tableData = tableData; this.tableData = tableData;

Loading…
Cancel
Save