|
@@ -220,17 +220,17 @@
|
|
|
<el-input v-model="form.remark" placeholder="请输入备注" />
|
|
<el-input v-model="form.remark" placeholder="请输入备注" />
|
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
- </el-row>
|
|
|
|
|
|
|
+ </el-row>
|
|
|
<el-row>
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
|
<el-form-item label="上传文件" prop="fileList">
|
|
<el-form-item label="上传文件" prop="fileList">
|
|
|
<K-file-upload ref="upload" v-model="form.fileList" @input="getKUploadFileList" />
|
|
<K-file-upload ref="upload" v-model="form.fileList" @input="getKUploadFileList" />
|
|
|
- </el-form-item>
|
|
|
|
|
|
|
+ </el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
|
<el-form-item label="">
|
|
<el-form-item label="">
|
|
|
<el-button type="primary" @click="showSelectFile" >从学习资料中选择</el-button>
|
|
<el-button type="primary" @click="showSelectFile" >从学习资料中选择</el-button>
|
|
|
- </el-form-item>
|
|
|
|
|
|
|
+ </el-form-item>
|
|
|
</el-col>
|
|
</el-col>
|
|
|
</el-row>
|
|
</el-row>
|
|
|
</el-form>
|
|
</el-form>
|
|
@@ -246,7 +246,7 @@
|
|
|
@select="fileSelected"
|
|
@select="fileSelected"
|
|
|
:orgId="orgId"
|
|
:orgId="orgId"
|
|
|
></DialogSelectFile>
|
|
></DialogSelectFile>
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -398,7 +398,7 @@ export default {
|
|
|
},
|
|
},
|
|
|
//所属机构为当前用户登录机构时才显示 “编辑、删除”按钮
|
|
//所属机构为当前用户登录机构时才显示 “编辑、删除”按钮
|
|
|
checkCanEdit(row) {
|
|
checkCanEdit(row) {
|
|
|
- return row.belongOrgId === this.$store.getters.orgId
|
|
|
|
|
|
|
+ return row.belongOrgId === this.$store.getters.orgId && row.issue == 0
|
|
|
},
|
|
},
|
|
|
checkCanDel(row) {
|
|
checkCanDel(row) {
|
|
|
//计划创建机构为当前机构且不是顶级机构创建的计划才显示“删除”按钮
|
|
//计划创建机构为当前机构且不是顶级机构创建的计划才显示“删除”按钮
|
|
@@ -567,7 +567,7 @@ export default {
|
|
|
list.forEach(x=>{
|
|
list.forEach(x=>{
|
|
|
this.form.fileList= this.form.fileList.concat(x.fileList);
|
|
this.form.fileList= this.form.fileList.concat(x.fileList);
|
|
|
})
|
|
})
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
},
|
|
},
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|