diff --git a/.env.development b/.env.development
index e6ba13a97..7dca7678b 100644
--- a/.env.development
+++ b/.env.development
@@ -8,7 +8,8 @@ VUE_APP_API_SERVER = https://epmet-cloud.elinkservice.cn/api
# VUE_APP_API_SERVER = https://epmet-dev.elinkservice.cn:41080/api
# VUE_APP_API_SERVER = https://epmet-dev.elinkservice.cn/api
-# VUE_APP_NODE_ENV=dev_sdtdt
-VUE_APP_NODE_ENV=dev
+VUE_APP_NODE_ENV=dev_sdtdt
+# VUE_APP_NODE_ENV=dev
#项目根路径
-VUE_APP_PUBLIC_PATH=epmet-oper
\ No newline at end of file
+VUE_APP_PUBLIC_PATH=epmet-oper
+VUE_APP_CUSTOMER=yantai
\ No newline at end of file
diff --git a/public/index.html b/public/index.html
index d97c2234d..92adab092 100644
--- a/public/index.html
+++ b/public/index.html
@@ -48,7 +48,7 @@
toLoadJs('https://map.qq.com/api/gljs?v=1.exp&key=OB4BZ-D4W3U-B7VVO-4PJWW-6TKDJ-WPB77')
}
- console.log('============调试版本:1.0.4')
+ console.log('============调试版本:1.0.5')
console.log('nodeEnv', window.SITE_CONFIG['nodeEnv'])
diff --git a/src/assets/scss/modules/management/detail-main.scss b/src/assets/scss/modules/management/detail-main.scss
index 31f16237f..0767b7768 100644
--- a/src/assets/scss/modules/management/detail-main.scss
+++ b/src/assets/scss/modules/management/detail-main.scss
@@ -147,6 +147,9 @@
.info-title-5{
flex: 0 0 130px;
}
+ .info-title-6{
+ flex: 0 0 240px;
+ }
> span,
> div {
diff --git a/src/assets/scss/modules/management/epidemic.scss b/src/assets/scss/modules/management/epidemic.scss
index f8ff057cd..7106aa787 100644
--- a/src/assets/scss/modules/management/epidemic.scss
+++ b/src/assets/scss/modules/management/epidemic.scss
@@ -16,6 +16,12 @@
.item_width_3 {
width: 180px;
}
+ .item_width_4 {
+ width: 350px;
+ }
+ .item_width_5 {
+ width: 450px;
+ }
.btn-selperson {
margin-left: 20px;
diff --git a/src/main.js b/src/main.js
index 83da7bbc3..ad57961d8 100644
--- a/src/main.js
+++ b/src/main.js
@@ -1,7 +1,7 @@
import Vue from "vue";
import Element from "element-ui";
-// import Mint from "mint-ui";
-// import "mint-ui/lib/style.css";
+import Mint from "mint-ui";
+import "mint-ui/lib/style.css";
import App from "@/App";
import i18n from "@/i18n";
@@ -60,7 +60,7 @@ Vue.config.productionTip = false;
// Vue.use(renProcessRunning);
// Vue.use(renProcessDetail);
// Vue.use(Element);
-// Vue.use(Mint);
+Vue.use(Mint);
Vue.use(Element, {
size: "default",
diff --git a/src/utils/index.js b/src/utils/index.js
index ec577e6cb..9567f50d6 100644
--- a/src/utils/index.js
+++ b/src/utils/index.js
@@ -43,10 +43,8 @@ export function getDictLabel(dictType, dictValue) {
* 清除登录信息
*/
export function clearLoginInfo() {
- console.log('==========clearLoginInfo')
store.commit("resetStore");
localStorage.removeItem("token");
- localStorage.setItem('thePageAtExit', location.href);
window.SITE_CONFIG["dynamicMenuRoutesHasAdded"] = false;
}
@@ -166,11 +164,7 @@ export function computedCard(idCard) {
if (sex % 2 === 0)
sex = "0"; // 性别代码 1代表男,0代表女,暂时不涉及其他类型性别
else sex = "1";
- return {
- age,
- sex,
- birth
- };
+ return { age, sex, birth };
}
// 将数组分成小块数组的集合
export function spliceIntoChunks(arr, chunkSize) {
@@ -209,4 +203,4 @@ export function encryptedData(key, data) {
encryptor.setPublicKey(key);
// 加密数据
return encryptor.encrypt(data);
-}
\ No newline at end of file
+}
diff --git a/src/views/main-shuju/main.vue b/src/views/main-shuju/main.vue
index 869cd5b9c..e1026e6fd 100644
--- a/src/views/main-shuju/main.vue
+++ b/src/views/main-shuju/main.vue
@@ -1,22 +1,27 @@
-
+ { 'z-iframe': $store.state.inIframe },
+ ]"
+ >
-
+
-
+
-
+
@@ -33,10 +38,10 @@ import fixed1920 from "@/views/components/fixed1920.vue";
import MainThemeTools from "./main-theme-tools";
export default {
- provide () {
+ provide() {
return {
// 刷新
- refresh () {
+ refresh() {
this.$store.state.contentIsNeedRefresh = true;
this.$nextTick(() => {
this.$store.state.contentIsNeedRefresh = false;
@@ -44,7 +49,7 @@ export default {
},
};
},
- data () {
+ data() {
return {
loading: true,
userType: localStorage.getItem("userType"),
@@ -54,13 +59,13 @@ export default {
MainNavbar,
MainContent,
fixed1920,
- MainThemeTools
+ MainThemeTools,
},
watch: {
$route: "routeHandle",
},
- async created () {
+ async created() {
this.windowResizeHandle();
this.routeHandle(this.$route);
Promise.all([this.getWorkUserInfo()]).then(() => {
@@ -69,11 +74,11 @@ export default {
},
computed: {},
methods: {
- changeCustomerName (customerName) {
+ changeCustomerName(customerName) {
this.$refs["ref_navbar"].changeCustomerName(customerName);
},
// 窗口改变大小
- windowResizeHandle () {
+ windowResizeHandle() {
this.$store.state.sidebarFold =
document.documentElement["clientWidth"] <= 992 || false;
window.addEventListener(
@@ -85,7 +90,7 @@ export default {
);
},
// 路由, 监听
- routeHandle (route) {
+ routeHandle(route) {
if (!route.meta.isTab) {
this.$store.state.mainShuju.activeName = "";
this.$store.state.mainShuju.contentTabsActiveName = "";
@@ -111,7 +116,7 @@ export default {
},
// 获取当前管理员信息
- async getWorkUserInfo () {
+ async getWorkUserInfo() {
const url = "/epmetuser/customerstaff/staffbasicinfo";
let params = {};
const { data, code, msg } = await requestPost(url, params);
diff --git a/src/views/main.vue b/src/views/main.vue
index eb6f306e1..0d5740997 100644
--- a/src/views/main.vue
+++ b/src/views/main.vue
@@ -22,7 +22,7 @@
@changeCustomerName="changeCustomerName"
/>
-
+
diff --git a/src/views/modules/base/community/communityTable.vue b/src/views/modules/base/community/communityTable.vue
index 67be62ad2..7c635a4e7 100644
--- a/src/views/modules/base/community/communityTable.vue
+++ b/src/views/modules/base/community/communityTable.vue
@@ -647,6 +647,7 @@ export default {
}
},
async handleDownQr (row, type) {
+ let title = row.label + '二维码.png'
// const url = window.SITE_CONFIG['apiURL'] + `/gov/org/icneighborhood/createQrCode/${row.neighborHoodId}`
const url = '/gov/org/agency/create-qrcode'
const _id = type == 'community' ? row.id : row.neighborHoodId
@@ -661,10 +662,10 @@ export default {
responseType: 'blob'
}).then(res => {
console.log('res----1r', res)
- if (res.headers["content-disposition"]) {
- let fileName = window.decodeURI(res.headers["content-disposition"].split(";")[1].split("=")[1])
- console.log('filename', fileName)
- this.download(res.data, fileName) //释放掉blob对象
+ if (res.data) {
+ // let fileName = window.decodeURI(res.headers["content-disposition"].split(";")[1].split("=")[1])
+ // console.log('filename', fileName)
+ this.download(res.data, title) //释放掉blob对象
} else this.$message.error('下载失败')
// this.download(res.data, '1.png')
})
diff --git a/src/views/modules/base/epidemic/antiInfo.vue b/src/views/modules/base/epidemic/antiInfo.vue
index c87b14164..22eef0ace 100644
--- a/src/views/modules/base/epidemic/antiInfo.vue
+++ b/src/views/modules/base/epidemic/antiInfo.vue
@@ -9,7 +9,14 @@
取 消
-
确 定
@@ -263,7 +326,7 @@ export default {
gridList: [],
personList: [],
pickerOptions: {
- disabledDate(time) {
+ disabledDate (time) {
return time.getTime() > Date.now();
}
},
@@ -287,42 +350,114 @@ export default {
presentAddressPathCode: '',
sourceAddress: '',
sourceAddressPathCode: '',
+ sourceDetailAddress: '',
arriveDate: '',
remark: '',
leaveDate: '',
userType: 'input',
content: '',
- channel: []
+ channel: [],
+
+ trafficType: '',
+ trafficTypeExplain: '',
+ isNatRecord: '',
+ vaccineNum: '',
},
dataRule: {
name: [
- { required: true, message: '姓名不能为空', trigger: 'blur' }
+ { required: true, message: '姓名不能为空', trigger: 'change' }
],
idCard: [
- { required: true, validator: checkIdCard, trigger: 'blur' }
+ { required: true, validator: checkIdCard, trigger: 'change' }
],
mobile: [
- { required: true, validator: checkMObile, trigger: 'blur' },
+ { required: true, validator: checkMObile, trigger: 'change' },
],
presentAddress: [
- { required: true, message: '现居地不能为空', trigger: 'blur' },
+ { required: true, message: '现居地不能为空', trigger: 'change' },
],
detailAddress: [
- { required: true, message: '详细地址不能为空', trigger: 'blur' },
+ { required: true, message: '详细地址不能为空', trigger: 'change' },
],
sourceAddress: [
- { required: true, message: '来自地区不能为空', trigger: 'blur' },
+ { required: true, message: '来自地区不能为空', trigger: 'change' },
+ ],
+ sourceDetailAddress: [
+ { required: true, message: '来自地区详细地址不能为空', trigger: 'change' },
],
arriveDate: [
- { required: true, message: '来到本地时间不能为空', trigger: 'blur' },
+ { required: true, message: '来到本地时间不能为空', trigger: 'change' },
+ ],
+ trafficType: [
+ { required: true, message: '交通方式不能为空', trigger: 'change' },
+ ],
+ trafficTypeExplain: [
+ { required: true, message: '其他交通方式不能为空', trigger: 'change' },
+ ],
+ isNatRecord: [
+ { required: true, message: '48小时核酸记录不能为空', trigger: 'change' },
+ ],
+ vaccineNum: [
+ { required: true, message: '疫苗接种针刺不能为空', trigger: 'change' },
]
},
areaProps: {
// checkStrictly: true,
lazy: true,
lazyLoad: this.lzayLoadArea
- }
+ },
+
+ trafficTypeList: [
+ {
+ value: '0',
+ label: '飞机'
+ },
+ {
+ value: '1',
+ label: '动车'
+ },
+ {
+ value: '2',
+ label: '火车'
+ },
+ {
+ value: '3',
+ label: '自驾'
+ },
+ {
+ value: '4',
+ label: '其他'
+ },
+ ],
+ ymList: [
+ {
+ value: '0',
+ label: '0针'
+ },
+ {
+ value: '1',
+ label: '1针'
+ },
+ {
+ value: '2',
+ label: '2针'
+ },
+ {
+ value: '3',
+ label: '3针'
+ }
+ ],
+ hsList: [
+ {
+ value: '1',
+ label: '是'
+ },
+ {
+ value: '2',
+ label: '否'
+ }
+ ]
}
},
@@ -332,12 +467,13 @@ export default {
this.agencyId = user.agencyId
//获取网格下拉框数据
await this.loadGrid()
+ this.getTrafficType()
},
- destroyed() {
+ destroyed () {
this.nowAllCode = []
},
methods: {
- computedWd(val) {
+ computedWd (val) {
const len = val.length
const wd = len * 18
let w = ''
@@ -345,7 +481,7 @@ export default {
else w = 220
return w + 'px'
},
- lzayLoadArea(node, resolve) {
+ lzayLoadArea (node, resolve) {
// this.getArea(node, resolve)
setTimeout(() => {
this.getArea(node, resolve)
@@ -362,7 +498,13 @@ export default {
} else {
const { user } = this.$store.state
- this.nowAllCode = user.areaCodePath
+
+ if (user.areaCodePath.length > 3) {
+ this.nowAllCode = [user.areaCodePath[0], user.areaCodePath[1], user.areaCodePath[2]]
+ } else {
+ this.nowAllCode = user.areaCodePath
+ }
+
}
// this.$refs['ref_form'].resetFields();
@@ -389,7 +531,7 @@ export default {
},
- handleSourceArea(val) {
+ handleSourceArea (val) {
console.log('val-----', val)
console.log('label-----', this.$refs.sourceArea.getCheckedNodes())
if (val.length > 0) {
@@ -405,7 +547,7 @@ export default {
}
},
- handleNowArea(val) {
+ handleNowArea (val) {
console.log('val-----', val)
console.log('label-----', this.$refs.nowArea.getCheckedNodes())
if (val.length > 0) {
@@ -437,6 +579,23 @@ export default {
this.$message.error(msg)
}
+ },
+ async getTrafficType () {
+ const url = "/sys/dict/data/dictlist"
+
+ let params = {
+ dictType: "traffic_type",
+ }
+
+ const { data, code, msg } = await requestPost(url, params)
+
+ if (code === 0) {
+ this.trafficTypeList = data
+
+ } else {
+ this.$message.error(msg)
+ }
+
},
async handleSelGrid (value) {
@@ -482,7 +641,7 @@ export default {
}
},
- async handleSelAddress(value) {
+ async handleSelAddress (value) {
const url = "/gov/org/house/gethouseinfo/" + value
@@ -613,7 +772,6 @@ export default {
min-width: 260px;
}
}
-
+
+
diff --git a/src/views/modules/base/epidemic/travelPanshi/travelPanshiDetail.vue b/src/views/modules/base/epidemic/travelPanshi/travelPanshiDetail.vue
new file mode 100644
index 000000000..41866e7f0
--- /dev/null
+++ b/src/views/modules/base/epidemic/travelPanshi/travelPanshiDetail.vue
@@ -0,0 +1,327 @@
+
+
+
+
+ 显示脱敏信息
+
+
+
+
+ 姓名:
+ {{ formData.name||'--' }}
+
+
+
+ 手机号:
+ {{ formData.showMobile||'--' }}
+
+
+
+ 证件号:
+ {{ formData.showIdCard||'--' }}
+
+
+ 户籍地:
+ {{ formData.registeredResidence||'--' }}
+
+
+ 来源地:
+ {{ formData.sourceAddress||'--' }}
+
+
+ 详细地址:
+ {{ formData.sourceDetailAddress||'--' }}
+
+
+ 来曹事由:
+ {{ formData.describeContent||'--' }}
+
+
+ 48小时核酸:
+ {{ formData.natOutcomeName||'--' }}
+
+
+
+ 来到本地时间:
+ {{ formData.arriveDate||'--' }}
+
+
+
+ 在曹居住地点:
+ {{ formData.presentAddress||'--' }}
+
+
+ 详细地址:
+ {{ formData.detailAddress||'--' }}
+
+
+ 返回方式:
+ {{ formData.trafficTypeName||'--' }}
+
+
+ 具体方式:
+ {{ formData.trafficTypeExplain||'--' }}
+
+
+ 7天内旅居史情况:
+ {{ formData.sojournHistoryName||'--' }}
+
+
+ 隔离状态:
+ {{ formData.isolateTypeName||'--' }}
+
+
+ 备注:
+ {{ formData.remark||'--' }}
+
+
+ 是否落实"落地检":
+ {{ formData.isArriveCheckName||'--' }}
+
+
+ 是否到达曹县:
+ {{ formData.isArriveName||'--' }}
+
+
+
+ 上报时间:
+ {{ formData.reportingTime||'--' }}
+
+
+ 类型:
+ {{ formData.tripDataTypeName||'--' }}
+
+
+
+
+
+
+
+ 关 闭
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/modules/base/epidemic/travelPanshi/travelPanshiForm.vue b/src/views/modules/base/epidemic/travelPanshi/travelPanshiForm.vue
new file mode 100644
index 000000000..c136bce6a
--- /dev/null
+++ b/src/views/modules/base/epidemic/travelPanshi/travelPanshiForm.vue
@@ -0,0 +1,882 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/modules/base/epidemic/veroFocus/vfVisiteList.vue b/src/views/modules/base/epidemic/veroFocus/vfVisiteList.vue
index fdef145e9..882deeffb 100644
--- a/src/views/modules/base/epidemic/veroFocus/vfVisiteList.vue
+++ b/src/views/modules/base/epidemic/veroFocus/vfVisiteList.vue
@@ -151,10 +151,10 @@ export default {
methods: {
async initTable (row) {
-
- this.formData.idCard = row.idCard
+ console.log(row)
+ this.formData.idCard = row.realIdCard
this.formData.name = row.name
- this.formData.mobile = row.mobile
+ this.formData.mobile = row.realMobile
await this.loadTable()
diff --git a/src/views/modules/communityParty/regionalParty/activitys.vue b/src/views/modules/communityParty/regionalParty/activitys.vue
index e9785bebb..2559274b9 100644
--- a/src/views/modules/communityParty/regionalParty/activitys.vue
+++ b/src/views/modules/communityParty/regionalParty/activitys.vue
@@ -193,13 +193,14 @@
style="color:#1C6AFD;text-decoration: underline;"
size="small"
@click="handleDetail(scope.row)">查看
-
修改
-
删除
diff --git a/src/views/modules/communityParty/regionalParty/units.vue b/src/views/modules/communityParty/regionalParty/units.vue
index fa3cfb952..bc61e38c6 100644
--- a/src/views/modules/communityParty/regionalParty/units.vue
+++ b/src/views/modules/communityParty/regionalParty/units.vue
@@ -128,6 +128,12 @@
label="单位名称"
min-width="100">
+
+
查看
- 修改
- 更多
+ 积分记录
+
diff --git a/src/views/modules/partymember/icpartyorgtree.vue b/src/views/modules/partymember/icpartyorgtree.vue
index 4dd705c94..7b5f5450d 100644
--- a/src/views/modules/partymember/icpartyorgtree.vue
+++ b/src/views/modules/partymember/icpartyorgtree.vue
@@ -45,7 +45,7 @@
size="small"
class="div-table-button--add">新增下级
修改
diff --git a/src/views/modules/plugins/rent/rentcontractreview.vue b/src/views/modules/plugins/rent/rentcontractreview.vue
index 2654fdaec..a1d211e33 100644
--- a/src/views/modules/plugins/rent/rentcontractreview.vue
+++ b/src/views/modules/plugins/rent/rentcontractreview.vue
@@ -196,9 +196,9 @@
登记
+ 修改
+ {{ $t('delete') }}
{{ $t('lookBtn') }}
-
-
@@ -229,7 +229,7 @@ export default {
mixinViewModuleOptions: {
getDataListURL: '/pli/power/rentContractInfo/page',
getDataListIsPage: true,
- deleteURL: '/pli/power/rentContractInfo',
+ deleteURL: '/pli/power/rentContractInfo/delete',
deleteIsBatch: true
},
optionsV: [],
diff --git a/src/views/modules/visual/communityGovern/zhongdianxingcheng/detail.vue b/src/views/modules/visual/communityGovern/zhongdianxingcheng/detail.vue
new file mode 100644
index 000000000..5f33fa448
--- /dev/null
+++ b/src/views/modules/visual/communityGovern/zhongdianxingcheng/detail.vue
@@ -0,0 +1,195 @@
+
+
+
+
+
+

+
详情
+
+
+
+
+
+

+
+
+
+
+
+ 姓名:
+ {{ info.name||'--' }}
+
+
+ 手机:
+ {{ info.mobile||'--' }}
+
+
+
+ 证件号:
+ {{ info.idCard||'--' }}
+
+
+ 来源地:
+ {{ info.sourceAddress||'--' }}
+
+
+
+ 来曹事由:
+ {{ info.describeContent||'--' }}
+
+
+ 48小时核酸:
+ {{ info.natOutComeName||'--' }}
+
+
+ 7天旅居史:
+ {{ info.sojournHistoryName||'--' }}
+
+
+ 隔离状态:
+ {{ info.isolateTypeName||'--' }}
+
+
+ 来曹时间:
+ {{ info.arriveDate||'--' }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/modules/visual/communityGovern/zhongdianxingcheng/pieOption.js b/src/views/modules/visual/communityGovern/zhongdianxingcheng/pieOption.js
new file mode 100644
index 000000000..ca2e35cd2
--- /dev/null
+++ b/src/views/modules/visual/communityGovern/zhongdianxingcheng/pieOption.js
@@ -0,0 +1,175 @@
+
+export function pieOption (_charts) {
+ const center= ['50%', '240px']
+ return {
+ title: {
+ text: '0',
+ top: 215,
+ left: 'center',
+ textStyle: {
+ width: '100%',
+ fontSize: 26,
+ color: '#FFFFFF',
+ fontWeight: 400
+ },
+ itemGap: 5,
+ subtext: '总数',
+ subtextStyle: {
+ fontSize: 18,
+ color: '#fff',
+ fontWeight: 400
+ }
+ },
+ tooltip: {
+ show: false
+ },
+ legend: {
+ bottom: 150,
+ itemWidth: 20,
+ itemHeight: 10,
+ textStyle: {
+ color: '#D2E7FF',
+ fontSize: 14,
+ lineHeight: 20,
+ },
+
+ },
+ series: [
+ // 外侧圆环
+ {
+ type: 'pie',
+ // 起始刻度的角度,默认为 90 度,即圆心的正上方。0 度为圆心的正右方。
+ startAngle: 0,
+ hoverAnimation: false,
+ // tooltip: {
+ // },
+ center: center,
+ radius: ['48%', '48.3%'],
+ label: {
+ show: false
+ },
+ labelLine: {
+ show: false
+ },
+ data: [{
+ value: 360,
+ itemStyle: {
+ color: 'rgba(40, 101, 250, 0)',
+ width:0,
+ borderColor: 'rgba(40, 101, 250, 0.5)',
+ borderWidth: 1,
+ borderType: 'dotted'
+ }
+ }
+ ]
+ },
+
+ // 突出的
+ {
+ hoverAnimation: false,
+ // name: 'Access From',
+ type: 'pie',
+ center: center,
+ radius: ['25%', '38%'],
+ avoidLabelOverlap: false,
+ // top: top + '%',
+ // height: '80%',
+ selectedMode: 'single',
+ left: 'center',
+ width: 480,
+ label: {
+ // show: false,
+ position: 'outside',
+ alignTo: 'edge',
+ // formatter: '{a|{c}}\n\n{name|{b}}',
+ formatter: '{a|{c}}\n{r|}\n{name|{b}}',
+ minMargin: 5,
+ edgeDistance: 1,
+ lineHeight: 15,
+ color: '#fff',
+ fontSize: 10,
+ // distanceToLabelLine: -60,
+ rich: {
+ name: {
+ padding: [0, 6, 0, 6]
+ },
+ a: {
+ fontSize: 18,
+ color: '#fff',
+ padding: [0, 6, 6, 6]
+ },
+ r: {
+ backgroundColor: 'auto',
+ borderRadius: 6,
+ width: 6,
+ height: 6,
+ // padding: [3, 3, 0, -12]
+ }
+ }
+ },
+ labelLine: {
+ show: false,
+ smooth: 0.2,
+ length: 20,
+ length2: 0,
+ maxSurfaceAngle: 80
+ },
+ labelLayout: function (params) {
+
+ const isLeft = params.labelRect.x < _charts.getWidth() / 2;
+ const points = params.labelLinePoints;
+ // Update the end point.
+ if (points) {
+ points[2][0] = isLeft
+ ? params.labelRect.x
+ : params.labelRect.x + params.labelRect.width;
+ }
+
+ return {
+ labelLinePoints: points
+ };
+ },
+ itemStyle: {
+ color:function(params) {
+ return params.data.color
+ }
+ },
+ data: [],
+
+ },
+ // 中间圆环
+ {
+ type: 'pie',
+ // 起始刻度的角度,默认为 90 度,即圆心的正上方。0 度为圆心的正右方。
+ startAngle: 0,
+ hoverAnimation: false,
+ center: center,
+ // tooltip: {
+ // },
+ radius: ['0%', '20%'],
+ label: {
+
+ show: false
+
+ },
+ labelLine: {
+
+ show: false
+
+ },
+ data: [{
+ value: 360,
+ itemStyle: {
+ normal: {
+ color: 'rgba(8, 37, 134, 1)',
+
+ }
+ }
+ }
+ ]
+ },
+ ]
+
+ }
+ }
+
\ No newline at end of file
diff --git a/src/views/modules/visual/communityGovern/zhongdianxingcheng/zhongdianxingcheng.vue b/src/views/modules/visual/communityGovern/zhongdianxingcheng/zhongdianxingcheng.vue
new file mode 100644
index 000000000..c3084c377
--- /dev/null
+++ b/src/views/modules/visual/communityGovern/zhongdianxingcheng/zhongdianxingcheng.vue
@@ -0,0 +1,508 @@
+
+
+
+

+
重点行程名单统计
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/modules/visual/shundeju/controlCount.vue b/src/views/modules/visual/shundeju/controlCount.vue
index ae3bb12ba..1c6a5928c 100644
--- a/src/views/modules/visual/shundeju/controlCount.vue
+++ b/src/views/modules/visual/shundeju/controlCount.vue
@@ -225,6 +225,7 @@ export default {
} else {
item.type = '未知'
}
+ item.villageName = '顺德居小区'
return {
...item,
index: index + 1
diff --git a/src/views/pages/login.vue b/src/views/pages/login.vue
index 3e77cdbde..8e39a89e2 100644
--- a/src/views/pages/login.vue
+++ b/src/views/pages/login.vue
@@ -154,16 +154,6 @@ export default {
},
methods: {
- // 登陆后跳转逻辑
- skipAfterLogin() {
- let href = localStorage.getItem("thePageAtExit");
- if (href) {
- localStorage.removeItem("thePageAtExit");
- location.href = href;
- } else {
- this.$router.replace({ name: "index" });
- }
- },
// 获取公钥
getPubKey() {
this.$http
@@ -237,7 +227,7 @@ export default {
localStorage.setItem("userType", "work");
localStorage.setItem("showHeader", "0");
localStorage.setItem("token", res.data.token);
- this.skipAfterLogin();
+ this.$router.replace({ name: "index" });
})
.catch(() => {});
// epmet-ext9.elinkservice.cn/platform-admin
@@ -267,7 +257,7 @@ export default {
localStorage.setItem("userType", "work");
localStorage.setItem("token", res.data.token);
- this.skipAfterLogin();
+ this.$router.replace({ name: "index" });
})
.catch(() => {
this.endLoading();
diff --git a/src/views/pages/staffRegister.vue b/src/views/pages/staffRegister.vue
index 97db79617..70b7dec5d 100644
--- a/src/views/pages/staffRegister.vue
+++ b/src/views/pages/staffRegister.vue
@@ -14,11 +14,12 @@
+
+
-
-
- {{placeOrgName}}
-
+ {{placeOrgName}}
+
+
+
+
-
-
- {{placeOrgName}}
-
+ {{placeOrgName}}
+
+