|
|
@@ -235,12 +235,14 @@ const changeSmileRadio = (title: any, value: any) => {
|
|
|
}
|
|
|
// 提交details
|
|
|
const submitDetails = (val: any) => {
|
|
|
+ const username = localStorage.getItem('account') ? localStorage.getItem('account') : ''
|
|
|
if (checkboxGroup1.value.length) {
|
|
|
$api
|
|
|
.scoringgrade({
|
|
|
suggestion: checkboxGroup1.value,
|
|
|
proposal: val,
|
|
|
- expression: checkexpression.value
|
|
|
+ expression: checkexpression.value,
|
|
|
+ username: username
|
|
|
})
|
|
|
.then((res: any) => {
|
|
|
if (res.code == 200) {
|