Commit 0a142673 by 张超军

特征点方向

parent c31d14e1
No preview for this file type
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2021-11-08 20:00:34 * @Date: 2021-11-08 20:00:34
* @LastEditTime: 2021-11-29 10:38:45 * @LastEditTime: 2021-11-29 18:29:19
* @LastEditors: your name * @LastEditors: Please set LastEditors
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \指纹系统\founder_vue\public\index.html * @FilePath: \指纹系统\founder_vue\public\index.html
--> -->
...@@ -43,11 +43,11 @@ ...@@ -43,11 +43,11 @@
} }
.el-dialog__wrapper { .el-dialog__wrapper {
z-index: 99999 !important; /* z-index: 99999 !important; */
} }
.el-cascader__dropdown { .el-cascader__dropdown {
z-index: 99999999 !important; /* z-index: 99999999 !important; */
} }
</style> </style>
......
/* /*
* @Author: your name * @Author: your name
* @Date: 2021-09-07 09:57:48 * @Date: 2021-09-07 09:57:48
* @LastEditTime: 2021-11-29 18:23:41 * @LastEditTime: 2021-11-30 09:16:35
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: \指纹系统\founder_vue\src\plugins\axios.js * @FilePath: \指纹系统\founder_vue\src\plugins\axios.js
...@@ -85,7 +85,7 @@ _axios.interceptors.response.use( ...@@ -85,7 +85,7 @@ _axios.interceptors.response.use(
cancelButtonText: '取消', cancelButtonText: '取消',
type: 'warning' type: 'warning'
}).then(() => { }).then(() => {
router.replace("/login1"); router.replace("/Login");
}).catch(() => { }).catch(() => {
}); });
}, 200); }, 200);
......
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
size="50%" size="50%"
class="rydaxx-drawer ajdaxx-drawer" class="rydaxx-drawer ajdaxx-drawer"
:modal="false" :modal="false"
:wrapperClosable="false"
:append-to-body="true" :append-to-body="true"
:modal-append-to-body="false" :modal-append-to-body="false"
@close="closeDrawer"
:visible.sync="drawer" :visible.sync="drawer"
:with-header="false"> :with-header="false">
<div class="header"> <div class="header">
......
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2021-10-22 11:36:10 * @Date: 2021-10-22 11:36:10
* @LastEditTime: 2021-11-29 17:05:44 * @LastEditTime: 2021-11-29 22:33:17
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: \指纹系统\founder_vue\src\views\Editor\modules\imageEd.vue * @FilePath: \指纹系统\founder_vue\src\views\Editor\modules\imageEd.vue
...@@ -1291,6 +1291,7 @@ export default { ...@@ -1291,6 +1291,7 @@ export default {
if (sessionStorage.getItem(self.seq) != "undefined") { if (sessionStorage.getItem(self.seq) != "undefined") {
//console.log(sessionStorage.getItem(self.seq)); //console.log(sessionStorage.getItem(self.seq));
let preTzd = JSON.parse(sessionStorage.getItem(self.seq)); let preTzd = JSON.parse(sessionStorage.getItem(self.seq));
console.log(preTzd);
if (preTzd && preTzd.length > 0) { if (preTzd && preTzd.length > 0) {
preTzd.forEach((item, index) => { preTzd.forEach((item, index) => {
self.tzdArr.push({ self.tzdArr.push({
...@@ -1678,6 +1679,8 @@ export default { ...@@ -1678,6 +1679,8 @@ export default {
if (deg === NaN) { if (deg === NaN) {
deg = 0; deg = 0;
} }
// 给 obj 对象的 deg 赋值
obj.deg = deg
//console.log(self.startPlace, "原点 "); //console.log(self.startPlace, "原点 ");
if (deg) { if (deg) {
...@@ -1707,7 +1710,7 @@ export default { ...@@ -1707,7 +1710,7 @@ export default {
return item.id == self.tzdId; return item.id == self.tzdId;
}); });
// self.$set(self.tzdArr[self.tzdId], 'angle', obj.deg) // self.$set(self.tzdArr[self.tzdId], 'angle', obj.deg)
self.tzdArr[objindex].angle = obj.deg; self.tzdArr[objindex].angle = obj.deg - self.startPlace;
} else { } else {
//console.log(self.tzdArr); //console.log(self.tzdArr);
//console.log(self.tzdId); //console.log(self.tzdId);
...@@ -1734,7 +1737,7 @@ export default { ...@@ -1734,7 +1737,7 @@ export default {
}); });
} }
//console.log(self.pretzdall); console.log(self.pretzdall);
// 全部数据保存 // 全部数据保存
self.$store.commit("zwbj/setTzdall", self.pretzdall); self.$store.commit("zwbj/setTzdall", self.pretzdall);
//console.log(self.preTzdArr); //console.log(self.preTzdArr);
......
<!-- <!--
* @Author: your name * @Author: your name
* @Date: 2021-10-22 11:36:10 * @Date: 2021-10-22 11:36:10
* @LastEditTime: 2021-11-29 17:28:09 * @LastEditTime: 2021-11-29 22:40:47
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: \指纹系统\founder_vue\src\views\Editor\modules\imageEd.vue * @FilePath: \指纹系统\founder_vue\src\views\Editor\modules\imageEd.vue
...@@ -2708,6 +2708,9 @@ export default { ...@@ -2708,6 +2708,9 @@ export default {
deg = 0; deg = 0;
} }
// 给 obj 对象的 deg 赋值
// TODO
obj.deg = deg
// console.log(self.startPlace, "原点 "); // console.log(self.startPlace, "原点 ");
if (deg) { if (deg) {
$("#tzd" + self.tzdId).css("transform", `rotate(${deg - self.startPlace}deg)`); $("#tzd" + self.tzdId).css("transform", `rotate(${deg - self.startPlace}deg)`);
...@@ -2818,7 +2821,7 @@ export default { ...@@ -2818,7 +2821,7 @@ export default {
return item.id == self.tzdId; return item.id == self.tzdId;
}); });
// self.$set(self.tzdArr[self.tzdId], 'angle', obj.deg) // self.$set(self.tzdArr[self.tzdId], 'angle', obj.deg)
self.tzdArr[objindex].angle = obj.deg; self.tzdArr[objindex].angle = obj.deg - self.startPlace;
} else { } else {
console.log(self.tzdArr); console.log(self.tzdArr);
console.log(self.tzdId); console.log(self.tzdId);
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
size="50%" size="50%"
class="rydaxx-drawer" class="rydaxx-drawer"
:modal="false" :modal="false"
:wrapperClosable="false" @close="closeDrawer"
:append-to-body="true" :append-to-body="true"
:modal-append-to-body="false" :modal-append-to-body="false"
:visible.sync="drawer" :visible.sync="drawer"
......
...@@ -368,4 +368,7 @@ div { ...@@ -368,4 +368,7 @@ div {
margin: 0 auto; margin: 0 auto;
text-align: center; text-align: center;
} }
.video-js {
position: static !important;
}
</style> </style>
/* /*
* @Author: your name * @Author: your name
* @Date: 2021-09-07 09:57:48 * @Date: 2021-09-07 09:57:48
* @LastEditTime: 2021-11-29 17:56:59 * @LastEditTime: 2021-11-29 22:09:18
* @LastEditors: Please set LastEditors * @LastEditors: Please set LastEditors
* @Description: In User Settings Edit * @Description: In User Settings Edit
* @FilePath: \指纹系统\founder_vue\vue.config.js * @FilePath: \指纹系统\founder_vue\vue.config.js
...@@ -91,14 +91,14 @@ module.exports = { ...@@ -91,14 +91,14 @@ module.exports = {
"/api": { "/api": {
// target: "http://192.168.0.137:8080/", //统一的请求头部每次修改都要重启才会生效 http://39.99.224.27:8006/ // target: "http://192.168.0.137:8080/", //统一的请求头部每次修改都要重启才会生效 http://39.99.224.27:8006/
// target: "http://172.18.108.2:8099/", // 张 认定 // target: "http://172.18.108.2:8099/", // 张 认定
target: "http://192.168.128.166:8099", // 湖南-张 // target: "http://192.168.128.166:8099", // 湖南-张
// target: "http://192.168.128.114:8099", // 湖南-马 // target: "http://192.168.128.114:8099", // 湖南-马
// target: "http://192.168.128.116:8099", // 湖南-王 // target: "http://192.168.128.116:8099", // 湖南-王
// target: "http://192.168.128.118:8764", // 湖南-张呈光 // target: "http://192.168.128.118:8764", // 湖南-张呈光
// 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/", // 湖南-线上
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