2024年5月24日 修复问题
This commit is contained in:
parent
0ca5a40f38
commit
13115de7d6
|
@ -185,8 +185,8 @@
|
|||
<!-- <a-button @click="sureChange" type="primary" style="margin-top: 100px">确定</a-button> -->
|
||||
<!-- </template> -->
|
||||
</draggable>
|
||||
<a-modal :title="threePageTitle" :width="800" :visible="threePageOpen" @ok="threePageHandleOk" :okButtonProps="{ class: { 'jee-hidden': threePageDisableSubmit } }" @cancel="threePageHandleCancel" cancelText="关闭">
|
||||
<a-card>
|
||||
<a-modal :title="threePageTitle" :width="800" :visible="threePageOpen" :maskClosable="false" @ok="threePageHandleOk" :okButtonProps="{ class: { 'jee-hidden': threePageDisableSubmit } }" @cancel="threePageHandleCancel" cancelText="关闭">
|
||||
<a-card v-if="threePageData?.three">
|
||||
<div>
|
||||
标题:
|
||||
<a-input v-if="!threePageDisableSubmit" :value="threePageData.three.title" @change="changeInput($event, threePageData.three, 'title')" @click="stop" class="ainput"/>
|
||||
|
@ -517,7 +517,7 @@
|
|||
return;
|
||||
}
|
||||
} else if(three.type == 'richText'){
|
||||
if(!three.filePath){
|
||||
if(!three.richText){
|
||||
createMessage.warn('请填写富文本!');
|
||||
return;
|
||||
}
|
||||
|
@ -547,6 +547,7 @@
|
|||
|
||||
function threePageHandleCancel(){
|
||||
threePageOpen.value = false;
|
||||
threePageData.value = {};
|
||||
}
|
||||
|
||||
//按下鼠标按键后触发
|
||||
|
|
Loading…
Reference in New Issue