no message

This commit is contained in:
kuaifan 2025-03-26 23:41:19 +08:00
parent 0dde37e1f1
commit f750a6aec2
4 changed files with 31 additions and 2 deletions

View File

@ -261,6 +261,22 @@
}
})
},
// 获取最新一张照片
eeuiAppGetLatestPhoto(callback) {
if (!$A.isEEUiApp) return;
$A.eeuiModule("eeui").then(obj => {
obj.getLatestPhoto(callback);
})
},
// 上传照片(通过 eeuiAppGetLatestPhoto 获取到的pathparams 参数:{url,data,headers,path,fieldName}
eeuiAppUploadPhoto(params, callback) {
if (!$A.isEEUiApp) return;
$A.eeuiModule("eeui").then(obj => {
obj.uploadPhoto(params, callback);
})
}
});
window.$A = $;

View File

@ -50,7 +50,7 @@
<div class="ivu-modal-wrap-apply-body full-body">
<div v-if="mybotList.length === 0" class="empty-data">
<Loading v-if="mybotLoad"/>
<span>{{$L('您没有创建机器人')}}</span>
<span v-else>{{$L('您没有创建机器人')}}</span>
</div>
<ul v-else class="ivu-modal-wrap-ul">
<li v-for="(item, key) in mybotList" :key="key">

View File

@ -308,5 +308,18 @@
min-width: 120px;
}
}
&.ivu-form-label-top {
.report-content-editor {
display: flex;
flex-direction: column;
align-items: flex-start;
.ivu-form-item-content {
flex: 1;
height: 0;
width: 100%;
}
}
}
}

@ -1 +1 @@
Subproject commit 66216c821f6956fdfc2ad6a4e94c0622ee302b0d
Subproject commit 5bcd05203171ee552e56bddc621f43d1ce366f83