123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>价格过低预警表</title>
- #parse("sys/header.html")
- </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">
- #if($shiro.hasPermission("mall2lowpricewarning:save"))
- <i-button type="info" @click="add"><i class="fa fa-plus"></i> 新增</i-button>
- #end
- #if($shiro.hasPermission("mall2lowpricewarning:update"))
- <i-button type="warning" @click="update"><i class="fa fa-pencil-square-o"></i> 修改</i-button>
- #end
- #if($shiro.hasPermission("mall2lowpricewarning: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="mall2LowPriceWarning" :rules="ruleValidate" :label-width="80">
- <Form-item label="销售价格" prop="salePrice">
- <i-input v-model="mall2LowPriceWarning.salePrice" placeholder="销售价格"/>
- </Form-item>
- <Form-item label="预警价格" prop="warningPrice">
- <i-input v-model="mall2LowPriceWarning.warningPrice" placeholder="预警价格"/>
- </Form-item>
- <Form-item label="预警类别 00.底线价 10.活动价" prop="warningType">
- <i-input v-model="mall2LowPriceWarning.warningType" placeholder="预警类别 00.底线价 10.活动价"/>
- </Form-item>
- <Form-item label="产品sku" prop="sku">
- <i-input v-model="mall2LowPriceWarning.sku" placeholder="产品sku"/>
- </Form-item>
- <Form-item label="门店id" prop="storeId">
- <i-input v-model="mall2LowPriceWarning.storeId" placeholder="门店id"/>
- </Form-item>
- <Form-item label="活动id" prop="activityId">
- <i-input v-model="mall2LowPriceWarning.activityId" placeholder="活动id"/>
- </Form-item>
- <Form-item label="是否已查看" prop="viewed">
- <i-input v-model="mall2LowPriceWarning.viewed" placeholder="是否已查看 0.否 1.是"/>
- </Form-item>
- <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/alarm/mall2lowpricewarning.js?_${date.systemTime}"></script>
- </body>
- </html>
|