合伙人运营小程序
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.wxs 235B

123456789
  1. var getStyles = function (top, zIndex) {
  2. var topStyle = top ? 'top:' + top + 'px;' : '';
  3. var zIndexStyle = zIndex ? 'z-index:' + zIndex + ';' : '';
  4. return topStyle + zIndexStyle;
  5. };
  6. module.exports = {
  7. getStyles: getStyles,
  8. };