|
|
|
@ -17,7 +17,8 @@ import { FlexCenterLayout, FlexHorizontalLayout, VerticalLayout,
|
|
|
|
|
FlexWrapperVerticalLayout |
|
|
|
|
} from "@/core/wrapper"; |
|
|
|
|
import { SystemProvider } from "@/core/system"; |
|
|
|
|
|
|
|
|
|
import { ImageRadio, ImageCheckbox } from "@/base"; |
|
|
|
|
import { HalfButton } from "@/case"; |
|
|
|
|
|
|
|
|
|
// 工程配置
|
|
|
|
|
// 注册布局
|
|
|
|
@ -309,7 +310,7 @@ configWidget("bi.table", ob => {
|
|
|
|
|
|
|
|
|
|
configWidget("bi.radio", ob => { |
|
|
|
|
if (isIE() && getIEVersion() <= 9) { |
|
|
|
|
return extend({}, ob, { type: "bi.image_radio" }); |
|
|
|
|
return extend({}, ob, { type: ImageRadio.xtype }); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return ob; |
|
|
|
@ -317,7 +318,7 @@ configWidget("bi.radio", ob => {
|
|
|
|
|
|
|
|
|
|
configWidget("bi.checkbox", ob => { |
|
|
|
|
if (isIE() && getIEVersion() <= 9) { |
|
|
|
|
return extend({}, ob, { type: "bi.image_checkbox" }); |
|
|
|
|
return extend({}, ob, { type: ImageCheckbox.xtype }); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return ob; |
|
|
|
|