123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>${comments}</title>
- #set($header='#parse("sys/header.html")')
- #set($save='#if($shiro.hasPermission("'+${pathName}+':save"))')
- #set($update='#if($shiro.hasPermission("'+${pathName}+':update"))')
- #set($delete='#if($shiro.hasPermission("'+${pathName}+':delete"))')
- #set($end='#end')
- $header
- </head>
- <body>
- <div id="rrapp" v-cloak>
- <div v-show="showList">
- <Row :gutter="16">
- <div class="search-group">
- <i-col span="4">
- <i-input v-model="q.name" @on-enter="query" placeholder="名称"/>
- </i-col>
- <i-button @click="query">查询</i-button>
- <i-button @click="reloadSearch">重置</i-button>
- </div>
- <div class="buttons-group">
- $save
- <i-button type="info" @click="add"><i class="fa fa-plus"></i> 新增</i-button>
- $end
- $update
- <i-button type="warning" @click="update"><i class="fa fa-pencil-square-o"></i> 修改</i-button>
- $end
- $delete
- <i-button type="error" @click="del"><i class="fa fa-trash-o"></i> 删除</i-button>
- $end
- </div>
- </Row>
- <table id="jqGrid"></table>
- <div id="jqGridPager"></div>
- </div>
- <Card v-show="!showList">
- <p slot="title">{{title}}</p>
- <i-form ref="formValidate" :model="${classname}" :rules="ruleValidate" :label-width="80">
- #foreach($column in $columns)
- #if($column.columnName != $pk.columnName)
- <Form-item label="${column.comments}" prop="${column.attrname}">
- <i-input v-model="${classname}.${column.attrname}" placeholder="${column.comments}"/>
- </Form-item>
- #end
- #end
- <Form-item>
- <i-button type="primary" @click="handleSubmit('formValidate')">提交</i-button>
- <i-button type="warning" @click="reload" style="margin-left: 8px"/>返回</i-button>
- <i-button type="ghost" @click="handleReset('formValidate')" style="margin-left: 8px">重置</i-button>
- </Form-item>
- </i-form>
- </Card>
- </div>
- <script src="${rc.contextPath}/js/shop/${pathName}.js?_${date.systemTime}"></script>
- </body>
- </html>
|