Appearance
使用脚本设置字段值
脚本设置表单字段值
在设计的表单中可以通过脚本设置表单内字段值
注意
该示例中使用的条形码、二维码调用的是系统服务,服务文档
使用示例
js
{
props: {
},
watch:{
'form.code':{
handler: function(){
this.form.imgUrl="/web0/file/qrcode?content="+encodeURIComponent(this.form.code || "Informat2024")+"&size=200";
},
immediate: true
}
},
data: function () {
return {
}
},
created: function () {
},
mounted: function () {
},
beforeDestroy: function () {
},
methods: {
setup: function () {
}
}
}