Commit ccaf6a98 by 黑潮

fix: bug修复

parent a5f4ba23
......@@ -192,6 +192,7 @@ export default {
this.ecmMarketingTypeRelationId = '';
this.materials = [];
this.sms = {};
this.telTaskItem = {};
this.$refs.form.resetFields();
this.$emit('update:show', false);
},
......
......@@ -21,7 +21,7 @@
</template>
<dm-input class="w400" :rows="4" type="textarea" v-model="form.content" placeholder="限制200个字符" :maxlength="200"></dm-input>
</el-form-item>
<el-form-item label="任务逾期判定" prop="lateDays"> <el-input-number controls-position="right" class="w400" v-model="form.lateDays"></el-input-number> 天之后 </el-form-item>
<el-form-item label="任务逾期判定" prop="lateDays"> <el-input-number controls-position="right" :min="0" class="w400" v-model="form.lateDays"></el-input-number> 天之后 </el-form-item>
</el-form>
<span slot="footer" class="dialog-footer">
<el-button @click="close">关 闭</el-button>
......@@ -66,6 +66,7 @@ export default {
},
watch: {
show(val) {
console.log(val, this.item);
this.form = {
title: '',
lateDays: '',
......
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