perf: 调整邮件窗口大小,这样可以同时查看订单信息;客人订单增加【全部】选项

dev/emitter
LiaoYijun 10 months ago
parent 6f199a33d1
commit 92c3222e79

@ -67,6 +67,7 @@ function AuthApp() {
const startEmailInterval = (userId) => {
setInterval(() => {
// TODO 线
getEmailFetchAction({opi_sn: userId})
}, 1000*10)
}

@ -452,7 +452,7 @@ const EmailEditorPopup = ({ open, setOpen, fromEmail, fromUser, fromOrder, toEma
open={open}
setOpen={setOpen}
// initial={{ top: isEmpty(quoteid) ? 20 : 74 }}
initial={{ width: window.innerWidth-40, height: window.innerHeight-40, left: 20, top: 20 }}
initial={{ width: 1200, height: window.innerHeight-40, left: 300 + 24, top: 64 }}
maximizeButton={<></>}
initialStage={'FULLSCREEN'}
onCancel={() => {

@ -47,6 +47,7 @@ const CustomerProfile = () => {
const mapOrderList = orderList.map(o => {
return { value: o.coli_sn, label: o.coli_id }
})
mapOrderList.unshift({ value: 0, label: "全部" });
setOrderList(mapOrderList)
if (!isEmpty(orderList)) {
setChatOrder(currentOrder)

Loading…
Cancel
Save