本帖最后由 谷粒姐姐 于 2018-8-29 14:50 编辑
2.1.1 前端代码 (1)修改 goodsController.js ,新增保存的方法
(2)修改 goods_edit.html 调用 [AppleScript] 纯文本查看 复制代码 <button class="btn btn-primary" ng-click="save()"><i class="fa fa-save"></i> 保存
</button> 2.1 页面跳转 (1)由商品列表页跳转到商品编辑页 修改 goods.html 表格行的修改按钮 [AppleScript] 纯文本查看 复制代码 <a href="goods_edit.html#?id={{entity.id}}" class="btn bg-olive btn-xs">修改</a> (2)由商品编辑页跳转到商品列表 修改 goods_edit.html 的返回列表按钮 [AppleScript] 纯文本查看 复制代码 href="goods.html" class="btn btn-default">返回列表</
|