feat: 🚀 去掉空格

This commit is contained in:
2025-04-09 17:42:06 +08:00
parent 2698e2c2cf
commit 473aa04ea4
11 changed files with 44 additions and 28 deletions

View File

@@ -154,7 +154,10 @@ const getArticleCategorySave = async (params: any) => {
};
const handleSelectChangeEmits = (value: any) => {
dataStore.ruleForm.pid = value.id;
console.log(value, "===============value1111111============");
if (value.prop === "pid") {
dataStore.ruleForm.pid = value.id;
}
};
const handleTreesSelectChangeEmits = (value: any) => {
console.log(value, "=========value=========");

View File

@@ -36,7 +36,7 @@
:min="1"
:max="9999"
:controls="true"
v-model.trim="_ruleFormParam.sort"
v-model="_ruleFormParam.sort"
step-strictly
:step="1"
controls-position="right"