提交 de2f8b0e 编写于 作者: fzh's avatar fzh

feat: 回退版本

上级 53268a9c
......@@ -13,13 +13,13 @@
"dependencies": {
"@floating-ui/dom": "^1.0.11",
"@ibiz-template/command": "^0.0.1-beta.50",
"@ibiz-template/controller": "^0.0.1-beta.131",
"@ibiz-template/core": "^0.0.1-beta.131",
"@ibiz-template/model": "^0.0.1-beta.131",
"@ibiz-template/runtime": "^0.0.1-beta.131",
"@ibiz-template/service": "^0.0.1-beta.131",
"@ibiz-template/theme": "^0.0.1-beta.131",
"@ibiz-template/vue-util": "^0.0.1-beta.131",
"@ibiz-template/controller": "^0.0.1-beta.130",
"@ibiz-template/core": "^0.0.1-beta.130",
"@ibiz-template/model": "^0.0.1-beta.130",
"@ibiz-template/runtime": "^0.0.1-beta.130",
"@ibiz-template/service": "^0.0.1-beta.130",
"@ibiz-template/theme": "^0.0.1-beta.130",
"@ibiz-template/vue-util": "^0.0.1-beta.130",
"@ibiz/dynamic-model-api": "^2.1.28",
"@riophae/vue-treeselect": "^0.4.0",
"dayjs": "^1.11.7",
......
lockfileVersion: '6.1'
lockfileVersion: '6.0'
settings:
autoInstallPeers: true
......@@ -12,25 +12,25 @@ dependencies:
specifier: ^0.0.1-beta.50
version: 0.0.1-beta.50
'@ibiz-template/controller':
specifier: ^0.0.1-beta.131
specifier: ^0.0.1-beta.130
version: 0.0.1-beta.131(@ibiz-template/core@0.0.1-beta.131)(@ibiz-template/model@0.0.1-beta.131)(@ibiz-template/runtime@0.0.1-beta.131)(@ibiz-template/service@0.0.1-beta.131)(lodash-es@4.17.21)(qs@6.11.1)(qx-util@0.4.8)
'@ibiz-template/core':
specifier: ^0.0.1-beta.131
specifier: ^0.0.1-beta.130
version: 0.0.1-beta.131(lodash-es@4.17.21)(qx-util@0.4.8)(ramda@0.28.0)
'@ibiz-template/model':
specifier: ^0.0.1-beta.131
specifier: ^0.0.1-beta.130
version: 0.0.1-beta.131(@ibiz/dynamic-model-api@2.1.28)(lodash-es@4.17.21)(qx-util@0.4.8)
'@ibiz-template/runtime':
specifier: ^0.0.1-beta.131
specifier: ^0.0.1-beta.130
version: 0.0.1-beta.131(@ibiz-template/core@0.0.1-beta.131)(@ibiz-template/model@0.0.1-beta.131)(@ibiz-template/service@0.0.1-beta.131)(qx-util@0.4.8)
'@ibiz-template/service':
specifier: ^0.0.1-beta.131
specifier: ^0.0.1-beta.130
version: 0.0.1-beta.131(@ibiz-template/core@0.0.1-beta.131)(@ibiz-template/model@0.0.1-beta.131)(qx-util@0.4.8)(ramda@0.28.0)
'@ibiz-template/theme':
specifier: ^0.0.1-beta.131
specifier: ^0.0.1-beta.130
version: 0.0.1-beta.131
'@ibiz-template/vue-util':
specifier: ^0.0.1-beta.131
specifier: ^0.0.1-beta.130
version: 0.0.1-beta.131(@ibiz-template/controller@0.0.1-beta.131)(@ibiz-template/core@0.0.1-beta.131)(@ibiz-template/model@0.0.1-beta.131)(@ibiz-template/service@0.0.1-beta.131)(qs@6.11.1)(qx-util@0.4.8)(ramda@0.28.0)(vue-router@3.6.5)(vue@2.7.14)
'@ibiz/dynamic-model-api':
specifier: ^2.1.28
......
......@@ -73,32 +73,36 @@ export const IBizInputNumber = defineComponent({
this.disabled ? this.ns.m('disabled') : '',
this.readonly ? this.ns.m('readonly') : '',
this.hiddenupdownbutton ? this.ns.m('hiddenupdownbutton') : '',
this.controller.model.unitName ? this.ns.m('showUnitName') : '',
]}
>
{[
this.readonly && this.currentVal,
!this.readonly &&
h('IInputNumber', {
ref: 'inputRef',
props: {
...this.c.customProps,
value: this.currentVal,
placeholder: this.controller.placeHolder,
precision:
this.c.model.precision === -1
? undefined
: this.c.model.precision,
disabled: this.disabled,
h(
'IInputNumber',
{
ref: 'inputRef',
props: {
...this.c.customProps,
value: this.currentVal,
placeholder: this.controller.placeHolder,
precision:
this.c.model.precision === -1
? undefined
: this.c.model.precision,
disabled: this.disabled,
},
on: {
'on-change': this.handleChange,
},
},
on: {
'on-change': this.handleChange,
},
}),
this.controller.model.unitName &&
h('i', { class: this.ns.e('unit'), slot: 'suffix' }, [
this.controller.model.unitName,
]),
[
this.controller.model.unitName &&
h('i', { class: this.ns.e('unit'), slot: 'suffix' }, [
this.controller.model.unitName,
]),
],
),
]}
</div>
);
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册