35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* * The editor view file of dev module of ZenTaoPMS.
|
|
* *
|
|
* * @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
|
* * @author Yidong Wang <yidong@cnezsoft.com>
|
|
* * @package dev
|
|
* * @version $Id$
|
|
* * @link http://www.zentao.net
|
|
* */
|
|
?>
|
|
<?php include 'header.html.php';?>
|
|
<div id='mainContent' class='main-content flex'>
|
|
<div class="side-left">
|
|
<div class="title">默认值</div>
|
|
<div class="label-list">
|
|
<div class="input-label h-32 my-6">项目集</div>
|
|
</div>
|
|
</div>
|
|
<div class="side-right">
|
|
<div class="title">修改值</div>
|
|
<div class="input-list">
|
|
<div class="input-control h-32 py-6">
|
|
<i class="icon icon-angle-right text-primary"></i>
|
|
<input class="form-control" placeholder="项目集"></input>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="side-main">
|
|
</div>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|
|
|