mirror of
https://github.com/kuaifan/dootask.git
synced 2026-01-27 13:08:13 +00:00
no message
This commit is contained in:
parent
0dde37e1f1
commit
f750a6aec2
16
resources/assets/js/functions/eeui.js
vendored
16
resources/assets/js/functions/eeui.js
vendored
@ -261,6 +261,22 @@
|
||||
}
|
||||
})
|
||||
},
|
||||
|
||||
// 获取最新一张照片
|
||||
eeuiAppGetLatestPhoto(callback) {
|
||||
if (!$A.isEEUiApp) return;
|
||||
$A.eeuiModule("eeui").then(obj => {
|
||||
obj.getLatestPhoto(callback);
|
||||
})
|
||||
},
|
||||
|
||||
// 上传照片(通过 eeuiAppGetLatestPhoto 获取到的path,params 参数:{url,data,headers,path,fieldName})
|
||||
eeuiAppUploadPhoto(params, callback) {
|
||||
if (!$A.isEEUiApp) return;
|
||||
$A.eeuiModule("eeui").then(obj => {
|
||||
obj.uploadPhoto(params, callback);
|
||||
})
|
||||
}
|
||||
});
|
||||
|
||||
window.$A = $;
|
||||
|
||||
@ -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">
|
||||
|
||||
13
resources/assets/sass/components/report.scss
vendored
13
resources/assets/sass/components/report.scss
vendored
@ -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
|
||||
Loading…
x
Reference in New Issue
Block a user