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.

15 lines
320 B

5 years ago
  1. var contextName="sys";
  2. var sysContextName="sys/mdp";//系统管理子模块
  3. var sysName="";//当前系统名称
  4. export default {
  5. getSysContextName: function () {
  6. return sysContextName;
  7. },
  8. getContextName: function () {
  9. return contextName;
  10. },
  11. getSysName: function () {
  12. return sysName;
  13. }
  14. };