Commit d085f632 by 米嘉伟

Merge branch 'dev_zwpt' of http://39.99.224.27:9022/changchao/founder_vue into dev_zwpt

parents 901ad4e0 eb716714
...@@ -12,6 +12,7 @@ import './plugins/axios' ...@@ -12,6 +12,7 @@ import './plugins/axios'
import fHttp from './request/http.js' import fHttp from './request/http.js'
import NetUtil from './netmgr/NetUtil' import NetUtil from './netmgr/NetUtil'
import RegExpUtil from './utils/verify-data/RegExpUtil.js' import RegExpUtil from './utils/verify-data/RegExpUtil.js'
import ValueFormatUtil from './utils/ValueFormatUtil.js'
import App from './App.vue' import App from './App.vue'
import router from './router' import router from './router'
import store from './store' import store from './store'
...@@ -44,6 +45,7 @@ import IconSvg from './utils/IconSvg.vue' ...@@ -44,6 +45,7 @@ import IconSvg from './utils/IconSvg.vue'
Vue.component('svg-icon', IconSvg) Vue.component('svg-icon', IconSvg)
moment.locale('zh-cn') moment.locale('zh-cn')
Vue.prototype.$moment = moment Vue.prototype.$moment = moment
window.moment = moment
// 引入上传组件 // 引入上传组件
import uploader from 'vue-simple-uploader' import uploader from 'vue-simple-uploader'
...@@ -87,6 +89,8 @@ window.user = UserUtil ...@@ -87,6 +89,8 @@ window.user = UserUtil
window.ljkUtil = LjkUtil window.ljkUtil = LjkUtil
window.fHttp = fHttp window.fHttp = fHttp
window.fRegExp = RegExpUtil window.fRegExp = RegExpUtil
Vue.prototype.$fFormatUtil = ValueFormatUtil
window.fFormatUtil = ValueFormatUtil
window.NetUtil = NetUtil window.NetUtil = NetUtil
Vue.use(VueWechatTitle) Vue.use(VueWechatTitle)
Vue.use(VueClipboard) Vue.use(VueClipboard)
......
...@@ -23,7 +23,7 @@ const _path = { ...@@ -23,7 +23,7 @@ const _path = {
} }
export default { export default {
// 获取案件指纹 // 获取案件指纹
ajfinger(_parameter) { ajfinger(_parameter) { A
return fHttp.postJson(_path.ajfinger, _parameter, HttpConfigUtil.closeLoadAndTip()) return fHttp.postJson(_path.ajfinger, _parameter, HttpConfigUtil.closeLoadAndTip())
}, },
// 获取案件掌纹 // 获取案件掌纹
......
...@@ -80,11 +80,11 @@ let initConfig = (config) => { ...@@ -80,11 +80,11 @@ let initConfig = (config) => {
if (config[HttpConfig._TYPE.LOADING] !== false) { if (config[HttpConfig._TYPE.LOADING] !== false) {
showLoading(config[HttpConfig._TYPE.LOADING_TARGET]) // 如果设置了targer,使用设置的target,比如el-table showLoading(config[HttpConfig._TYPE.LOADING_TARGET]) // 如果设置了targer,使用设置的target,比如el-table
} }
logger.info('_IS_SHOW_TIP', _IS_SHOW_TIP) // logger.info('_IS_SHOW_TIP', _IS_SHOW_TIP+'')
if (config[HttpConfig._TYPE.TIP]) { if (config[HttpConfig._TYPE.TIP] !== true) {
_IS_SHOW_TIP = config[HttpConfig._TYPE.TIP] _IS_SHOW_TIP = config[HttpConfig._TYPE.TIP]
} }
logger.info('_IS_SHOW_TIP', _IS_SHOW_TIP) // logger.info('_IS_SHOW_TIP', _IS_SHOW_TIP +'')
console.log('initConfig', config) console.log('initConfig', config)
return config return config
} }
......
export default {
// 时间格式化
dateTimeFormat (row, colnum) {
let prop = colnum.property;
return row[prop] ? moment(row[prop]).format("YYYY-MM-DD") : "---";
},
dateTimeFormat1 (row, colnum) {
let prop = colnum.property;
return row[prop] ? moment(row[prop]).format("YYYY-MM-DD hh:mm:ss") : "---";
},
// 普通值非空格式化 空返回 '---'
valueFormat(row, colnum) {
let prop = colnum.property
return row[prop] ? row[prop] : '---'
},
// 普通值非空格式化 空返回 '0'
valueFormat0(row, colnum) {
let prop = colnum.property
return row[prop] ? row[prop] : '0'
},
}
...@@ -1763,3 +1763,12 @@ export default { ...@@ -1763,3 +1763,12 @@ export default {
// @import "@/assets/css/globalBase.scss"; // @import "@/assets/css/globalBase.scss";
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -19,3 +19,12 @@ export default { ...@@ -19,3 +19,12 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -1219,3 +1219,12 @@ export default { ...@@ -1219,3 +1219,12 @@ export default {
height: 56px !important; height: 56px !important;
} }
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -1984,3 +1984,12 @@ export default { ...@@ -1984,3 +1984,12 @@ export default {
// @import "@/assets/css/globalBase.scss"; // @import "@/assets/css/globalBase.scss";
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -326,3 +326,12 @@ export default { ...@@ -326,3 +326,12 @@ export default {
border: 1px solid #EEEEEE; border: 1px solid #EEEEEE;
} }
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -963,7 +963,6 @@ export default { ...@@ -963,7 +963,6 @@ export default {
/deep/.flexBox { /deep/.flexBox {
display: flex; display: flex;
.el-checkbox { .el-checkbox {
margin-right: 24px; margin-right: 24px;
......
...@@ -1559,3 +1559,12 @@ const datas1 = [ ...@@ -1559,3 +1559,12 @@ const datas1 = [
} }
// @import "@/assets/css/globalBase.scss"; // @import "@/assets/css/globalBase.scss";
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -1956,3 +1956,12 @@ export default { ...@@ -1956,3 +1956,12 @@ export default {
@import "./scss/boxShadow"; @import "./scss/boxShadow";
// @import "@/assets/css/globalBase.scss"; // @import "@/assets/css/globalBase.scss";
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -930,3 +930,12 @@ export default { ...@@ -930,3 +930,12 @@ export default {
@import "scss/userpermission.scss"; @import "scss/userpermission.scss";
@import "scss/group"; @import "scss/group";
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -183,13 +183,14 @@ ...@@ -183,13 +183,14 @@
> >
<template slot-scope="scope"> <template slot-scope="scope">
<div <div
v-if="scope.row.permissionNames && scope.row.permissionNames !== '/'"
v-for="(item, index) in scope.row.permissionNames && v-for="(item, index) in scope.row.permissionNames &&
scope.row.permissionNames.split(',')" scope.row.permissionNames.split(',')"
:key="index" :key="index">
>
{{ index > 0 ? "/" : "" }} {{ index > 0 ? "/" : "" }}
{{ item }} {{ item }}
</div> </div>
<span v-else>{{ '---' }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="status" label="启用状态" width="auto"> <el-table-column prop="status" label="启用状态" width="auto">
...@@ -1151,3 +1152,12 @@ export default { ...@@ -1151,3 +1152,12 @@ export default {
} }
} }
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -964,3 +964,12 @@ export default { ...@@ -964,3 +964,12 @@ export default {
// @import "@/assets/css/globalBase.scss"; // @import "@/assets/css/globalBase.scss";
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -31,8 +31,7 @@ ...@@ -31,8 +31,7 @@
<div <div
@click.stop="copy(item.id)" @click.stop="copy(item.id)"
@mouseenter="$set(item, 'enter', true)" @mouseenter="$set(item, 'enter', true)"
@mouseleave="$set(item, 'enter', false)" @mouseleave="$set(item, 'enter', false)">
>
<svg-icon <svg-icon
icon-class="copy" icon-class="copy"
v-show="fuzhi" v-show="fuzhi"
...@@ -93,23 +92,17 @@ ...@@ -93,23 +92,17 @@
<div class="autoPlay" ref="diyRoles"> <div class="autoPlay" ref="diyRoles">
<el-checkbox-group v-model="btnCheckList"> <el-checkbox-group v-model="btnCheckList">
<div v-for="item in diyRoleList" :key="item.id" class="chooseItem"> <div v-for="item in diyRoleList" :key="item.id" class="chooseItem">
<el-checkbox :label="item.id" class="checkChoose" v-if="delimgBoo" <el-checkbox :label="item.id" class="checkChoose" v-if="delimgBoo">1</el-checkbox>
>1</el-checkbox <div @click.stop="() => {}"
>
<div
@click.stop="() => {}"
:class="{ :class="{
'diy-role-item': true, 'diy-role-item': true,
active: item.id === diyRoleItemIndex, active: item.id === diyRoleItemIndex,
delWidth: delimgBoo, delWidth: delimgBoo,}">
}"
>
<div <div
v-show="!item.edit" v-show="!item.edit"
class="diy-edit-title" class="diy-edit-title"
:title="item.value" :title="item.value"
@click="chooseDiyRoleItem(item)" @click="chooseDiyRoleItem(item)">
>
{{ item.value }} {{ item.value }}
</div> </div>
<el-input <el-input
...@@ -1022,6 +1015,7 @@ export default { ...@@ -1022,6 +1015,7 @@ export default {
padding-right: 15px; padding-right: 15px;
padding-left: 20px; padding-left: 20px;
overflow: auto; overflow: auto;
background: #30fd5301;
&::-webkit-scrollbar { &::-webkit-scrollbar {
width: 10px; /*高宽分别对应横竖滚动条的尺寸*/ width: 10px; /*高宽分别对应横竖滚动条的尺寸*/
height: 10px; height: 10px;
...@@ -1098,3 +1092,12 @@ export default { ...@@ -1098,3 +1092,12 @@ export default {
} }
} }
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -781,4 +781,8 @@ export default { ...@@ -781,4 +781,8 @@ export default {
} }
} }
@import "scss/userpermission.scss"; @import "scss/userpermission.scss";
.manage-page .line {
height: 2rem !important;
}
</style> </style>
...@@ -4,23 +4,28 @@ ...@@ -4,23 +4,28 @@
color: #666666 !important; color: #666666 !important;
} }
} }
width: 100%; width: 100%;
padding: 24px; padding: 24px;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
font-family: HarmonyOS_Sans_SC; font-family: HarmonyOS_Sans_SC;
div { div {
display: inline-block; display: inline-block;
} }
.is-disabled.is-checked { .is-disabled.is-checked {
.el-checkbox__inner { .el-checkbox__inner {
background-color: #b1b6c2 !important; background-color: #b1b6c2 !important;
border-color: #b1b6c2 !important; border-color: #b1b6c2 !important;
&::after { &::after {
border-color: #fff; border-color: #fff;
} }
} }
} }
.sider { .sider {
//border: #03A9F4 1px solid; //border: #03A9F4 1px solid;
//width: 240px; //width: 240px;
...@@ -28,6 +33,7 @@ ...@@ -28,6 +33,7 @@
height: 100%; height: 100%;
//margin-right: 10px; //margin-right: 10px;
text-align: center; text-align: center;
.btns { .btns {
width: 200px; width: 200px;
height: 45px; height: 45px;
...@@ -35,6 +41,7 @@ ...@@ -35,6 +41,7 @@
flex-direction: row; flex-direction: row;
padding-top: 10px; padding-top: 10px;
border-bottom: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee;
.add { .add {
width: 110px; width: 110px;
height: 32px; height: 32px;
...@@ -44,15 +51,18 @@ ...@@ -44,15 +51,18 @@
border-radius: 4px; border-radius: 4px;
border: 1px solid #aeb5c2; border: 1px solid #aeb5c2;
cursor: pointer; cursor: pointer;
&:hover { &:hover {
border: #055fe7 1px solid; border: #055fe7 1px solid;
color: #055fe7; color: #055fe7;
} }
&:active { &:active {
border: #055fe7 1px solid; border: #055fe7 1px solid;
color: #055fe7; color: #055fe7;
} }
} }
.img-btn { .img-btn {
width: 32px; width: 32px;
height: 32px; height: 32px;
...@@ -64,20 +74,24 @@ ...@@ -64,20 +74,24 @@
justify-content: center; justify-content: center;
align-items: center; align-items: center;
cursor: pointer; cursor: pointer;
&:hover { &:hover {
border-color: #377fec; border-color: #377fec;
} }
> img { > img {
margin: 0 !important; margin: 0 !important;
line-height: 32px; line-height: 32px;
} }
} }
} }
.default-role { .default-role {
width: 215px; width: 215px;
height: 366px; height: 366px;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
.default-role-item { .default-role-item {
width: 190px; width: 190px;
height: 40px; height: 40px;
...@@ -89,35 +103,41 @@ ...@@ -89,35 +103,41 @@
border-radius: 4px; border-radius: 4px;
margin-top: 10px; margin-top: 10px;
cursor: pointer; cursor: pointer;
&:hover { &:hover {
background: #055fe7; background: #055fe7;
color: #ffffff; color: #ffffff;
} }
&.active { &.active {
background: #055fe7; background: #055fe7;
color: #ffffff; color: #ffffff;
} }
} }
} }
.hr { .hr {
height: 1px; height: 1px;
width: 200px; width: 200px;
display: block; display: block;
background-color: #eeeeee; background-color: #eeeeee;
} }
.diy-roles { .diy-roles {
//border: saddlebrown 1px solid; //border: saddlebrown 1px solid;
width: 215px; width: 215px;
height: 420px; height: 420px;
box-sizing: border-box; box-sizing: border-box;
padding-left: 20px; padding-left: 20px;
//background: #90ff00ff;
//display: flex; //display: flex;
//flex-direction: column; //flex-direction: column;
overflow: scroll; overflow: scroll;
.diy-role-item { .diy-role-item {
float: right; float: right;
box-sizing: border-box; box-sizing: border-box;
padding-right: 40px; //padding-right: 40px;
position: relative; position: relative;
width: 190px; width: 190px;
height: 40px; height: 40px;
...@@ -127,13 +147,16 @@ ...@@ -127,13 +147,16 @@
color: #333333; color: #333333;
line-height: 40px; line-height: 40px;
margin-top: 10px; margin-top: 10px;
margin-left: -22px; //margin-right: -16px;
cursor: pointer; cursor: pointer;
overflow: hidden; overflow: hidden;
transform: translateX(-6px);
&.active { &.active {
border: 1px solid #055fe7; border: 1px solid #055fe7;
color: #055fe7; color: #055fe7;
} }
.diy-edit-title { .diy-edit-title {
width: 146px; width: 146px;
padding-left: 10px; padding-left: 10px;
...@@ -145,6 +168,7 @@ ...@@ -145,6 +168,7 @@
/*文字超出宽度则显示ellipsis省略号*/ /*文字超出宽度则显示ellipsis省略号*/
text-overflow: ellipsis; text-overflow: ellipsis;
} }
.diy-edit-btn { .diy-edit-btn {
width: 35px; width: 35px;
height: 25px; height: 25px;
...@@ -154,6 +178,7 @@ ...@@ -154,6 +178,7 @@
position: absolute; position: absolute;
right: 0; right: 0;
top: 0; top: 0;
i { i {
position: absolute; position: absolute;
top: 5px; top: 5px;
...@@ -163,6 +188,7 @@ ...@@ -163,6 +188,7 @@
color: #055FE7; color: #055FE7;
cursor: pointer; cursor: pointer;
} }
.img { .img {
width: 13px; width: 13px;
height: 14px; height: 14px;
...@@ -173,18 +199,21 @@ ...@@ -173,18 +199,21 @@
} }
} }
} }
.main { .main {
width: 100%; width: 100%;
height: 100%; height: 100%;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: center;
.header { .header {
height: 55px; height: 55px;
width: 100%; width: 100%;
display: flex; display: flex;
align-items: center; align-items: center;
padding-bottom: 7px; padding-bottom: 7px;
.btns { .btns {
width: 224px; width: 224px;
height: 48px; height: 48px;
...@@ -192,6 +221,7 @@ ...@@ -192,6 +221,7 @@
border-radius: 8px; border-radius: 8px;
text-align: center; text-align: center;
margin: 0px auto; margin: 0px auto;
.btn { .btn {
margin-top: 8px; margin-top: 8px;
width: 104px; width: 104px;
...@@ -199,6 +229,7 @@ ...@@ -199,6 +229,7 @@
line-height: 32px; line-height: 32px;
color: #666666; color: #666666;
cursor: pointer; cursor: pointer;
&.active { &.active {
background: #ffffff; background: #ffffff;
color: #055fe7; color: #055fe7;
...@@ -207,6 +238,7 @@ ...@@ -207,6 +238,7 @@
} }
} }
} }
.save { .save {
.btn { .btn {
width: 72px; width: 72px;
...@@ -219,6 +251,7 @@ ...@@ -219,6 +251,7 @@
} }
} }
} }
.role-info { .role-info {
width: 100%; width: 100%;
background: #ffffff; background: #ffffff;
...@@ -226,111 +259,143 @@ ...@@ -226,111 +259,143 @@
border-radius: 10px; border-radius: 10px;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
.menus { .menus {
width: 155px; width: 155px;
height: 100%; height: 100%;
border-right: 1px solid #eeeeee; border-right: 1px solid #eeeeee;
.div3 { .div3 {
padding: 20px;
width: 100%; width: 100%;
height: 150px; height: 150px;
border-bottom: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee;
&:first-of-type { &:first-of-type {
height: 130px; height: 130px;
} }
&:nth-of-type(2) { &:nth-of-type(2) {
height: 165px; height: 160px;
} }
.el-checkbox { .el-checkbox {
margin: 10px 20px 0 20px; margin: 0px 0px 12px 0px;
&:not(:first-of-type) {
margin-top: 20px; &:last-of-type {
margin-bottom: 0px;
} }
} }
} }
.div2 { .div2 {
padding: 20px;
width: 100%; width: 100%;
height: 85px; height: 85px;
border-bottom: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee;
.el-checkbox { .el-checkbox {
margin: 12px 20px 0 20px; margin-bottom: 12px;
} }
} }
.div1 { .div1 {
padding: 20px;
width: 100%; width: 100%;
height: 68px; height: 68px;
border-bottom: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee;
.el-checkbox { .el-checkbox {
margin: 22px 20px 0 20px; //margin: 22px 20px 0 20px;
margin-bottom: 12px;
} }
} }
// 未选中字体颜色 // 未选中字体颜色
/deep/ .el-checkbox { /deep/ .el-checkbox {
font-size: 14px; font-size: 14px;
color: #333333; color: #333333;
font-weight: 400; font-weight: 400;
} }
/deep/ .el-checkbox__input .el-checkbox__inner:hover { /deep/ .el-checkbox__input .el-checkbox__inner:hover {
border-color: #055fe7; border-color: #055fe7;
} }
// 选中样式 // 选中样式
/deep/.el-checkbox__input.is-checked + .el-checkbox__label { /deep/ .el-checkbox__input.is-checked + .el-checkbox__label {
font-size: 14px; font-size: 14px;
font-weight: 400; font-weight: 400;
color: #333333; color: #333333;
} }
/deep/ .el-checkbox__input.is-checked .el-checkbox__inner { /deep/ .el-checkbox__input.is-checked .el-checkbox__inner {
background: #055fe7; background: #055fe7;
border-color: #055fe7; border-color: #055fe7;
} }
} }
.content { .content {
width: 100%; width: 100%;
height: 725px; height: 725px;
.div3 { .div3 {
padding: 20px;
width: 100%; width: 100%;
height: 150px; height: 150px;
&:first-of-type { &:first-of-type {
height: 130px; height: 130px;
} }
&:nth-of-type(2) { &:nth-of-type(2) {
height: 165px; height: 160px;
} }
border-bottom: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee;
padding-left: 30px; //padding-left: 30px;
padding-top: 8px; //padding-top: 8px;
.line { .line {
height: 40px; height: 32px;
width: 220px; width: 220px;
} }
} }
.div2 { .div2 {
padding: 20px;
width: 100%; width: 100%;
height: 85px; height: 85px;
border-bottom: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee;
padding-left: 30px; //padding-left: 30px;
.el-checkbox {
margin: 10px 20px 0 0px; //.el-checkbox {
} // margin: 10px 20px 0 0px;
//}
.line { .line {
height: 40px; height: 32px;
width: 220px; width: 220px;
} }
} }
.div1 { .div1 {
padding: 20px;
width: 100%; width: 100%;
height: 68px; height: 68px;
border-bottom: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee;
padding-left: 30px; //padding-left: 30px;
.line { .line {
height: 40px; height: 32px;
width: 220px; width: 220px;
> .el-checkbox { > .el-checkbox {
margin-left: 0 !important; margin-left: 0 !important;
} }
} }
.el-checkbox {
margin: 22px 20px 0 25px; //.el-checkbox {
} // margin: 22px 20px 0 25px;
//}
} }
// 未选中字体颜色 // 未选中字体颜色
...@@ -342,15 +407,18 @@ ...@@ -342,15 +407,18 @@
font-weight: 400; font-weight: 400;
margin-right: 50px; margin-right: 50px;
} }
/deep/ .el-checkbox__input .el-checkbox__inner:hover { /deep/ .el-checkbox__input .el-checkbox__inner:hover {
border-color: #055fe7; border-color: #055fe7;
} }
// 选中样式 // 选中样式
/deep/.el-checkbox__input.is-checked + .el-checkbox__label { /deep/ .el-checkbox__input.is-checked + .el-checkbox__label {
font-size: 14px; font-size: 14px;
font-weight: 400; font-weight: 400;
color: #333333; color: #333333;
} }
/deep/ .el-checkbox__input.is-checked .el-checkbox__inner { /deep/ .el-checkbox__input.is-checked .el-checkbox__inner {
background: #055fe7; background: #055fe7;
border-color: #055fe7; border-color: #055fe7;
...@@ -358,15 +426,19 @@ ...@@ -358,15 +426,19 @@
} }
} }
} }
.barLine { .barLine {
width: 800px !important; width: 800px !important;
} }
.barInLine { .barInLine {
width: 600px !important; width: 600px !important;
} }
.w400 { .w400 {
width: 400px !important; width: 400px !important;
} }
.w450 { .w450 {
width: 220px !important; width: 220px !important;
} }
......
...@@ -167,11 +167,12 @@ ...@@ -167,11 +167,12 @@
display: flex; display: flex;
justify-content: flex-start; justify-content: flex-start;
align-items: center; align-items: center;
margin-left: 0px;
//border: 1px solid hotpink; width: auto; //border: 1px solid hotpink; width: auto;
.info-item { .info-item {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 0 20px 0 20px; padding: 0 20px 0 0px;
border-right: 1px solid #e6e6e8; border-right: 1px solid #e6e6e8;
.info-title { .info-title {
width: auto; width: auto;
...@@ -355,6 +356,7 @@ ...@@ -355,6 +356,7 @@
width: 155px; width: 155px;
border-right: 1px solid #eeeeee; border-right: 1px solid #eeeeee;
.div3 { .div3 {
padding: 20px;
width: 100%; width: 100%;
height: 165px; height: 165px;
&:first-of-type { &:first-of-type {
...@@ -365,26 +367,34 @@ ...@@ -365,26 +367,34 @@
} }
border-bottom: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee;
.el-checkbox { .el-checkbox {
margin: 10px 20px 0 20px; //margin: 10px 20px 0 20px;
&:not(:first-of-type) { //&:not(:first-of-type) {
margin-top: 20px; // margin-top: 20px;
//}
margin: 0px 0px 12px 0px;
&:last-of-type {
margin-bottom: 0px;
} }
} }
} }
.div2 { .div2 {
padding: 20px;
width: 100%; width: 100%;
height: 85px; height: 85px;
border-bottom: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee;
.el-checkbox { .el-checkbox {
margin: 12px 20px 0 20px; //margin: 12px 20px 0 20px;
margin-bottom: 12px;
} }
} }
.div1 { .div1 {
padding: 20px;
width: 100%; width: 100%;
height: 55px; height: 55px;
border-bottom: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee;
.el-checkbox { .el-checkbox {
margin: 15px 20px 0 20px; //margin: 15px 20px 0 20px;
margin-bottom: 12px;
} }
} }
// 未选中字体颜色 // 未选中字体颜色
...@@ -410,6 +420,7 @@ ...@@ -410,6 +420,7 @@
.content { .content {
width: 100%; width: 100%;
.div3 { .div3 {
padding: 20px;
&:last-of-type { &:last-of-type {
height: 150px; height: 150px;
} }
...@@ -420,9 +431,9 @@ ...@@ -420,9 +431,9 @@
width: 100%; width: 100%;
height: 165px; height: 165px;
border-bottom: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee;
padding-left: 30px; //padding-left: 30px;
padding-top: 8px; //padding-top: 8px;
.line { /deep/.line{
width: 220px; width: 220px;
height: 30px; height: 30px;
} }
...@@ -430,10 +441,11 @@ ...@@ -430,10 +441,11 @@
.div2 { .div2 {
width: 100%; width: 100%;
height: 85px; height: 85px;
padding-left: 30px; padding: 20px;
//padding-left: 30px;
border-bottom: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee;
.el-checkbox { .el-checkbox {
margin: 10px 20px 0 25px; //margin: 10px 20px 0 25px;
} }
.line /deep/ { .line /deep/ {
width: 220px; width: 220px;
...@@ -444,12 +456,13 @@ ...@@ -444,12 +456,13 @@
} }
} }
.div1 { .div1 {
padding: 20px;
width: 100%; width: 100%;
height: 55px; height: 55px;
padding-left: 30px; //padding-left: 30px;
border-bottom: 1px solid #eeeeee; border-bottom: 1px solid #eeeeee;
.el-checkbox { .el-checkbox {
margin: 15px 20px 0 25px; //margin: 15px 20px 0 25px;
} }
.line /deep/ { .line /deep/ {
width: 220px; width: 220px;
......
...@@ -303,3 +303,12 @@ export default { ...@@ -303,3 +303,12 @@ export default {
} }
@import "@/assets/css/globalBase.scss"; @import "@/assets/css/globalBase.scss";
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -20,10 +20,10 @@ ...@@ -20,10 +20,10 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
<el-form-item label="源条码号:" prop="ytmh" class="ytmh"> <el-form-item label="源条码号:" prop="ytmh" class="ytmh">
<el-input placeholder="请输入源条码号" v-model.trim="ruleForm.ytmh" maxlength="23" clearable @clear="submitForm()" @keydown.enter.native="submitForm()"></el-input> <el-input placeholder="请输入源条码号" v-model.trim="ruleForm.ytmh" maxlength="23" clearable show-word-limit @clear="submitForm()" @keydown.enter.native="submitForm()"></el-input>
</el-form-item> </el-form-item>
<el-form-item label="目标条码号:" prop="mbtmh" class="mbtmh"> <el-form-item label="目标条码号:" prop="mbtmh" class="mbtmh">
<el-input placeholder="请输入目标条码号" v-model.trim="ruleForm.mbtmh" maxlength="23" clearable @clear="submitForm()" @keydown.enter.native="submitForm()"></el-input> <el-input placeholder="请输入目标条码号" v-model.trim="ruleForm.mbtmh" maxlength="23" clearable show-word-limit @clear="submitForm()" @keydown.enter.native="submitForm()"></el-input>
</el-form-item> </el-form-item>
</div> </div>
<div class="line1 line2"> <div class="line1 line2">
...@@ -91,23 +91,23 @@ ...@@ -91,23 +91,23 @@
<el-table :height="height" ref="multipleTable" :data="tableDate" :row-key="getRowKeys" tooltip-effect="dark" style="width: 100%;" :class="{delSelection: !selectBoo}" class="bzxxfh-table" @selection-change="handleSelectionChange"> <el-table :height="height" ref="multipleTable" :data="tableDate" :row-key="getRowKeys" tooltip-effect="dark" style="width: 100%;" :class="{delSelection: !selectBoo}" class="bzxxfh-table" @selection-change="handleSelectionChange">
<el-table-column type="selection" :reserve-selection="true" :width="width33"> <el-table-column type="selection" :reserve-selection="true" :width="width33">
</el-table-column> </el-table-column>
<el-table-column prop="ytmh" label="源条码号" :width="width1"> <el-table-column prop="ytmh" label="源条码号" :width="width1" :formatter="$fFormatUtil.valueFormat">
</el-table-column> </el-table-column>
<el-table-column prop="mbtmh" label="目标条码号" :width="width1"> <el-table-column prop="mbtmh" label="目标条码号" :width="width1" :formatter="$fFormatUtil.valueFormat">
</el-table-column> </el-table-column>
<el-table-column prop="yzw" label="源指位/序号" :width="width4"> <el-table-column prop="yzw" label="源指位/序号" :width="width4" :formatter="$fFormatUtil.valueFormat">
</el-table-column> </el-table-column>
<el-table-column prop="mbzw" label="目标指位/序号" :width="width4"> <el-table-column prop="mbzw" label="目标指位/序号" :width="width4" :formatter="$fFormatUtil.valueFormat">
</el-table-column> </el-table-column>
<el-table-column prop="bzdwGajgjgdmStr" label="比中单位" :width="width2"> <el-table-column prop="bzdwGajgjgdmStr" label="比中单位" :width="width2" :formatter="$fFormatUtil.valueFormat">
</el-table-column> </el-table-column>
<el-table-column prop="bzrXm" label="比中人" :width="width3"> <el-table-column prop="bzrXm" label="比中人" :width="width3" :formatter="$fFormatUtil.valueFormat">
</el-table-column> </el-table-column>
<el-table-column prop="bzsj" label="比中时间" :width="width4" :formatter="dateTimeFormat"> <el-table-column prop="bzsj" label="比中时间" :width="width4" :formatter="$fFormatUtil.dateTimeFormat">
</el-table-column> </el-table-column>
<el-table-column prop="fhrXm" label="复核人" :width="width3"> <el-table-column prop="fhrXm" label="复核人" :width="width3" :formatter="$fFormatUtil.valueFormat">
</el-table-column> </el-table-column>
<el-table-column prop="fhsj" label="复核时间" :width="width4" :formatter="dateTimeFormat"> <el-table-column prop="fhsj" label="复核时间" :width="width4" :formatter="$fFormatUtil.dateTimeFormat">
</el-table-column> </el-table-column>
<el-table-column prop="reviewStatus" label="复核状态" :width="width5"> <el-table-column prop="reviewStatus" label="复核状态" :width="width5">
<template slot-scope="scope"> <template slot-scope="scope">
...@@ -198,7 +198,6 @@ export default { ...@@ -198,7 +198,6 @@ export default {
personLogicIds: [], personLogicIds: [],
caseLogicIds: [] caseLogicIds: []
}, },
rules: {},
selectBoo: false,// 是否批量操作 selectBoo: false,// 是否批量操作
width33: 50, width33: 50,
width4: 120, width4: 120,
...@@ -234,7 +233,25 @@ export default { ...@@ -234,7 +233,25 @@ export default {
// 人员逻辑库 // 人员逻辑库
personLogicIds: [], personLogicIds: [],
// 案件逻辑库 // 案件逻辑库
caseLogicIds: [] caseLogicIds: [],
rules: {
ytmh: [
{required: false, message: '请输入条码号', trigger: 'change'},
{
pattern: fRegExp.SYS._TMH,
message: '格式不正确',
trigger: 'change'
}
],
mbtmh: [
{required: false, message: '请输入条码号', trigger: 'change'},
{
pattern: fRegExp.SYS._TMH,
message: '格式不正确',
trigger: 'change'
}
],
}
} }
}, },
components: { components: {
...@@ -542,11 +559,6 @@ export default { ...@@ -542,11 +559,6 @@ export default {
this.currPage = page; this.currPage = page;
this.getData(page) this.getData(page)
}, },
// 时间格式化
dateTimeFormat (row, colnum) {
let prop = colnum.property;
return row[prop] ? this.$moment(row[prop]).format("YYYY-MM-DD") : "---";
},
/** /**
* @description: 单选事件 * @description: 单选事件
* @param {*} val * @param {*} val
...@@ -643,3 +655,12 @@ export default { ...@@ -643,3 +655,12 @@ export default {
padding-left: 20px; padding-left: 20px;
} }
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -961,3 +961,12 @@ const initRuleFrom = { ...@@ -961,3 +961,12 @@ const initRuleFrom = {
} }
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -14,13 +14,12 @@ $tableHeight: var(--tableHeight, 33rem); ...@@ -14,13 +14,12 @@ $tableHeight: var(--tableHeight, 33rem);
} }
} }
.bzxxfh-top { .bzxxfh-top {
margin: 24px 24px 16px 24px; margin: 24px 20px 16px 24px;
//border-bottom: 1px solid #eeeeee; //border-bottom: 1px solid #eeeeee;
padding: 16px 20px 10px 20px; padding: 16px 0px 8px 20px;
background: #F6F8FA; background: #F6F8FA;
box-shadow: inset 0px 0px 3px 0px rgba(5, 95, 231, 0.2); box-shadow: inset 0px 0px 3px 0px rgba(5, 95, 231, 0.2);
border-radius: 10px; border-radius: 10px;
/deep/.el-form-item__label { /deep/.el-form-item__label {
width: 70px !important; width: 70px !important;
padding: 0; padding: 0;
...@@ -72,11 +71,11 @@ $tableHeight: var(--tableHeight, 33rem); ...@@ -72,11 +71,11 @@ $tableHeight: var(--tableHeight, 33rem);
} }
.ytmh { .ytmh {
/deep/ .el-input { /deep/ .el-input {
width: 256px; width: 290px;
height: 32px; height: 32px;
.el-input__inner { .el-input__inner {
height: 32px; height: 32px;
width: 256px; width: 290px;
} }
} }
} }
...@@ -89,11 +88,11 @@ $tableHeight: var(--tableHeight, 33rem); ...@@ -89,11 +88,11 @@ $tableHeight: var(--tableHeight, 33rem);
margin-left: 90px !important; margin-left: 90px !important;
} }
/deep/ .el-input { /deep/ .el-input {
width: 256px; width: 290px;
height: 32px; height: 32px;
.el-input__inner { .el-input__inner {
height: 32px; height: 32px;
width: 256px; width: 290px;
} }
} }
} }
...@@ -114,6 +113,13 @@ $tableHeight: var(--tableHeight, 33rem); ...@@ -114,6 +113,13 @@ $tableHeight: var(--tableHeight, 33rem);
/deep/.el-form-item__label { /deep/.el-form-item__label {
text-align: left; text-align: left;
} }
.rdsj{
.el-input__inner {
height: 32px;
width: 290px;
margin-top: 2px;
}
}
} }
.line3 { .line3 {
.fhyh { .fhyh {
...@@ -155,6 +161,7 @@ $tableHeight: var(--tableHeight, 33rem); ...@@ -155,6 +161,7 @@ $tableHeight: var(--tableHeight, 33rem);
} }
} }
.clear-btn { .clear-btn {
transform: translateX(20px);
cursor: pointer; cursor: pointer;
font-size: 14px; font-size: 14px;
font-family: HarmonyOS_Sans_SC; font-family: HarmonyOS_Sans_SC;
...@@ -162,6 +169,7 @@ $tableHeight: var(--tableHeight, 33rem); ...@@ -162,6 +169,7 @@ $tableHeight: var(--tableHeight, 33rem);
margin-right: 8px; margin-right: 8px;
} }
.select-btn { .select-btn {
transform: translateX(20px);
cursor: pointer; cursor: pointer;
width: 72px; width: 72px;
height: 32px; height: 32px;
...@@ -499,6 +507,12 @@ $tableHeight: var(--tableHeight, 33rem); ...@@ -499,6 +507,12 @@ $tableHeight: var(--tableHeight, 33rem);
} }
} }
} }
/deep/.el-form-item__error {
padding-top: 0rem;
margin-top: 0rem;
}
.jcbzgx-dialog { .jcbzgx-dialog {
width: 300px; width: 300px;
height: 118px; height: 118px;
......
...@@ -2407,3 +2407,12 @@ b { ...@@ -2407,3 +2407,12 @@ b {
padding-left: 20px; padding-left: 20px;
} }
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -1961,3 +1961,12 @@ export default { ...@@ -1961,3 +1961,12 @@ export default {
// @import "@/assets/css/globalBase.scss"; // @import "@/assets/css/globalBase.scss";
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -2440,4 +2440,13 @@ export default { ...@@ -2440,4 +2440,13 @@ export default {
} }
// @import "@/assets/css/globalBase.scss"; // @import "@/assets/css/globalBase.scss";
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -186,7 +186,7 @@ export default { ...@@ -186,7 +186,7 @@ export default {
width4: 136, //启用状态 width4: 136, //启用状态
width5: 260, //逻辑库说明 width5: 260, //逻辑库说明
width6: 120, // 操作 width6: 120, // 操作
height: '42rem', height: '43rem',
tableDate: [], tableDate: [],
...@@ -569,3 +569,12 @@ export default { ...@@ -569,3 +569,12 @@ export default {
@import "scss/xtfkgl_main"; @import "scss/xtfkgl_main";
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -191,7 +191,7 @@ export default { ...@@ -191,7 +191,7 @@ export default {
width4: 136, //启用状态 width4: 136, //启用状态
width5: 260, //逻辑库说明 width5: 260, //逻辑库说明
width6: 120, // 操作 width6: 120, // 操作
height: '42rem', height: '43rem',
tableDate: [], tableDate: [],
...@@ -574,3 +574,12 @@ export default { ...@@ -574,3 +574,12 @@ export default {
@import "scss/xtfkgl_main"; @import "scss/xtfkgl_main";
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -160,6 +160,7 @@ ...@@ -160,6 +160,7 @@
prop="barcode" prop="barcode"
label="人员编号" label="人员编号"
:width="width1" :width="width1"
:formatter="$fFormatUtil.valueFormat"
show-overflow-tooltip show-overflow-tooltip
> >
</el-table-column> </el-table-column>
...@@ -167,12 +168,14 @@ ...@@ -167,12 +168,14 @@
prop="name" prop="name"
label="姓名" label="姓名"
:width="width4" :width="width4"
:formatter="$fFormatUtil.valueFormat"
show-overflow-tooltip show-overflow-tooltip
> >
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="codeDwName" prop="codeDwName"
label="捺印单位" label="捺印单位"
:formatter="$fFormatUtil.valueFormat"
:width="width1" :width="width1"
show-overflow-tooltip show-overflow-tooltip
> >
...@@ -180,12 +183,14 @@ ...@@ -180,12 +183,14 @@
<el-table-column <el-table-column
prop="collectDate" prop="collectDate"
label="捺印日期" label="捺印日期"
:width="width1" :formatter="$fFormatUtil.dateTimeFormat"
:width="width4"
> >
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="createTime" prop="createTime"
label="分配时间" label="分配时间"
:formatter="$fFormatUtil.dateTimeFormat1"
:width="width1" :width="width1"
> >
</el-table-column> </el-table-column>
...@@ -222,6 +227,7 @@ ...@@ -222,6 +227,7 @@
<el-table-column <el-table-column
prop="collectNumber" prop="collectNumber"
label="补采次数" label="补采次数"
:formatter="$fFormatUtil.valueFormat0"
:width="width4" :width="width4"
> >
</el-table-column> </el-table-column>
...@@ -341,7 +347,7 @@ export default { ...@@ -341,7 +347,7 @@ export default {
selectBoo: false, // 是否批量操作 selectBoo: false, // 是否批量操作
multipleSelection: [], // 表单选择项目 multipleSelection: [], // 表单选择项目
width33: 50, width33: 50,
width4: 120, width4: 140,
width1: 220, width1: 220,
width2: 160, width2: 160,
width3: 110, width3: 110,
...@@ -963,3 +969,12 @@ $tableHeight: var(--tableHeight, 33rem); ...@@ -963,3 +969,12 @@ $tableHeight: var(--tableHeight, 33rem);
} }
@import "@/assets/css/globalBase.scss"; @import "@/assets/css/globalBase.scss";
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -458,7 +458,7 @@ export default { ...@@ -458,7 +458,7 @@ export default {
}; };
</script> </script>
<style lang="scss"scoped> <style scoped lang="scss">
.p1 { .p1 {
padding-top: 109px; padding-top: 109px;
} }
...@@ -499,21 +499,21 @@ export default { ...@@ -499,21 +499,21 @@ export default {
border: none; border: none;
} }
/deep/.el-radio-button__orig-radio:checked + .el-radio-button__inner { /deep/.el-radio-button__orig-radio:checked + .el-radio-button__inner {
width: 129px; width: 130px;
height: 32px; height: 32px;
background: #ddebff; background: #ddebff;
border-radius: 2px; border-radius: 2px;
font-size: 14px; font-size: 14px;
font-family: HarmonyOS_Sans_SC; font-family: HarmonyOS_Sans_SC;
background-color: #055fe7; background-color: #DDEBFF;
color: #fff; color: #055FE7;
border: none; border: none;
&:hover { &:hover {
background: #377fec; /*background: #377fec;*/
}
&:active {
background: #044cb9;
} }
/*&:active {*/
/* background: #044cb9;*/
/*}*/
} }
} }
.headRight { .headRight {
......
...@@ -539,3 +539,12 @@ ...@@ -539,3 +539,12 @@
color: #333333; color: #333333;
} }
</style> </style>
<style scoped lang="scss">
/deep/ .el-table .el-table__body tr.current-row > td {
background-color: transparent !important;
}
/deep/ .el-table .el-table__body tr:hover > td {
background-color: transparent !important;
}
</style>
...@@ -164,6 +164,7 @@ ...@@ -164,6 +164,7 @@
/deep/.flexBox { /deep/.flexBox {
display: flex; display: flex;
margin: 0px 18px;
.el-checkbox { .el-checkbox {
margin-right: 24px; margin-right: 24px;
......
...@@ -149,7 +149,7 @@ ...@@ -149,7 +149,7 @@
<div>人员逻辑分库</div> <div>人员逻辑分库</div>
</el-row> </el-row>
<el-row class="flexBox"> <el-row class="flexBox">
<div style="margin: 0.9375rem 0"></div> <div style="margin: 0.9375rem 0;"></div>
<el-checkbox-group v-model="checkedTargets" style="padding-right: 6.875rem"> <el-checkbox-group v-model="checkedTargets" style="padding-right: 6.875rem">
<el-checkbox v-for="(value, key) in targets" :key="key" :label="value.code">{{ value.name }}</el-checkbox> <el-checkbox v-for="(value, key) in targets" :key="key" :label="value.code">{{ value.name }}</el-checkbox>
</el-checkbox-group> </el-checkbox-group>
......
...@@ -113,13 +113,13 @@ module.exports = { ...@@ -113,13 +113,13 @@ module.exports = {
// target: "http://192.168.128.108:8099/", // 张 认定 // target: "http://192.168.128.108:8099/", // 张 认定
// target: "http://192.168.128.101:8099", // 湖南-马 // target: "http://192.168.128.101:8099", // 湖南-马
// target: "http://192.168.128.116:8099", // 湖南-王 // target: "http://192.168.128.116:8099", // 湖南-王
target: "http://192.168.128.111:8099", // 湖南-张呈光 // target: "http://192.168.128.111:8099", // 湖南-张呈光
// target: "http://172.18.116.73:8099/", //统一的请求头部每次修改都要重启才会生效 http://39.99.224.27:8006/ ma // target: "http://172.18.116.73:8099/", //统一的请求头部每次修改都要重启才会生效 http://39.99.224.27:8006/ ma
// target: "http://127.0.0.1:8099", // target: "http://127.0.0.1:8099",
// target: "http://47.92.225.109:5602", // target: "http://47.92.225.109:5602",
// target: "http://www.meetfood.cn:2390", // 湖南-线上 // target: "http://www.meetfood.cn:2390", // 湖南-线上
// target: "http://zwpt.xzclub.top:9333/", target: "http://zwpt.xzclub.top:9333/",
// target: "http://192.168.128.102:8099", // 江 // target: "http://192.168.128.103:8099", // 江
ws: true, ws: true,
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {
...@@ -129,9 +129,9 @@ module.exports = { ...@@ -129,9 +129,9 @@ module.exports = {
"/security": { "/security": {
// target: "http://192.168.128.106:8765", // 湖南-王 // target: "http://192.168.128.106:8765", // 湖南-王
target: "http://192.168.128.111:8765/", // 张 认定 // target: "http://192.168.128.111:8765/", // 张 认定
// target: "http://www.meetfood.cn:2390", // 湖南-王 // target: "http://www.meetfood.cn:2390", // 湖南-王
// target: "http://zwpt.xzclub.top:9333/", target: "http://zwpt.xzclub.top:9333/",
// target: "http://192.168.128.109:8765", // target: "http://192.168.128.109:8765",
ws: true, ws: true,
changeOrigin: true, changeOrigin: true,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment