chore: sync pending workspace updates

This commit is contained in:
wushumin
2026-05-21 15:28:16 +08:00
parent 7ba3ac1b67
commit cfd21b462a
8 changed files with 53 additions and 30 deletions

View File

@@ -208,8 +208,8 @@ function handleManualCategoryChange() {
function validateManualForm() {
const form = manualForm.value;
if (!form.product_info.category_id || !form.product_info.brand_id || !form.product_info.product_name.trim()) {
ElMessage.warning("请完整填写品类品牌和商品名称");
if (!form.product_info.category_id || !form.product_info.brand_id) {
ElMessage.warning("请完整填写品类品牌");
return false;
}
const address = form.return_address;
@@ -827,7 +827,7 @@ onMounted(fetchOrders);
</el-select>
</el-form-item>
<el-form-item label="商品名称">
<el-input v-model="manualForm.product_info.product_name" placeholder="例如Classic Flap 手袋" />
<el-input v-model="manualForm.product_info.product_name" placeholder="可选,例如Classic Flap 手袋" />
</el-form-item>
<el-form-item label="颜色">
<el-input v-model="manualForm.product_info.color" placeholder="可选" />