修改排序

This commit is contained in:
shidongli 2024-07-12 11:28:48 +08:00
parent 5200769be2
commit 01137e7afe
4 changed files with 21 additions and 4 deletions

View File

@ -304,6 +304,9 @@ export default {
const id = row.id || this.ids;
getAgencyCategory(id).then((response) => {
this.form = response.data;
if (!this.form.categorySort) {
this.form.categorySort = undefined
}
this.open = true;
this.title = "修改机构类别";
});
@ -383,7 +386,11 @@ export default {
};
</script>
<style lang="scss" scoped>
.el-cascader .el-input input::-webkit-input-placeholder {
::v-deep .el-input-number .el-input__inner {
text-align: left;
}
::v-deep .el-cascader .el-input input::-webkit-input-placeholder {
color: #cccfd6;
}
</style>

View File

@ -218,6 +218,9 @@ export default {
const id = row.id || this.ids;
getSubdivision(id).then((response) => {
this.form = response.data;
if (!this.form.sort) {
this.form.sort = undefined
}
this.open = true;
this.title = "修改细分类别信息";
});
@ -292,3 +295,8 @@ export default {
},
};
</script>
<style lang="scss" scoped>
::v-deep .el-input-number .el-input__inner {
text-align: left;
}
</style>

View File

@ -274,7 +274,6 @@ export default {
this.form = response.data;
if (!this.form.taskStatusSort) {
this.form.taskStatusSort = undefined
}
this.open = true;
this.title = "修改任务状态字典";
@ -342,8 +341,8 @@ export default {
}
};
</script>
<style lang="scss">
.el-input-number .el-input__inner {
<style lang="scss" scoped>
::v-deep .el-input-number .el-input__inner {
text-align: left;
}
</style>

View File

@ -229,6 +229,9 @@ export default {
const id = row.id || this.ids
getTaskType(id).then(response => {
this.form = response.data;
if(!this.form.taskTypeSort){
this.form.taskTypeSort=undefined
}
this.open = true;
this.title = "修改任务类型字典";
});