hookehuyr

fix

......@@ -167,10 +167,10 @@ const video = ref(null);
const onSubmit = async (values) => {
// 合并自定义字段到提交表单字段
postData.value = _.assign(postData.value, values);
// 格式化value值为json格式
for (const key in postData.value) {
postData.value[key] = JSON.stringify(postData.value[key]);
}
// 格式化value值为json格式, 提交格式有问题
// for (const key in postData.value) {
// postData.value[key] = JSON.stringify(postData.value[key]);
// }
// 检查非表单输入项
if (validOther()) {
// 通过验证
......