Commit 59798d0d9bff59923126abd027b7e7ff81110b86

Authored by 王言钊
1 parent 730951d6

添加 审核 通过 拒绝 按钮

... ... @@ -191,6 +191,17 @@
191 191 <artifactId>guava</artifactId>
192 192 <version>27.0.1-jre</version>
193 193 </dependency>
  194 +
  195 + <dependency>
  196 + <groupId>com.alibaba</groupId>
  197 + <artifactId>easyexcel</artifactId>
  198 + <version>3.0.5</version>
  199 + </dependency>
  200 + <dependency>
  201 + <groupId>org.projectlombok</groupId>
  202 + <artifactId>lombok</artifactId>
  203 + <optional>true</optional>
  204 + </dependency>
194 205 </dependencies>
195 206  
196 207 <build>
... ...
src/main/resources/templates/page/liveDetail.html
... ... @@ -240,15 +240,15 @@
240 240  
241 241  
242 242 <div class="box-footer">
243   -<!-- <div class="col-sm-5"> -->
244   -<!-- <button type="button" class="btn btn-danger pull-right" onclick="live(2);">拒 绝 -->
245   -<!-- </button> -->
246   -<!-- </div> -->
247   -
248   -<!-- <div class="col-sm-1" style="margin-right:26px;"> -->
249   -<!-- <button type="button" class="btn btn-primary pull-right" onclick="live(1);">通 过 -->
250   -<!-- </button> -->
251   -<!-- </div> -->
  243 + <div class="col-sm-5">
  244 + <button type="button" class="btn btn-danger pull-right" onclick="live(2);">拒 绝
  245 + </button>
  246 + </div>
  247 +
  248 + <div class="col-sm-1" style="margin-right:26px;">
  249 + <button type="button" class="btn btn-primary pull-right" onclick="live(1);">通 过
  250 + </button>
  251 + </div>
252 252  
253 253 <div class="col-sm-6">
254 254 <button type="button" class="btn btn-info pull-right"
... ...