resizable.wxs 238 B

12345678910111213
  1. function renderResizable(status) {
  2. console.log(status)
  3. switch(status) {
  4. case "lock":
  5. return '锁定屏幕中';
  6. case "unlock":
  7. return "可旋转屏幕";
  8. }
  9. }
  10. module.exports = {
  11. renderResizable: renderResizable
  12. }