tb-order-after-sale-list.html 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>售后申请表,并关联一级市场订单-列表</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
  7. <!-- 所有的 css & js 资源 -->
  8. <link rel="stylesheet" href="../../static/kj/element-ui/theme-chalk/index.css">
  9. <link rel="stylesheet" href="../../static/sa.css">
  10. <script src="../../static/kj/vue.min.js"></script>
  11. <script src="../../static/kj/element-ui/index.js"></script>
  12. <script src="../../static/kj/httpVueLoader.js"></script>
  13. <script src="../../static/kj/jquery.min.js"></script>
  14. <script src="../../static/kj/layer/layer.js"></script>
  15. <script src="../../static/sa.js"></script>
  16. </head>
  17. <body>
  18. <div class="vue-box" style="display: none;" :style="'display: block;'">
  19. <div class="c-panel">
  20. <!-- ------------- 检索参数 ------------- -->
  21. <!-- <div class="c-title">检索参数</div> -->
  22. <el-form ref="form" :model='p' @submit.native.prevent>
  23. <sa-item type="text" name="申请类型" v-model="p.applyType"></sa-item>
  24. <sa-item type="text" name="货物名称" v-model="p.goodsName"></sa-item>
  25. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  26. <el-button icon="el-icon-refresh" type="info" @click="sa.f5()">重置</el-button>
  27. </el-form>
  28. <div class="fast-btn">
  29. <el-button v-if="sa.isAuth('tb-order-after-sale-add')" size="mini" type="primary" @click="add()">新增</el-button>
  30. <el-button size="mini" type="success" @click="getBySelect()">查看</el-button>
  31. </div>
  32. <!-- ------------- 数据列表 ------------- -->
  33. <el-table class="data-table" ref="data-table" :data="dataList" >
  34. <sa-td type="selection"></sa-td>
  35. <sa-td name="售后发起人电话" prop="userPhone" ></sa-td>
  36. <sa-td name="发起售后时间" prop="time" ></sa-td>
  37. <sa-td name="申请类型" prop="applyType" ></sa-td>
  38. <sa-td name="发起售后原因" prop="remark" ></sa-td>
  39. <sa-td name="售后状态" prop="afterSaleStatus" ></sa-td>
  40. <sa-td name="货物图片" prop="goodsImg" ></sa-td>
  41. <sa-td name="货物名称" prop="goodsName" ></sa-td>
  42. <sa-td name="货物数量" prop="goodsNum" ></sa-td>
  43. <el-table-column label="操作" fixed="right" width="240px">
  44. <template slot-scope="s">
  45. <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>
  46. <el-button v-if="sa.isAuth('tb-order-after-sale-edit')" class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
  47. <el-button v-if="sa.isAuth('tb-order-after-sale-del')" class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</el-button>
  48. </template>
  49. </el-table-column>
  50. </el-table>
  51. <!-- ------------- 分页 ------------- -->
  52. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  53. </div>
  54. </div>
  55. <script>
  56. var app = new Vue({
  57. components: {
  58. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  59. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  60. },
  61. el: '.vue-box',
  62. data: {
  63. p: { // 查询参数
  64. id: '', // 售后申请表主键id
  65. orderId: '', // 订单表主键
  66. userId: '', // 发起售后人的ID
  67. userPhone: '', // 售后发起人电话
  68. time: '', // 发起售后时间
  69. applyType: '', // 申请类型
  70. remark: '', // 发起售后原因
  71. afterSaleStatus: '', // 售后状态
  72. goodsImg: '', // 货物图片
  73. goodsName: '', // 货物名称
  74. goodsNum: '', // 货物数量
  75. pageNo: 1, // 当前页
  76. pageSize: 10, // 页大小
  77. sortType: 0 // 排序方式
  78. },
  79. dataCount: 0,
  80. dataList: [], // 数据集合
  81. },
  82. methods: {
  83. // 刷新
  84. f5: function() {
  85. sa.ajax('/TbOrderAfterSale/getList', sa.removeNull(this.p), function(res) {
  86. this.dataList = res.data; // 数据
  87. this.dataCount = res.dataCount; // 数据总数
  88. sa.f5TableHeight(); // 刷新表格高度
  89. }.bind(this));
  90. },
  91. // 查看
  92. get: function(data) {
  93. sa.showIframe('数据详情', 'tb-order-after-sale-info.html?id=' + data.id, '1050px', '90%');
  94. },
  95. // 查看 - 根据选中的
  96. getBySelect: function(data) {
  97. var selection = this.$refs['data-table'].selection;
  98. if(selection.length == 0) {
  99. return sa.msg('请选择一条数据')
  100. }
  101. this.get(selection[0]);
  102. },
  103. // 修改
  104. update: function(data) {
  105. sa.showIframe('修改数据', 'tb-order-after-sale-add.html?id=' + data.id, '1000px', '90%');
  106. },
  107. // 新增
  108. add: function(data) {
  109. sa.showIframe('新增数据', 'tb-order-after-sale-add.html?id=-1', '1000px', '90%');
  110. },
  111. // 删除
  112. del: function(data) {
  113. sa.confirm('是否删除,此操作不可撤销', function() {
  114. sa.ajax('/TbOrderAfterSale/delete?id=' + data.id, function(res) {
  115. sa.arrayDelete(this.dataList, data);
  116. sa.ok('删除成功');
  117. sa.f5TableHeight(); // 刷新表格高度
  118. }.bind(this))
  119. }.bind(this));
  120. },
  121. // 批量删除
  122. deleteByIds: function() {
  123. // 获取选中元素的id列表
  124. let selection = this.$refs['data-table'].selection;
  125. let ids = sa.getArrayField(selection, 'id');
  126. if(selection.length == 0) {
  127. return sa.msg('请至少选择一条数据')
  128. }
  129. // 提交删除
  130. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  131. sa.ajax('/TbOrderAfterSale/deleteByIds', {ids: ids.join(',')}, function(res) {
  132. sa.arrayDelete(this.dataList, selection);
  133. sa.ok('删除成功');
  134. sa.f5TableHeight(); // 刷新表格高度
  135. }.bind(this))
  136. }.bind(this));
  137. },
  138. },
  139. created: function() {
  140. this.f5();
  141. sa.onInputEnter();
  142. }
  143. })
  144. </script>
  145. </body>
  146. </html>