tb-entity-list.html 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  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="https://unpkg.com/element-ui@2.13.0/lib/theme-chalk/index.css">
  9. <link rel="stylesheet" href="../../static/sa.css">
  10. <script src="https://unpkg.com/vue@2.6.10/dist/vue.js"></script>
  11. <script src="https://unpkg.com/element-ui@2.13.0/lib/index.js"></script>
  12. <script src="https://unpkg.com/http-vue-loader@1.4.2/src/httpVueLoader.js"></script>
  13. <script src="https://unpkg.com/jquery@3.4.1/dist/jquery.js"></script>
  14. <script src="https://www.layuicdn.com/layer-v3.1.1/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.name"></sa-item>
  24. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  25. <br />
  26. </el-form>
  27. <!-- ------------- 快捷按钮 ------------- -->
  28. <sa-item type="fast-btn" show="add,reset"></sa-item>
  29. <!-- ------------- 数据列表 ------------- -->
  30. <el-table class="data-table" ref="data-table" :data="dataList" >
  31. <!-- <sa-td type="selection"></sa-td>-->
  32. <!-- <sa-td name="主键" prop="id" ></sa-td>-->
  33. <!-- <sa-td name="客户id" prop="customerId" ></sa-td>-->
  34. <sa-td name="企业名称" prop="name" ></sa-td>
  35. <sa-td name="税号" prop="taxIdNo" ></sa-td>
  36. <sa-td name="地址" prop="address" ></sa-td>
  37. <sa-td name="电话" prop="phone" ></sa-td>
  38. <sa-td name="开户银行" prop="bank" ></sa-td>
  39. <sa-td name="银行账号" prop="bankNo" ></sa-td>
  40. <sa-td name="邮箱" prop="email" ></sa-td>
  41. <!-- <sa-td name="创建时间" prop="createTime" ></sa-td>-->
  42. <!-- <sa-td name="更新时间" prop="updateTime" ></sa-td>-->
  43. <el-table-column label="操作" 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 class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
  47. <el-button 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: '', // 主键
  65. customerId: '', // 客户id
  66. name: '', // 企业名称
  67. taxIdNo: '', // 税号
  68. address: '', // 地址
  69. phone: '', // 电话
  70. bank: '', // 开户银行
  71. bankNo: '', // 银行账号
  72. email: '', // 邮箱
  73. createTime: '', // 创建时间
  74. updateTime: '', // 更新时间
  75. pageNo: 1, // 当前页
  76. pageSize: 10, // 页大小
  77. sortType: 0 // 排序方式
  78. },
  79. dataCount: 0,
  80. dataList: [], // 数据集合
  81. currentCustomerId: '1',
  82. },
  83. methods: {
  84. getCustomer() {
  85. sa.ajax('/TbCostomer/getCurrentCustomerId', function(resp) {
  86. this.currentCustomerId = resp.data;
  87. }.bind(this));
  88. },
  89. // 刷新
  90. f5: function() {
  91. sa.ajax('/TbEntity/getList', sa.removeNull(this.p), function(res) {
  92. this.dataList = res.data; // 数据
  93. this.dataCount = res.dataCount; // 数据总数
  94. sa.f5TableHeight(); // 刷新表格高度
  95. }.bind(this));
  96. },
  97. // 查看
  98. get: function(data) {
  99. sa.showIframe('数据详情', 'tb-entity-info.html?id=' + data.id, '1050px', '90%');
  100. },
  101. // 查看 - 根据选中的
  102. getBySelect: function(data) {
  103. var selection = this.$refs['data-table'].selection;
  104. if(selection.length == 0) {
  105. return sa.msg('请选择一条数据')
  106. }
  107. this.get(selection[0]);
  108. },
  109. // 修改
  110. update: function(data) {
  111. sa.showIframe('修改数据', 'tb-entity-add.html?id=' + data.id, '550px', '80%');
  112. },
  113. // 新增
  114. add: function(data) {
  115. sa.showIframe('新增数据', 'tb-entity-add.html?id=-1&customerId=' + this.currentCustomerId, '550px', '80%');
  116. },
  117. // 删除
  118. del: function(data) {
  119. sa.confirm('是否删除,此操作不可撤销', function() {
  120. sa.ajax('/TbEntity/delete?id=' + data.id, function(res) {
  121. sa.arrayDelete(this.dataList, data);
  122. sa.ok('删除成功');
  123. sa.f5TableHeight(); // 刷新表格高度
  124. }.bind(this))
  125. }.bind(this));
  126. },
  127. // 批量删除
  128. deleteByIds: function() {
  129. // 获取选中元素的id列表
  130. let selection = this.$refs['data-table'].selection;
  131. let ids = sa.getArrayField(selection, 'id');
  132. if(selection.length == 0) {
  133. return sa.msg('请至少选择一条数据')
  134. }
  135. // 提交删除
  136. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  137. sa.ajax('/TbEntity/deleteByIds', {ids: ids.join(',')}, function(res) {
  138. sa.arrayDelete(this.dataList, selection);
  139. sa.ok('删除成功');
  140. sa.f5TableHeight(); // 刷新表格高度
  141. }.bind(this))
  142. }.bind(this));
  143. },
  144. },
  145. created: function() {
  146. this.f5();
  147. this.getCustomer();
  148. sa.onInputEnter();
  149. }
  150. })
  151. </script>
  152. </body>
  153. </html>