Commit cea35057 by 张超军

保存图片时保存分数

parent 935a4325
/*
* @Author: your name
* @Date: 2021-12-24 17:21:54
* @LastEditTime: 2022-01-18 20:30:08
* @LastEditTime: 2022-02-07 16:18:26
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \指纹系统\founder_vue\src\netmgr\NetUtil.js
......@@ -12,6 +12,7 @@ import ajxxk from '../netmgr/xxk/ajxxk'
import xtfkgl from '../netmgr/xtfkgl/xtfkgl'
import cxyrd from '../netmgr/cxyrd/cxyrd'
import workstream from '../netmgr/workstream/workstream'
import fingerprint from '../netmgr/fingerprint/fingerprint'
export default {
bzxxsh,
......@@ -19,5 +20,6 @@ export default {
ajxxk,
xtfkgl,
cxyrd,
workstream
workstream,
fingerprint
}
/*
* @Author: your name
* @Date: 2022-02-07 16:05:52
* @LastEditTime: 2022-02-07 16:17:12
* @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \指纹系统\founder_vue\src\netmgr\fingerprint\fingerprint.js
*/
import addrType from '../../netmgr/NetAddressType'
const _path = {
saveScoreUrl: addrType.api + '/api/',
}
export default {
saveScore(_parameter) {
return fHttp.postJson(_path.saveScoreUrl + 'score/save', _parameter)
},
}
......@@ -35,7 +35,6 @@ let config = {
};
const _axios = axios.create(config);
_axios.interceptors.request.use(
function (config) {
//判断是否登录
......@@ -63,6 +62,7 @@ _axios.interceptors.request.use(
}
);
// Add a response interceptor
_axios.interceptors.response.use(
function (response) {
......
......@@ -129,7 +129,7 @@
</el-aside>
</transition>
<el-container class="container-dom">
<el-header class="header">
<el-header class="header" height="4rem">
<div
class="collapse"
@click="switchCollapse"
......
......@@ -819,6 +819,9 @@ export default {
getQueryType (data, type) {
let { name, value } = data;
let list = this.reqParam.contrastCustomSearchReq[type];
console.log(name);
console.log(value);
console.log(list);
if (list.includes(value)) {
list = list.filter((item) => item !== value);
this.dynamicTags = this.dynamicTags.filter(
......
......@@ -1789,10 +1789,10 @@ label {
// background: #fff;
.btns {
padding-top: 10px;
width: 100%;
height: 32px;
padding: 12px 40px;
background-color: #FFFFFF;
background-color: #f6f8fa;
display: flex;
align-items: center;
justify-content: space-around;
......@@ -1837,7 +1837,7 @@ label {
margin-top: 0px;
overflow-y: auto;
width: 100%;
height: 500px;
height: 495px;
padding-left: 18px;
.outside {
......@@ -2302,7 +2302,7 @@ label {
font-size: 12px;
font-family: HarmonyOS_Sans_SC;
color: #999999;
margin-top: 18px;
margin-top: 0px;
height: 40px;
display: flex;
justify-content: center;
......
/*
* @Author: your name
* @Date: 2021-09-07 09:57:48
* @LastEditTime: 2022-01-20 10:28:50
* @LastEditTime: 2022-02-07 10:40:32
* @LastEditors: Please set LastEditors
* @Description: In User Settings Edit
* @FilePath: \指纹系统\founder_vue\vue.config.js
......@@ -110,7 +110,7 @@ module.exports = {
},
"/api": {
// target: "http://192.168.0.137:8080/", //统一的请求头部每次修改都要重启才会生效 http://39.99.224.27:8006/
// target: "http://192.168.128.166:8099/", // 张 认定
// target: "http://192.168.128.103:8099/", // 张 认定
// target: "http://192.168.128.108:8099", // 湖南-马
// target: "http://192.168.128.116:8099", // 湖南-王
// target: "http://192.168.128.122:8099", // 湖南-张呈光
......@@ -119,7 +119,7 @@ module.exports = {
// target: "http://47.92.225.109:5602",
// target: "http://www.meetfood.cn:2390", // 湖南-线上
// target: "http://zwpt.xzclub.top:9333/",
target: "http://192.168.128.106:8099", // 江
target: "http://192.168.128.101:8099", // 江
ws: true,
changeOrigin: true,
pathRewrite: {
......
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