aa08f189 by renchao@pashanhoo.com

style:配置文件完善

1 parent e3f05d5e
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-04-03 13:53:03
* @LastEditTime: 2023-04-06 09:51:35
-->
## Git 贡献提交规范
- `feat` 增加新功能
......@@ -22,6 +22,7 @@
{
"TITLE": "汉中市数据上报系统",
"THEME": "sb",
"LOGIN": "", { 登录配置 }
"CODE": "BDCJGPT", {"BDCSBPT":上报: "BDCJGPT":监管}
"SERVERAPI": "/bdcsjsb",
"AREARMAP": "hanzhong", // {"hanzhong","yushu"}
......@@ -30,3 +31,7 @@
"echartTextColor": "#FFFFFF", {上报:"#4A4A4A" 监管:"#FFFFFF"}
"MANAGEMENTAPI": "http://192.168.2.38:8090/management"
}
## 行政区编码
610702 汉中
632701 玉树
\ No newline at end of file
......
{
"name": "bdcdj-web",
"version": "4.4.0",
"description": "HOUTAI",
"author": "psh",
"version": "2.0.0",
"description": "jgsb",
"author": "renchao",
"scripts": {
"dev": "vue-cli-service serve",
"build": "vue-cli-service build"
......@@ -56,21 +56,14 @@
"> 1%",
"last 2 versions"
],
"bugs": {
"url": "https://github.com/PanJiaChen/vue-element-admin/issues"
},
"engines": {
"node": ">=8.9",
"node": ">=10.16",
"npm": ">= 3.0.0"
},
"keywords": [
"vue",
"admin",
"dashboard",
"element-ui",
"boilerplate",
"admin-template",
"management-system"
"element-ui"
],
"license": "MIT",
"husky": {
......@@ -80,6 +73,6 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/PanJiaChen/vue-element-admin.git"
"url": "http://yun.pashanhoo.com:9090/bdc/bdcjg-web.git"
}
}
\ No newline at end of file
......
{
"TITLE": "汉中市监管系统",
"THEME": "jg",
"CODE": "BDCJGPT",
"AREARMAP": "610702",
"AREARNAME": "汉中市",
"SERVERAPI": "/bdcsjsb",
"calcHeight": 200,
"echartTextColor": "#FFFFFF",
"MANAGEMENTAPI": "http://192.168.2.38:8090/management"
}
\ No newline at end of file
{
"TITLE": "汉中市数据上报系统",
"THEME": "sb",
"CODE": "BDCSBPT",
"AREARMAP": "610702",
"AREARNAME": "汉中市",
"SERVERAPI": "/bdcsjsb",
"calcHeight": 160,
"echartTextColor": "#4A4A4A",
"MANAGEMENTAPI": "http://192.168.2.38:8090/management"
}
\ No newline at end of file
{
"TITLE": "玉树州监管系统",
"THEME": "jg",
"CODE": "BDCJGPT",
"AREARMAP": "632701",
"AREARNAME": "玉树",
"SERVERAPI": "/bdcsjsb",
"calcHeight": 200,
"echartTextColor": "#FFFFFF",
"MANAGEMENTAPI": "http://192.168.2.38:8090/management"
}
\ No newline at end of file
{
"TITLE": "玉树州数据上报系统",
"THEME": "sb",
"CODE": "BDCSBPT",
"AREARMAP": "632701",
"AREARNAME": "玉树",
"SERVERAPI": "/bdcsjsb",
"calcHeight": 160,
"echartTextColor": "#4A4A4A",
"MANAGEMENTAPI": "http://192.168.2.38:8090/management"
}
\ No newline at end of file
{
"TITLE": "汉中市数据上报系统",
"THEME": "sb",
"CODE": "BDCSBPT",
"AREARMAP": "hanzhong",
"THEME": "jg",
"CODE": "BDCJGPT",
"AREARMAP": "610702",
"AREARNAME": "汉中市",
"SERVERAPI": "/bdcsjsb",
"calcHeight": 160,
......
......@@ -208,6 +208,7 @@ export default {
handleTitleTab (val) {
},
isShow (item) {
if (item.bizMsgid) {
this.$set(this.bwoptions, 0, {
value: item.bizMsgid,
label: item.bizMsgid,
......@@ -220,6 +221,7 @@ export default {
value: item.bizMsgid + 'BBXZ',
label: item.bizMsgid + 'BBXZ',
})
}
this.titleName = 'sjmx';
this.dialogVisible = true;
//获取表头列表
......@@ -227,7 +229,7 @@ export default {
//不动产数据查询上报详情
getReportDetail({ bsmReport: item.bsmSjsb || item.bsmReport }).then((res) => {
if (res.code == 200) {
this.dataReport = res.result;
this.dataReport = res.result || {};
}
})
// 获取xml
......@@ -241,9 +243,9 @@ export default {
_getList (data) {
getTabsDetail({ bsmReport: data.bsmReport || data.bsmSjsb }).then((res) => {
if (res.code == 200) {
this.headerList = res.result;
this.headerList = res.result | [];
this.activeName = this.tabsActiveName == '' ? res.result[0].soleurl : this.tabsActiveName
this.bsmYwsjb = this.headerList[0].bsmYwsjb;
this.bsmYwsjb = this.headerList[0]?.bsmYwsjb;
this.editItem = this.loadView(this.activeName);
}
});
......@@ -270,6 +272,7 @@ export default {
//关闭弹框时将tabs项置空
this.editItem = "";
this.headerList = [];
},
/**
* @description: 提交
......
......@@ -12,8 +12,8 @@
<el-input class="username" v-model="user.account" placeholder="请输入用户名"></el-input>
</el-form-item>
<el-form-item prop="password">
<el-input type="password" class="password" v-model="user.password" placeholder="请输入密码"
show-password></el-input>
<el-input type="password" class="password" @keyup.enter.native="login('user')" v-model="user.password"
placeholder="请输入密码" show-password></el-input>
</el-form-item>
<!-- <el-form-item prop="yz">
<div class="flex-container">
......