|
@@ -6,6 +6,8 @@
|
|
|
:disabled="param.edit"
|
|
|
v-model="form.conferenceTitle"
|
|
|
placeholder="请输入会议标题"
|
|
|
+ maxlength="500"
|
|
|
+ show-word-limit
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
|
|
@@ -14,6 +16,8 @@
|
|
|
:disabled="param.edit"
|
|
|
type="textarea"
|
|
|
rows="4"
|
|
|
+ maxlength="1000"
|
|
|
+ show-word-limit
|
|
|
placeholder="请输入会议内容"
|
|
|
v-model="form.conferenceContent"
|
|
|
></el-input>
|
|
@@ -181,14 +185,12 @@ export default {
|
|
|
this.user = res.user.dept;
|
|
|
if (res.user.dept.type == 1 && res.user.userId == 14) {
|
|
|
listDept().then((res) => {
|
|
|
- res.data.forEach(item=>{
|
|
|
- if(item.type!=3){
|
|
|
+ res.data.forEach((item) => {
|
|
|
+ if (item.type != 3) {
|
|
|
this.deptList.push(item);
|
|
|
}
|
|
|
});
|
|
|
-
|
|
|
});
|
|
|
-
|
|
|
} else if (res.user.dept.type == 2) {
|
|
|
this.deptList = [
|
|
|
{
|
|
@@ -241,8 +243,7 @@ export default {
|
|
|
this.isShowDate = true;
|
|
|
},
|
|
|
|
|
|
- handleChange(val) {
|
|
|
- },
|
|
|
+ handleChange(val) {},
|
|
|
/** 提交按钮 */
|
|
|
submitForm() {
|
|
|
this.$refs["form"].validate((valid) => {
|