ordercomparederror.html 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. #parse("sys/header.html")
  6. </head>
  7. <body>
  8. <div id="rrapp" v-cloak>
  9. <div v-show="showList">
  10. <Row :gutter="16">
  11. <div class="search-group">
  12. <i-col span="4">
  13. <i-input v-model="q.name" @on-enter="query" placeholder="名称"/>
  14. </i-col>
  15. <i-button @click="query">查询</i-button>
  16. <i-button @click="reloadSearch">重置</i-button>
  17. </div>
  18. <div class="buttons-group">
  19. <i-button type="info" @click="reduce"><i class="fa fa-plus"></i>&nbsp;kmall调减</i-button>
  20. </div>
  21. </Row>
  22. <table id="jqGrid"></table>
  23. <div id="jqGridPager"></div>
  24. </div>
  25. <Card v-show="!showList">
  26. <p slot="title">{{title}}</p>
  27. <i-form ref="formValidate" :model="orderComparedError" :rules="ruleValidate" :label-width="80">
  28. <Form-item label="" prop="merchOrderSn">
  29. <i-input v-model="orderComparedError.merchOrderSn" placeholder=""/>
  30. </Form-item>
  31. <Form-item label="" prop="orderAmount">
  32. <i-input v-model="orderComparedError.orderAmount" placeholder=""/>
  33. </Form-item>
  34. <Form-item label="" prop="orderSource">
  35. <i-input v-model="orderComparedError.orderSource" placeholder=""/>
  36. </Form-item>
  37. <Form-item label="" prop="createTime">
  38. <i-input v-model="orderComparedError.createTime" placeholder=""/>
  39. </Form-item>
  40. <Form-item>
  41. <i-button type="primary" @click="handleSubmit('formValidate')">提交</i-button>
  42. <i-button type="warning" @click="reload" style="margin-left: 8px"/>返回</i-button>
  43. <i-button type="ghost" @click="handleReset('formValidate')" style="margin-left: 8px">重置</i-button>
  44. </Form-item>
  45. </i-form>
  46. </Card>
  47. </div>
  48. <script src="${rc.contextPath}/js/compared/ordercomparederror.js?_${date.systemTime}"></script>
  49. </body>
  50. </html>