tb-people-tax-account-list.html 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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.businessName"></sa-item>
  24. <sa-item type="text" name="经营者" v-model="p.name"></sa-item>
  25. <sa-item type="text" name="经营状态" v-model="p.businessStatus" width="90px"></sa-item>
  26. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  27. <el-button size="mini" type="info" @click="sa.f5()">重置</el-button>
  28. <el-button v-if="sa.isAuth('tb-people-tax-account-add')" size="mini" type="primary" @click="add()">新增</el-button>
  29. </el-form>
  30. <!--<div class="fast-btn">
  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="businessName" width="200px"></sa-td>
  36. <sa-td name="社会统一信用代码" prop="dutyParagraph" width="200px"></sa-td>
  37. <sa-td name="经营者" prop="name" ></sa-td>
  38. <sa-td name="组成形式" prop="form" ></sa-td>
  39. <sa-td name="经营状态" prop="businessStatus" ></sa-td>
  40. <sa-td name="联系人" prop="contacts" ></sa-td>
  41. <sa-td name="联系电话" prop="phone" width="140px"></sa-td>
  42. <sa-td name="身份证" prop="idCard" width="180px"></sa-td>
  43. <sa-td name="开户行" prop="bankName" width="200px"></sa-td>
  44. <sa-td name="银行账号" prop="bankCode" width="200px"></sa-td>
  45. <!--<sa-td name="互市区" prop="tradeAreaName" ></sa-td>
  46. <sa-td name="开票商" prop="invoiceBusiness" ></sa-td>
  47. <sa-td name="开票人" prop="invoicePeople" ></sa-td>
  48. <sa-td name="收款人" prop="payee" ></sa-td>
  49. <sa-td name="复核人" prop="checker" ></sa-td>-->
  50. <sa-td name="创建时间" prop="createTime" width="140px"></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 v-if="sa.isAuth('tb-people-tax-account-edit')" class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
  55. <el-button v-if="sa.isAuth('tb-people-tax-account-del')" 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. businessName: '', // 个体户名称
  73. name: '', // 经营者(边民)
  74. businessStatus: '', // 经营状态
  75. tradeAreaName: '', // 互市区
  76. pageNo: 1, // 当前页
  77. pageSize: 10, // 页大小
  78. sortType: 0 // 排序方式
  79. },
  80. dataCount: 0,
  81. dataList: [], // 数据集合
  82. },
  83. methods: {
  84. // 刷新
  85. f5: function() {
  86. sa.ajax('/level-one-server/TbPeopleTaxAccount/getList', sa.removeNull(this.p), function(res) {
  87. this.dataList = res.data; // 数据
  88. this.dataCount = res.dataCount; // 数据总数
  89. sa.f5TableHeight(); // 刷新表格高度
  90. }.bind(this));
  91. },
  92. // 查看
  93. get: function(data) {
  94. sa.showIframe('数据详情', 'tb-people-tax-account-info.html?id=' + data.id, '1050px', '90%');
  95. },
  96. // 查看 - 根据选中的
  97. getBySelect: function(data) {
  98. var selection = this.$refs['data-table'].selection;
  99. if(selection.length == 0) {
  100. return sa.msg('请选择一条数据')
  101. }
  102. this.get(selection[0]);
  103. },
  104. // 修改
  105. update: function(data) {
  106. console.log("---id----="+data.id)
  107. sa.showIframe('修改数据', 'tb-people-tax-account-add.html?id=' + data.id, '1000px', '90%');
  108. },
  109. // 新增
  110. add: function(data) {
  111. sa.showIframe('边民列表', 'tb-people-choose.html?id=-1', '1200px', '97%');
  112. },
  113. // 删除
  114. del: function(data) {
  115. sa.confirm('是否删除,此操作不可撤销', function() {
  116. sa.ajax('/level-one-server/TbPeopleTaxAccount/delete?id=' + data.id, function(res) {
  117. sa.arrayDelete(this.dataList, data);
  118. sa.ok('删除成功');
  119. sa.f5TableHeight(); // 刷新表格高度
  120. }.bind(this))
  121. }.bind(this));
  122. },
  123. // 批量删除
  124. deleteByIds: function() {
  125. // 获取选中元素的id列表
  126. let selection = this.$refs['data-table'].selection;
  127. let ids = sa.getArrayField(selection, 'id');
  128. if(selection.length == 0) {
  129. return sa.msg('请至少选择一条数据')
  130. }
  131. // 提交删除
  132. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  133. sa.ajax('/level-one-server/TbPeopleTaxAccount/deleteByIds', {ids: ids.join(',')}, function(res) {
  134. sa.arrayDelete(this.dataList, selection);
  135. sa.ok('删除成功');
  136. sa.f5TableHeight(); // 刷新表格高度
  137. }.bind(this))
  138. }.bind(this));
  139. },
  140. },
  141. created: function() {
  142. this.f5();
  143. sa.onInputEnter();
  144. }
  145. })
  146. </script>
  147. </body>
  148. </html>