mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-18 23:36:46 +08:00
fix:编辑面授课上传组件传值,修改组件重叠样式
This commit is contained in:
@@ -667,7 +667,7 @@ export default defineComponent({
|
||||
console.log("state.auditDescription", state.auditDescription);
|
||||
}
|
||||
}
|
||||
|
||||
console.log(item)
|
||||
state.qdms_inputV1 = item.name;
|
||||
state.feng_mian_1 = item.picUrl;
|
||||
state.qdms_inputV2 = item.targetUser;
|
||||
@@ -678,7 +678,13 @@ export default defineComponent({
|
||||
state.qdms_inputV6 = item.intro;
|
||||
state.member = { value: item.teacherId, name: item.teacher };
|
||||
valueHtml.value = item.outline;
|
||||
state.attach = item.attach;
|
||||
let arrss = item.attach.split(',')
|
||||
let str =''
|
||||
for(let i=0;i<arrss.length;i++){
|
||||
i == arrss.length -1 ? str += arrss[i].slice(arrss[i].lastIndexOf('/')+1) : str += arrss[i].slice(arrss[i].lastIndexOf('/')+1) + ','
|
||||
}
|
||||
console.log(str)
|
||||
state.attach = str;
|
||||
};
|
||||
|
||||
const handleTagChange = () => {
|
||||
|
||||
Reference in New Issue
Block a user