be92c07d64a58dd16eb386037d2b0352.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?php if (!defined('THINK_PATH')) exit(); /*a:4:{s:99:"/Users/kaiyu/Documents/wwwroot/yanglao/public/../application/admin/view/service/configure/edit.html";i:1766386791;s:81:"/Users/kaiyu/Documents/wwwroot/yanglao/application/admin/view/layout/default.html";i:1746006159;s:78:"/Users/kaiyu/Documents/wwwroot/yanglao/application/admin/view/common/meta.html";i:1746006159;s:80:"/Users/kaiyu/Documents/wwwroot/yanglao/application/admin/view/common/script.html";i:1746006159;}*/ ?>
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <title><?php echo (isset($title) && ($title !== '')?$title:''); ?></title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
  8. <meta name="renderer" content="webkit">
  9. <meta name="referrer" content="never">
  10. <meta name="robots" content="noindex, nofollow">
  11. <link rel="shortcut icon" href="/assets/img/favicon.ico" />
  12. <!-- Loading Bootstrap -->
  13. <link href="/assets/css/backend<?php echo \think\Config::get('app_debug')?'':'.min'; ?>.css?v=<?php echo htmlentities(\think\Config::get('site.version') ?? ''); ?>" rel="stylesheet">
  14. <?php if(\think\Config::get('fastadmin.adminskin')): ?>
  15. <link href="/assets/css/skins/<?php echo htmlentities(\think\Config::get('fastadmin.adminskin') ?? ''); ?>.css?v=<?php echo htmlentities(\think\Config::get('site.version') ?? ''); ?>" rel="stylesheet">
  16. <?php endif; ?>
  17. <!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
  18. <!--[if lt IE 9]>
  19. <script src="/assets/js/html5shiv.js"></script>
  20. <script src="/assets/js/respond.min.js"></script>
  21. <![endif]-->
  22. <script type="text/javascript">
  23. var require = {
  24. config: <?php echo json_encode($config ?? ''); ?>
  25. };
  26. </script>
  27. </head>
  28. <body class="inside-header inside-aside <?php echo defined('IS_DIALOG') && IS_DIALOG ? 'is-dialog' : ''; ?>">
  29. <div id="main" role="main">
  30. <div class="tab-content tab-addtabs">
  31. <div id="content">
  32. <div class="row">
  33. <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
  34. <section class="content-header hide">
  35. <h1>
  36. <?php echo __('Dashboard'); ?>
  37. <small><?php echo __('Control panel'); ?></small>
  38. </h1>
  39. </section>
  40. <?php if(!IS_DIALOG && !\think\Config::get('fastadmin.multiplenav') && \think\Config::get('fastadmin.breadcrumb')): ?>
  41. <!-- RIBBON -->
  42. <div id="ribbon">
  43. <ol class="breadcrumb pull-left">
  44. <?php if($auth->check('dashboard')): ?>
  45. <li><a href="dashboard" class="addtabsit"><i class="fa fa-dashboard"></i> <?php echo __('Dashboard'); ?></a></li>
  46. <?php endif; ?>
  47. </ol>
  48. <ol class="breadcrumb pull-right">
  49. <?php foreach($breadcrumb as $vo): ?>
  50. <li><a href="javascript:;" data-url="<?php echo htmlentities($vo['url'] ?? ''); ?>"><?php echo htmlentities($vo['title'] ?? ''); ?></a></li>
  51. <?php endforeach; ?>
  52. </ol>
  53. </div>
  54. <!-- END RIBBON -->
  55. <?php endif; ?>
  56. <div class="content">
  57. <div class="panel panel-default panel-intro">
  58. <div class="panel-heading">
  59. <div class="panel-lead">
  60. <em>平台配置</em>
  61. 更新后5分钟生效
  62. </div>
  63. </div>
  64. <div class="panel-body" style="padding-top:30px;">
  65. <form id="edit-form" class="form-horizontal" role="form" data-toggle="validator" method="POST" action="">
  66. <div class="form-group">
  67. <label class="control-label col-xs-12 col-sm-2"><?php echo __('Userappid'); ?>:</label>
  68. <div class="col-xs-12 col-sm-8">
  69. <input id="c-userappid" class="form-control" name="row[userappid]" type="text" value="<?php echo htmlentities($row['userappid'] ?? ''); ?>">
  70. </div>
  71. </div>
  72. <div class="form-group">
  73. <label class="control-label col-xs-12 col-sm-2"><?php echo __('Usersecret'); ?>:</label>
  74. <div class="col-xs-12 col-sm-8">
  75. <input id="c-usersecret" class="form-control" name="row[usersecret]" type="text" value="<?php echo htmlentities($row['usersecret'] ?? ''); ?>">
  76. </div>
  77. </div>
  78. <div class="form-group">
  79. <label class="control-label col-xs-12 col-sm-2"><?php echo __('Skillappid'); ?>:</label>
  80. <div class="col-xs-12 col-sm-8">
  81. <input id="c-skillappid" class="form-control" name="row[skillappid]" type="text" value="<?php echo htmlentities($row['skillappid'] ?? ''); ?>">
  82. </div>
  83. </div>
  84. <div class="form-group">
  85. <label class="control-label col-xs-12 col-sm-2"><?php echo __('Skillsecret'); ?>:</label>
  86. <div class="col-xs-12 col-sm-8">
  87. <input id="c-skillsecret" class="form-control" name="row[skillsecret]" type="text" value="<?php echo htmlentities($row['skillsecret'] ?? ''); ?>">
  88. </div>
  89. </div>
  90. <div class="form-group">
  91. <label class="control-label col-xs-12 col-sm-2"><?php echo __('Shopappid'); ?>:</label>
  92. <div class="col-xs-12 col-sm-8">
  93. <input id="c-shopappid" class="form-control" name="row[shopappid]" type="text" value="<?php echo htmlentities($row['shopappid'] ?? ''); ?>">
  94. </div>
  95. </div>
  96. <div class="form-group">
  97. <label class="control-label col-xs-12 col-sm-2"><?php echo __('Shopsecret'); ?>:</label>
  98. <div class="col-xs-12 col-sm-8">
  99. <input id="c-shopsecret" class="form-control" name="row[shopsecret]" type="text" value="<?php echo htmlentities($row['shopsecret'] ?? ''); ?>">
  100. </div>
  101. </div>
  102. <div class="form-group">
  103. <label class="control-label col-xs-12 col-sm-2"><?php echo __('Gaodekey'); ?>:</label>
  104. <div class="col-xs-12 col-sm-8">
  105. <input id="c-gaodekey" class="form-control" name="row[gaodekey]" type="text" value="<?php echo htmlentities($row['gaodekey'] ?? ''); ?>">
  106. </div>
  107. </div>
  108. <div class="form-group layer-footer">
  109. <label class="control-label col-xs-12 col-sm-2"></label>
  110. <div class="col-xs-12 col-sm-8">
  111. <button type="submit" class="btn btn-primary btn-embossed disabled"><?php echo __('OK'); ?></button>
  112. </div>
  113. </div>
  114. </form>
  115. </div>
  116. </div>
  117. </div>
  118. </div>
  119. </div>
  120. </div>
  121. </div>
  122. </div>
  123. <script src="/assets/js/require.min.js" data-main="/assets/js/require-backend<?php echo \think\Config::get('app_debug')?'':'.min'; ?>.js?v=<?php echo htmlentities($site['version'] ?? ''); ?>"></script>
  124. </body>
  125. </html>