|
@@ -2000,6 +2000,7 @@ export default {
|
|
|
const feedbackReq = new Object();
|
|
|
feedbackReq.feedback = this.target.feedback;
|
|
|
feedbackReq.id = this.target.id;
|
|
|
+ feedbackReq.personalId = this.target.personalId;
|
|
|
this.$api.personalTarget.feedback(feedbackReq);
|
|
|
}
|
|
|
this.decideProductionTypeDialog = false;
|
|
@@ -2346,6 +2347,7 @@ export default {
|
|
|
if (flag) {
|
|
|
const feedbackDTO = new Object();
|
|
|
feedbackDTO.id = this.target.id;
|
|
|
+ feedbackDTO.personalId = this.target.personalId;
|
|
|
if (this.feedback.length == 0) {
|
|
|
return;
|
|
|
}
|
|
@@ -2578,29 +2580,28 @@ export default {
|
|
|
}
|
|
|
|
|
|
.qr-code-div {
|
|
|
- border-radius: 10px;
|
|
|
background-color: RGB(245, 245, 245);
|
|
|
- width: 180px;
|
|
|
- height: 180px;
|
|
|
+ width: 150px;
|
|
|
+ height: 150px;
|
|
|
position: absolute;
|
|
|
- top: -10;
|
|
|
- left: 0;
|
|
|
display: flex;
|
|
|
justify-content: center;
|
|
|
align-items: center;
|
|
|
}
|
|
|
|
|
|
.qr-code {
|
|
|
- width: 180px;
|
|
|
- height: 180px;
|
|
|
+ width: 150px;
|
|
|
+ height: 150px;
|
|
|
z-index: 999;
|
|
|
+ border: 1px #919398 solid;
|
|
|
+ border-radius: 5px;
|
|
|
}
|
|
|
|
|
|
.qr-code-div:hover {
|
|
|
cursor: pointer;
|
|
|
// background-color:RGB(220,220,220);
|
|
|
- width: 180px;
|
|
|
- height: 180px;
|
|
|
+ // width: 180px;
|
|
|
+ // height: 180px;
|
|
|
|
|
|
}
|
|
|
a:hover{
|