tb-costomer-list.html 7.3 KB

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