You need to sign in or sign up before continuing.
Commit 005297d4 by 黑潮

fix: 修改bug

parent ce08325a
......@@ -130,7 +130,9 @@ export default {
this.$refs.form.resetFields();
this.$emit('update:show', false);
},
addItem() {
async addItem() {
const valid = await this.$refs.form.validate();
if (!valid) return;
let qfxx = { ...this.form };
if (this.materials.length == 0) {
this.$message.warning('请添加群发内容');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment