添加注释,删除无用代码

This commit is contained in:
mabo
2021-05-13 18:09:36 +08:00
parent 967e673647
commit a2752a731d
122 changed files with 868 additions and 1185 deletions

View File

@@ -62,10 +62,9 @@ export default {
},
data() {
return {
type: 0,
type: 0, // 0 发送新消息 1 编辑消息
loading: false, // 表单加载状态
selectUsers: [],
userModalVisible: false,
selectUsers: [], // 选择用户
modalTitle: "", // 添加或编辑标题
form: {
// 添加或编辑表单对象初始化数据
@@ -80,8 +79,7 @@ export default {
content: [{ required: true, message: "内容不能为空", trigger: "blur" }]
},
submitLoading: false, // 添加或编辑提交状态
dictMessageType: this.$store.state.dict.messageType,
backRoute: ""
backRoute: "" // back路由路径
};
},
methods: {