tb-costomer-maintain.html 8.2 KB

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