tb-item-list.html 6.4 KB

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