tb-costomer-maintain.html 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  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.name"></sa-item>
  24. <sa-item type="text" name="联系电话" v-model="p.phone"></sa-item>
  25. <sa-item type="text" name="联系人" v-model="p.dutyPeople"></sa-item>
  26. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  27. <br />
  28. </el-form>
  29. <el-button type="info" icon="el-icon-refresh" @click="sa.f5()">重置</el-button>
  30. <!-- ------------- 数据列表 ------------- -->
  31. <el-table class="data-table" ref="data-table" :data="dataList" >
  32. <sa-td type="selection"></sa-td>
  33. <sa-td name="企业名称" prop="name"></sa-td>
  34. <sa-td name="联系人" prop="dutyPeople"></sa-td>
  35. <sa-td name="联系电话" prop="phone"></sa-td>
  36. <sa-td name="结算类型" prop="payType" type="enum" :jv="{1: '现结', 2: '月结'}"></sa-td>
  37. <!-- <sa-td name="地址" prop="addressStr" ></sa-td> -->
  38. <sa-td name="营业执照" prop="businessLicence" type="img"></sa-td>
  39. <sa-td name="状态" prop="status" type="switch" :jv="{0: '禁用[#ff0000]', 1: '启用[#005500]'}"
  40. @change="s => updateStatus(s.row)"></sa-td>
  41. <!-- <sa-td name="创建时间" prop="creareTime"></sa-td>-->
  42. <sa-td name="审核状态" prop="judgeStatus" type="enum" :jv="{1: '未审核', 2: '已通过', 3: '不通过'}"></sa-td>
  43. <sa-td name="审核时间" prop="judgeTime" width="160px"></sa-td>
  44. <el-table-column label="操作" fixed="right" width="280px">
  45. <template slot-scope="s">
  46. <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看</el-button>
  47. <el-button v-if="sa.isAuth('tb-costomer-maintain-edit')" class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改</el-button>
  48. <el-button v-if="sa.isAuth('tb-costomer-maintain-user')" class="c-btn" type="primary" icon="el-icon-user-solid" @click="userFn(s.row)">用户</el-button>
  49. </template>
  50. </el-table-column>
  51. </el-table>
  52. <!-- ------------- 分页 ------------- -->
  53. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()"></sa-item>
  54. </div>
  55. </div>
  56. <script>
  57. var app = new Vue({
  58. components: {
  59. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  60. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  61. },
  62. el: '.vue-box',
  63. data: {
  64. p: { // 查询参数
  65. id: '', // 主键
  66. name: '', // 名称
  67. phone: '', // 联系号码
  68. dutyPeople: '', // 负责人
  69. addressIds: '', // 地址id
  70. addressStr: '', // 地址
  71. status: '', // 状态(0=否,1=是)
  72. creareTime: '', // 创建时间
  73. judgeStatus: '', // 审核状态(1=未审核,2审核通过,3审核不通过)
  74. judgeTime: '', // 审核时间
  75. judgeContent: '', // 审核意见
  76. pageNo: 1, // 当前页
  77. pageSize: 10, // 页大小
  78. sortType: 0 // 排序方式
  79. },
  80. dataCount: 0,
  81. dataList: [], // 数据集合
  82. currentCustomerId:'1',
  83. },
  84. methods: {
  85. getCustomer(){
  86. sa.ajax('/TbCostomer/getCurrentCustomerId', function(resp) {
  87. this.currentCustomerId=resp.data;
  88. }.bind(this));
  89. },
  90. userFn(data){
  91. sa.showIframe('企业用户', 'customer-admin-list.html?customerId=' + data.id, '1050px', '90%');
  92. },
  93. // 刷新
  94. f5: function() {
  95. sa.ajax('/TbCostomer/getOwnList', sa.removeNull(this.p), function(res) {
  96. this.dataList = res.data; // 数据
  97. this.dataCount = res.dataCount; // 数据总数
  98. sa.f5TableHeight(); // 刷新表格高度
  99. }.bind(this));
  100. },
  101. // 查看
  102. get: function(data) {
  103. sa.showIframe('数据详情', 'tb-costomer-info.html?id=' + data.id, '800px', '80%');
  104. },
  105. // 查看 - 根据选中的
  106. getBySelect: function(data) {
  107. var selection = this.$refs['data-table'].selection;
  108. if(selection.length == 0) {
  109. return sa.msg('请选择一条数据')
  110. }
  111. this.get(selection[0]);
  112. },
  113. // 修改
  114. update: function(data) {
  115. sa.showIframe('修改数据', 'tb-costomer-add.html?id=' + data.id, '500px', '70%');
  116. },
  117. // 新增
  118. add: function(data) {
  119. sa.showIframe('新增数据', 'tb-costomer-add.html?id=-1', '550px', '80%');
  120. },
  121. // 删除
  122. del: function(data) {
  123. sa.confirm('是否删除,此操作不可撤销', function() {
  124. sa.ajax('/TbCostomer/delete?id=' + data.id, function(res) {
  125. sa.arrayDelete(this.dataList, data);
  126. sa.ok('删除成功');
  127. sa.f5TableHeight(); // 刷新表格高度
  128. }.bind(this))
  129. }.bind(this));
  130. },
  131. // 批量删除
  132. deleteByIds: function() {
  133. // 获取选中元素的id列表
  134. let selection = this.$refs['data-table'].selection;
  135. let ids = sa.getArrayField(selection, 'id');
  136. if(selection.length == 0) {
  137. return sa.msg('请至少选择一条数据')
  138. }
  139. // 提交删除
  140. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  141. sa.ajax('/TbCostomer/deleteByIds', {ids: ids.join(',')}, function(res) {
  142. sa.arrayDelete(this.dataList, selection);
  143. sa.ok('删除成功');
  144. sa.f5TableHeight(); // 刷新表格高度
  145. }.bind(this))
  146. }.bind(this));
  147. },
  148. // 改 - 状态(0=否,1=是)
  149. updateStatus: function(data) {
  150. // 声明变量记录是否成功
  151. var isOk = false;
  152. var oldValue = data.status;
  153. var ajax = sa.ajax('/TbCostomer/updateStatus', {id: data.id, value: data.status}, function(res) {
  154. isOk = true;
  155. sa.msg('修改成功');
  156. }.bind(this));
  157. // 如果未能修改成功, 则回滚
  158. $.when(ajax).done(function() {
  159. if(isOk == false) {
  160. data.status = oldValue;
  161. }
  162. })
  163. },
  164. },
  165. created: function() {
  166. this.f5();
  167. this.getCustomer();
  168. sa.onInputEnter();
  169. }
  170. })
  171. </script>
  172. </body>
  173. </html>