tb-item-list.html 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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.itemCode"></sa-item>
  24. <sa-item type="text" name="项目名称" v-model="p.itemName"></sa-item>
  25. <div class="c-item">
  26. <label class="c-label">项目类型:</label>
  27. <el-select v-model="p.typeId" style="width: 120px;" placeholder="请选择">
  28. <el-option
  29. v-for="type in itemTypeList"
  30. :key="type.id"
  31. :label="type.name"
  32. :value="type.id">
  33. </el-option>
  34. </el-select>
  35. </div>
  36. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  37. <br />
  38. </el-form>
  39. <!-- ------------- 快捷按钮 ------------- -->
  40. <sa-item type="fast-btn" show="add,delete,reset"></sa-item>
  41. <!-- ------------- 数据列表 ------------- -->
  42. <el-table class="data-table" ref="data-table" :data="dataList" >
  43. <sa-td type="selection"></sa-td>
  44. <sa-td name="项目编号" prop="itemCode" ></sa-td>
  45. <sa-td name="项目类型" prop="typeName" ></sa-td>
  46. <sa-td name="项目名称" prop="itemName" width="300px" ></sa-td>
  47. <sa-td name="项目金额(元)" prop="price" ></sa-td>
  48. <sa-td name="单位" prop="unit" ></sa-td>
  49. <!-- <sa-td name="状态" prop="status" type="switch" :jv="{0: '禁用[#ff0000]', 1: '启用[#005500]'}"-->
  50. <!-- @change="s => updateStatus(s.row)"></sa-td>-->
  51. <el-table-column label="操作" fixed="right" width="240px">
  52. <template slot-scope="s">
  53. <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>
  54. <el-button class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
  55. <el-button class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</el-button>
  56. </template>
  57. </el-table-column>
  58. </el-table>
  59. <!-- ------------- 分页 ------------- -->
  60. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  61. </div>
  62. </div>
  63. <script>
  64. var app = new Vue({
  65. components: {
  66. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  67. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  68. },
  69. el: '.vue-box',
  70. data: {
  71. p: { // 查询参数
  72. id: '', // 主键
  73. typeId: '', //类型id
  74. itemCode: '', // 项目编号
  75. itemName: '', // 项目名称
  76. price: '', // 项目金额(元)
  77. pageNo: 1, // 当前页
  78. pageSize: 10, // 页大小
  79. sortType: 0 // 排序方式
  80. },
  81. dataCount: 0,
  82. dataList: [], // 数据集合
  83. itemTypeList: [],
  84. },
  85. methods: {
  86. // 刷新
  87. f5: function() {
  88. sa.ajax('/TbItem/getList', sa.removeNull(this.p), function(res) {
  89. this.dataList = res.data; // 数据
  90. this.dataCount = res.dataCount; // 数据总数
  91. sa.f5TableHeight(); // 刷新表格高度
  92. }.bind(this));
  93. },
  94. getItemTypeList(){
  95. sa.ajax('/TbItemType/getList', function(resp) {
  96. this.itemTypeList = resp.data;
  97. }.bind(this));
  98. },
  99. // 查看
  100. get: function(data) {
  101. sa.showIframe('数据详情', 'tb-item-info.html?id=' + data.id, '600px', '60%');
  102. },
  103. // 查看 - 根据选中的
  104. getBySelect: function(data) {
  105. var selection = this.$refs['data-table'].selection;
  106. if(selection.length == 0) {
  107. return sa.msg('请选择一条数据')
  108. }
  109. this.get(selection[0]);
  110. },
  111. // 修改
  112. update: function(data) {
  113. sa.showIframe('修改数据', 'tb-item-add.html?id=' + data.id, '800px', '70%');
  114. },
  115. // 新增
  116. add: function(data) {
  117. sa.showIframe('新增数据', 'tb-item-add.html?id=-1', '800px', '70%');
  118. },
  119. // 删除
  120. del: function(data) {
  121. sa.confirm('是否删除,此操作不可撤销', function() {
  122. sa.ajax('/TbItem/delete?id=' + data.id, function(res) {
  123. sa.arrayDelete(this.dataList, data);
  124. sa.ok('删除成功');
  125. sa.f5TableHeight(); // 刷新表格高度
  126. }.bind(this))
  127. }.bind(this));
  128. },
  129. // 批量删除
  130. deleteByIds: function() {
  131. // 获取选中元素的id列表
  132. let selection = this.$refs['data-table'].selection;
  133. let ids = sa.getArrayField(selection, 'id');
  134. if(selection.length == 0) {
  135. return sa.msg('请至少选择一条数据')
  136. }
  137. // 提交删除
  138. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  139. sa.ajax('/TbItem/deleteByIds', {ids: ids.join(',')}, function(res) {
  140. sa.arrayDelete(this.dataList, selection);
  141. sa.ok('删除成功');
  142. sa.f5TableHeight(); // 刷新表格高度
  143. }.bind(this))
  144. }.bind(this));
  145. },
  146. // 改 - 状态(0=否,1=是)
  147. updateStatus: function(data) {
  148. // 声明变量记录是否成功
  149. var isOk = false;
  150. var oldValue = data.status;
  151. var ajax = sa.ajax('/TbItem/updateStatus', {
  152. id: data.id,
  153. value: data.status
  154. }, function(res) {
  155. isOk = true;
  156. sa.msg('修改成功');
  157. }.bind(this));
  158. // 如果未能修改成功, 则回滚
  159. $.when(ajax).done(function() {
  160. if (isOk == false) {
  161. data.status = oldValue;
  162. }
  163. })
  164. },
  165. },
  166. created: function() {
  167. this.f5();
  168. this.getItemTypeList();
  169. sa.onInputEnter();
  170. }
  171. })
  172. </script>
  173. </body>
  174. </html>