diff --git a/src/views/StarwayInfo/_actRelease/index.vue b/src/views/StarwayInfo/_actRelease/index.vue
index a9a91dc..8cc6fd8 100644
--- a/src/views/StarwayInfo/_actRelease/index.vue
+++ b/src/views/StarwayInfo/_actRelease/index.vue
@@ -3,7 +3,7 @@
-
+
diff --git a/src/views/StarwayInfo/index.vue b/src/views/StarwayInfo/index.vue
index 6a5c223..d8994dd 100644
--- a/src/views/StarwayInfo/index.vue
+++ b/src/views/StarwayInfo/index.vue
@@ -153,11 +153,15 @@ export default defineComponent({
handlerChangeSort(value) {
let obj = {id: this.activeId,sortWeight: this.sortValue*1}
this.proxy.$post("/topicActivity/updSort", obj).then(res => {
- this.getData();
- this.isEditing = false;
- this.activeId = undefined;
- this.sortValue = undefined;
- this.$message.success(res.data)
+ if(res.code == 200) {
+ this.getData();
+ this.isEditing = false;
+ this.activeId = undefined;
+ this.sortValue = undefined;
+ this.$message.success(res.data)
+ } else {
+ this.$message.error(res.msg)
+ }
}).catch(() => {});
}
}