mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
22 lines
448 B
XML
22 lines
448 B
XML
/* eslint-disable */
|
|
var utils = require('../wxs/utils.wxs');
|
|
|
|
function inputStyle(autosize) {
|
|
if (autosize.constructor === 'Object') {
|
|
var style = '';
|
|
if (autosize.minHeight) {
|
|
style += 'min-height:' + utils.addUnit(autosize.minHeight);
|
|
}
|
|
if (autosize.maxHeight) {
|
|
style += 'min-height:' + utils.addUnit(autosize.maxHeight);
|
|
}
|
|
return style;
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
module.exports = {
|
|
inputStyle: inputStyle
|
|
};
|