1
0

mall2lowpricewarning.html 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. #if($shiro.hasPermission("mall2lowpricewarning:save"))
  20. <i-button type="info" @click="add"><i class="fa fa-plus"></i>&nbsp;新增</i-button>
  21. #end
  22. #if($shiro.hasPermission("mall2lowpricewarning:update"))
  23. <i-button type="warning" @click="update"><i class="fa fa-pencil-square-o"></i>&nbsp;修改</i-button>
  24. #end
  25. #if($shiro.hasPermission("mall2lowpricewarning:delete"))
  26. <i-button type="error" @click="del"><i class="fa fa-trash-o"></i>&nbsp;删除</i-button>
  27. #end
  28. </div>
  29. </Row>
  30. <table id="jqGrid"></table>
  31. <div id="jqGridPager"></div>
  32. </div>
  33. <Card v-show="!showList">
  34. <p slot="title">{{title}}</p>
  35. <i-form ref="formValidate" :model="mall2LowPriceWarning" :rules="ruleValidate" :label-width="80">
  36. <Form-item label="销售价格" prop="salePrice">
  37. <i-input v-model="mall2LowPriceWarning.salePrice" placeholder="销售价格"/>
  38. </Form-item>
  39. <Form-item label="预警价格" prop="warningPrice">
  40. <i-input v-model="mall2LowPriceWarning.warningPrice" placeholder="预警价格"/>
  41. </Form-item>
  42. <Form-item label="预警类别 00.底线价 10.活动价" prop="warningType">
  43. <i-input v-model="mall2LowPriceWarning.warningType" placeholder="预警类别 00.底线价 10.活动价"/>
  44. </Form-item>
  45. <Form-item label="产品sku" prop="sku">
  46. <i-input v-model="mall2LowPriceWarning.sku" placeholder="产品sku"/>
  47. </Form-item>
  48. <Form-item label="门店id" prop="storeId">
  49. <i-input v-model="mall2LowPriceWarning.storeId" placeholder="门店id"/>
  50. </Form-item>
  51. <Form-item label="活动id" prop="activityId">
  52. <i-input v-model="mall2LowPriceWarning.activityId" placeholder="活动id"/>
  53. </Form-item>
  54. <Form-item label="是否已查看" prop="viewed">
  55. <i-input v-model="mall2LowPriceWarning.viewed" placeholder="是否已查看 0.否 1.是"/>
  56. </Form-item>
  57. <Form-item>
  58. <i-button type="primary" @click="handleSubmit('formValidate')">提交</i-button>
  59. <i-button type="warning" @click="reload" style="margin-left: 8px"/>返回</i-button>
  60. <i-button type="ghost" @click="handleReset('formValidate')" style="margin-left: 8px">重置</i-button>
  61. </Form-item>
  62. </i-form>
  63. </Card>
  64. </div>
  65. <script src="${rc.contextPath}/js/alarm/mall2lowpricewarning.js?_${date.systemTime}"></script>
  66. </body>
  67. </html>