* Reformat code style.

This commit is contained in:
zhujinyong
2021-10-19 13:21:22 +08:00
parent 64af527b27
commit 68e738fdd7
8 changed files with 172 additions and 176 deletions
+47 -48
View File
@@ -10,11 +10,11 @@
* @link http://www.zentao.net
*/
?>
<?php include '../../common/view/header.html.php'; ?>
<?php include '../../common/view/kindeditor.html.php'; ?>
<?php js::import($jsRoot . 'vue/vue.js'); ?>
<?php js::set('example', $example); ?>
<?php js::set('libID', $api->lib); ?>
<?php include '../../common/view/header.html.php';?>
<?php include '../../common/view/kindeditor.html.php';?>
<?php js::import($jsRoot . 'vue/vue.js');?>
<?php js::set('example', $example);?>
<?php js::set('libID', $api->lib);?>
<?php
js::set('typeOptions', $typeOptions);
js::set('langField', $lang->struct->field);
@@ -36,15 +36,14 @@ js::set('api', $api);
<button type='button' class='close' data-dismiss='modal'>
<i class='icon icon-close'></i>
</button>
<h4 class='modal-title'><?php echo $lang->api->customType; ?></h4>
<h4 class='modal-title'><?php echo $lang->api->customType;?></h4>
</div>
<div class='modal-body'>
<textarea class="form-control customTypeTextarea" rows="10" placeholder=""></textarea>
</div>
<div class="modal-footer">
<button class="btn btn-wide btn-warning formatCustom"
style="float: left"><?php echo $lang->api->format; ?></button>
<?php echo html::submitButton($lang->confirm, '', 'btn btn-wide btn-primary submit-custom'); ?>
<button class="btn btn-wide btn-warning formatCustom" style="float: left"><?php echo $lang->api->format;?></button>
<?php echo html::submitButton($lang->confirm, '', 'btn btn-wide btn-primary submit-custom');?>
</div>
</div>
</div>
@@ -52,71 +51,71 @@ js::set('api', $api);
<div id="mainContent" class="main-content">
<div class='center-block' id="apiApp">
<div class='main-header'>
<?php if($edit): ?>
<?php if($edit):?>
<h2>
<span class='label label-id'><?php echo $api->id; ?></span>
<?php echo html::a($this->createLink('api', 'index', "apiID=$api->id"), $api->title, '', "title='$api->title'"); ?>
<small> <?php echo $lang->arrow . ' ' . $lang->api->edit; ?></small>
<span class='label label-id'><?php echo $api->id;?></span>
<?php echo html::a($this->createLink('api', 'index', "apiID=$api->id"), $api->title, '', "title='$api->title'");?>
<small> <?php echo $lang->arrow . ' ' . $lang->api->edit;?></small>
</h2>
<div
class='pull-right'><?php echo html::a('###', $lang->save, '', 'id="top-submit" class="btn btn-primary"'); ?></div>
<?php else: ?>
<h2><?php echo $lang->api->create; ?></h2>
<?php endif; ?>
class='pull-right'><?php echo html::a('###', $lang->save, '', 'id="top-submit" class="btn btn-primary"');?></div>
<?php else:?>
<h2><?php echo $lang->api->create;?></h2>
<?php endif;?>
</div>
<form class="load-indicator main-form form-ajax" id="dataform" method='post' enctype='multipart/form-data'>
<table class='table table-form'>
<tbody>
<tr>
<th><?php echo $lang->api->module; ?></th>
<th><?php echo $lang->api->module;?></th>
<td>
<span
id='moduleBox'><?php echo html::select('module', $moduleOptionMenu, $moduleID, "class='form-control chosen'"); ?></span>
id='moduleBox'><?php echo html::select('module', $moduleOptionMenu, $moduleID, "class='form-control chosen'");?></span>
</td>
<td></td>
</tr>
<tr>
<th><?php echo $lang->api->formTitle; ?></th>
<td colspan='2'><?php echo html::input('title', $api->title, "class='form-control' required"); ?></td>
<th><?php echo $lang->api->formTitle;?></th>
<td colspan='2'><?php echo html::input('title', $api->title, "class='form-control' required");?></td>
</tr>
<tr>
<th><?php echo $lang->api->path; ?></th>
<td colspan='2'><?php echo html::input('path', $api->path, "class='form-control'"); ?></td>
<th><?php echo $lang->api->path;?></th>
<td colspan='2'><?php echo html::input('path', $api->path, "class='form-control'");?></td>
</tr>
<tr>
<th><?php echo $lang->api->protocol; ?></th>
<td><?php echo html::radio('protocol', $lang->api->protocalOptions, $api->protocol ? $api->protocol : 'HTTP'); ?></td>
<th><?php echo $lang->api->protocol;?></th>
<td><?php echo html::radio('protocol', $lang->api->protocalOptions, $api->protocol ? $api->protocol : 'HTTP');?></td>
</tr>
<tr>
<th><?php echo $lang->api->method; ?></th>
<th><?php echo $lang->api->method;?></th>
<td>
<span
id='moduleBox'><?php echo html::select('method', $lang->api->methodOptions, $api->method ? $api->method : 'GET', "class='form-control chosen'"); ?></span>
id='moduleBox'><?php echo html::select('method', $lang->api->methodOptions, $api->method ? $api->method : 'GET', "class='form-control chosen'");?></span>
</td>
</tr>
<tr>
<th><?php echo $lang->api->requestType; ?></th>
<th><?php echo $lang->api->requestType;?></th>
<td>
<span
id='moduleBox'><?php echo html::select('requestType', $lang->api->requestTypeOptions, $api->requestType ? $api->requestType : 'application/json', "class='form-control chosen'"); ?></span>
id='moduleBox'><?php echo html::select('requestType', $lang->api->requestTypeOptions, $api->requestType ? $api->requestType : 'application/json', "class='form-control chosen'");?></span>
</td>
</tr>
<tr>
<th><?php echo $lang->api->status; ?></th>
<td><?php echo html::radio('status', $lang->api->statusOptions, $api->status ? $api->status : apiModel::STATUS_DOING); ?></td>
<th><?php echo $lang->api->status;?></th>
<td><?php echo html::radio('status', $lang->api->statusOptions, $api->status ? $api->status : apiModel::STATUS_DOING);?></td>
</tr>
<tr>
<th>
<nobr><?php echo $lang->api->owner; ?></nobr>
<nobr><?php echo $lang->api->owner;?></nobr>
</th>
<td>
<div class='input-group'>
<?php echo html::select('owner', $allUsers, $api->owner ? $api->owner : $user, "class='form-control chosen'"); ?>
<?php echo html::select('owner', $allUsers, $api->owner ? $api->owner : $user, "class='form-control chosen'");?>
</div>
</td>
</tr>
<tr>
<th><?php echo $lang->api->header; ?></th>
<th><?php echo $lang->api->header;?></th>
<td colspan="2">
<table class="table table-data">
<thead>
@@ -151,7 +150,7 @@ js::set('api', $api);
</td>
</tr>
<tr>
<th><?php echo $lang->api->query; ?></th>
<th><?php echo $lang->api->query;?></th>
<td colspan="2">
<table class="table table-data">
<thead>
@@ -186,7 +185,7 @@ js::set('api', $api);
</td>
</tr>
<tr>
<th><?php echo $lang->api->params; ?></th>
<th><?php echo $lang->api->params;?></th>
<td colspan='2'>
<body-field @change="changeAttr" :attr="api.params.params"></body-field>
<input type="hidden" name="params" v-model="params">
@@ -194,16 +193,16 @@ js::set('api', $api);
</tr>
<tr>
<th>
<nobr><?php echo $lang->api->paramsExample; ?></nobr>
<nobr><?php echo $lang->api->paramsExample;?></nobr>
</th>
<td>
<div class='input-group'>
<?php echo html::textarea('paramsExample', $api->paramsExample, "style='width:100%;height:200px'"); ?>
<?php echo html::textarea('paramsExample', $api->paramsExample, "style='width:100%;height:200px'");?>
</div>
</td>
</tr>
<tr>
<th><?php echo $lang->api->response; ?></th>
<th><?php echo $lang->api->response;?></th>
<td colspan='2' id='responseDiv'>
<body-field @change="changeRes" :struct-type="'json'" :show-type="false" :attr="api.response"></body-field>
<input type="hidden" name="response" v-model="response">
@@ -211,25 +210,25 @@ js::set('api', $api);
</tr>
<tr>
<th>
<nobr><?php echo $lang->api->responseExample; ?></nobr>
<nobr><?php echo $lang->api->responseExample;?></nobr>
</th>
<td>
<div class='input-group'>
<?php echo html::textarea('responseExample', $api->responseExample, "style='width:100%;height:200px'"); ?>
<?php echo html::textarea('responseExample', $api->responseExample, "style='width:100%;height:200px'");?>
</div>
</td>
</tr>
<tr id='contentBox'>
<th><?php echo $lang->api->desc; ?></th>
<th><?php echo $lang->api->desc;?></th>
<td colspan='2'>
<div class='contenthtml'><?php echo html::textarea('desc', $api->desc, "style='width:100%;height:200px'"); ?></div>
<div class='contenthtml'><?php echo html::textarea('desc', $api->desc, "style='width:100%;height:200px'");?></div>
</td>
</tr>
<tr>
<td colspan='3' class='text-center form-actions'>
<?php echo html::submitButton(); ?>
<?php if(empty($gobackLink)) echo html::backButton($lang->goback, "data-app='{$app->tab}'"); ?>
<?php if(!empty($gobackLink)) echo html::a($gobackLink, $lang->goback, '', "class='btn btn-back btn-wide'"); ?>
<?php echo html::submitButton();?>
<?php if(empty($gobackLink)) echo html::backButton($lang->goback, "data-app='{$app->tab}'");?>
<?php if(!empty($gobackLink)) echo html::a($gobackLink, $lang->goback, '', "class='btn btn-back btn-wide'");?>
</td>
</tr>
</tbody>
@@ -237,5 +236,5 @@ js::set('api', $api);
</form>
</div>
</div>
<?php js::set('noticeAcl', $lang->noticeAcl); ?>
<?php include '../../common/view/footer.html.php'; ?>
<?php js::set('noticeAcl', $lang->noticeAcl);?>
<?php include '../../common/view/footer.html.php';?>