You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
448 B
22 lines
448 B
5 years ago
|
/* 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
|
||
|
};
|