This commit is contained in:
2025-06-25 09:08:30 +08:00
parent 7e588ba737
commit 90d974d739
2 changed files with 9 additions and 1 deletions

View File

@@ -40,10 +40,17 @@ watch(
)
const success = async () => {
console.log(form);
if (
form.real_price === null ||
form.security_level === null ||
form.time_level === null
form.time_level === null ||
form.real_price === '' ||
form.security_level === '' ||
form.time_level === '' ||
form.real_price === undefined ||
form.security_level === undefined ||
form.time_level === undefined
) {
Message.warning('填写信息不能为空');
nextTick(() => {

View File

@@ -74,6 +74,7 @@ const success = async () => {
<a-form-item label="特殊要求" field="special_text">
<a-textarea
:max-length="300"
placeholder="请输入特殊要求,如:请勿截图,必须下载原图再上传到抖音"
v-model:model-value="form.special_text">
</a-textarea>