tb-cooperative-list.html 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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. <el-form ref="form" :model='p' @submit.native.prevent label-width="110px">
  22. <sa-item type="text" name="合作社名称" v-model="p.name" width="9rem"></sa-item>
  23. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  24. <el-button v-if="sa.isAuth('tb-cooperative-add')" size="mini" type="primary" @click="add()">新增</el-button>
  25. <el-button size="mini" type="info" @click="sa.f5()">重置</el-button>
  26. </el-form>
  27. <!-- ------------- 数据列表 ------------- -->
  28. <el-table class="data-table" ref="data-table" :data="dataList" >
  29. <sa-td type="index" name="序号"></sa-td>
  30. <sa-td name="名称" prop="orgName"></sa-td>
  31. <sa-td name="税号" prop="orgSccd"></sa-td>
  32. <sa-td name="法人" prop="correpName"></sa-td>
  33. <sa-td name="手机号码" prop="correpTel" width="100px" ></sa-td>
  34. <sa-td name="银行名称" prop="bankName"></sa-td>
  35. <sa-td name="银行账号" prop="bankAccount"></sa-td>
  36. <sa-td name="创建时间" width="160px" prop="createTime"></sa-td>
  37. <sa-td label="操作" fixed="right" width="240px">
  38. <template slot-scope="s" style="line-height: 0px;">
  39. <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>
  40. <el-button v-if="sa.isAuth('tb-cooperative-edit')" class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
  41. <el-button v-if="sa.isAuth('tb-cooperative-del')" class="c-btn" type="danger" icon="el-icon-delete" @click="del(s.row)">删除</el-button>
  42. </template>
  43. </sa-td>
  44. </el-table>
  45. <!-- ------------- 分页 ------------- -->
  46. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  47. </div>
  48. </div>
  49. <script>
  50. var app = new Vue({
  51. components: {
  52. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  53. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  54. },
  55. el: '.vue-box',
  56. data: {
  57. p: { // 查询参数
  58. name: '', // 名称
  59. pageNo: 1, // 当前页
  60. pageSize: 10, // 页大小
  61. sortType: 0 // 排序方式
  62. },
  63. dataCount: 0,
  64. dataList: [], // 数据集合
  65. },
  66. methods: {
  67. // 刷新
  68. f5: function() {
  69. sa.ajax('/level-one-server/TbCooperative/getList', sa.removeNull(this.p), function(res) {
  70. this.dataList = res.data; // 数据
  71. this.dataCount = res.dataCount; // 数据总数
  72. sa.f5TableHeight(); // 刷新表格高度
  73. }.bind(this));
  74. },
  75. // 查看
  76. get: function(data) {
  77. sa.showIframe('数据详情', 'tb-cooperative-info.html?id=' + data.id, '1080px', '600px');
  78. },
  79. // 查看 - 根据选中的
  80. getBySelect: function(data) {
  81. var selection = this.$refs['data-table'].selection;
  82. if(selection.length == 0) {
  83. return sa.msg('请选择一条数据')
  84. }
  85. this.get(selection[0]);
  86. },
  87. // 修改
  88. update: function(data) {
  89. sa.showIframe('修改数据', 'tb-cooperative-add.html?id=' + data.id, '700px', '600px');
  90. },
  91. // 新增
  92. add: function(data) {
  93. sa.showIframe('新增数据', 'tb-cooperative-add.html?id=-1', '700px', '600px');
  94. },
  95. // 删除
  96. del: function(data) {
  97. sa.confirm('是否删除,此操作不可撤销', function() {
  98. sa.ajax('/level-one-server/TbCooperative/delete?id=' + data.id, function(res) {
  99. sa.arrayDelete(this.dataList, data);
  100. sa.ok('删除成功');
  101. sa.f5TableHeight(); // 刷新表格高度
  102. }.bind(this))
  103. }.bind(this));
  104. },
  105. // 批量删除
  106. deleteByIds: function() {
  107. // 获取选中元素的id列表
  108. let selection = this.$refs['data-table'].selection;
  109. let ids = sa.getArrayField(selection, 'id');
  110. if(selection.length == 0) {
  111. return sa.msg('请至少选择一条数据')
  112. }
  113. // 提交删除
  114. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  115. sa.ajax('/level-one-server/TbCooperative/deleteByIds', {ids: ids.join(',')}, function(res) {
  116. sa.arrayDelete(this.dataList, selection);
  117. sa.ok('删除成功');
  118. sa.f5TableHeight(); // 刷新表格高度
  119. }.bind(this))
  120. }.bind(this));
  121. },
  122. // 改 - 删除状态(0=禁用,1=启用)
  123. updateDeleteStatus: function(data) {
  124. // 声明变量记录是否成功
  125. var isOk = false;
  126. var oldValue = data.deleteStatus;
  127. var ajax = sa.ajax('/level-one-server/TbCooperative/updateDeleteStatus', {id: data.id, value: data.deleteStatus}, function(res) {
  128. isOk = true;
  129. sa.msg('修改成功');
  130. }.bind(this));
  131. // 如果未能修改成功, 则回滚
  132. $.when(ajax).done(function() {
  133. if(isOk == false) {
  134. data.status = oldValue;
  135. }
  136. })
  137. },
  138. },
  139. created: function() {
  140. this.f5();
  141. sa.onInputEnter();
  142. }
  143. })
  144. </script>
  145. </body>
  146. </html>