tb-partner-list.html 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  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. <el-button style="display: inline;" type="primary" icon="el-icon-plus" @click="add()" v-if="currentCustomerId=='1'">新增
  29. </el-button>
  30. <el-button style="display: inline;" type="info" icon="el-icon-refresh" @click="sa.f5()">重置</el-button>
  31. </el-form>
  32. <!-- ------------- 数据列表 ------------- -->
  33. <el-table class="data-table" ref="data-table" :data="dataList">
  34. <sa-td type="selection"></sa-td>
  35. <sa-td name="名称" prop="name"></sa-td>
  36. <sa-td name="类型" prop="type" type="enum" :jv="{1: '消杀公司', 2: '装卸公司'}"></sa-td>
  37. <sa-td name="联系人" prop="dutyPeople"></sa-td>
  38. <sa-td name="联系电话" prop="phone"></sa-td>
  39. <sa-td name="营业执照" prop="businessLicence" type="img"></sa-td>
  40. <sa-td name="添加时间" prop="creareTime" width="160px"></sa-td>
  41. <el-table-column label="操作" fixed="right" width="320px">
  42. <template slot-scope="s">
  43. <el-button class="c-btn" type="success" icon="el-icon-view" @click="get(s.row)">查看
  44. </el-button>
  45. <el-button class="c-btn" type="primary" icon="el-icon-edit" @click="update(s.row)">修改
  46. </el-button>
  47. <el-button class="c-btn" type="primary" icon="el-icon-user-solid" @click="userFn(s.row)">用户
  48. </el-button>
  49. <!-- <el-button class="c-btn" type="primary" icon="el-icon-user-solid" v-if="s.row.judgeStatus==2" @click="accountFn(s.row)">账户
  50. </el-button> -->
  51. <el-button v=if="currentCustomerId==1" class="c-btn" type="danger" icon="el-icon-delete"
  52. @click="del(s.row)">删除</el-button>
  53. </template>
  54. </el-table-column>
  55. </el-table>
  56. <!-- ------------- 分页 ------------- -->
  57. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()">
  58. </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. modal: {
  70. visible: false,
  71. form: {
  72. id: '',
  73. judgeContent: '审核通过'
  74. }
  75. },
  76. p: { // 查询参数
  77. partner: 1, // 主键
  78. name: '', // 名称
  79. phone: '', // 联系号码
  80. dutyPeople: '', // 负责人
  81. addressIds: '', // 地址id
  82. addressStr: '', // 地址
  83. status: '', // 状态(0=否,1=是)
  84. creareTime: '', // 创建时间
  85. judgeStatus: '', // 审核状态(1=未审核,2审核通过,3审核不通过)
  86. judgeTime: '', // 审核时间
  87. judgeContent: '', // 审核意见
  88. pageNo: 1, // 当前页
  89. pageSize: 10, // 页大小
  90. sortType: 0 // 排序方式
  91. },
  92. dataCount: 0,
  93. dataList: [], // 数据集合
  94. currentCustomerId: '1',
  95. },
  96. methods: {
  97. accountFn(data) {
  98. sa.showIframe('账户管理', 'tb-account-manager.html?customerId=' + data.id, '450px', '60%');
  99. },
  100. judgeFn(data) {
  101. Object.assign(this.modal, {
  102. visible: true,
  103. form: {
  104. id: data.id,
  105. judgeContent: data.judgeContent,
  106. judgeStatus: data.judgeStatus
  107. }
  108. })
  109. },
  110. getCustomer() {
  111. sa.ajax('/TbCostomer/getCurrentCustomerId', function(resp) {
  112. this.currentCustomerId = resp.data;
  113. }.bind(this));
  114. },
  115. userFn(data) {
  116. sa.showIframe('企业用户', 'customer-admin-list.html?customerId=' + data.id, '1050px', '90%');
  117. },
  118. // 刷新
  119. f5: function() {
  120. sa.ajax('/TbCostomer/getList', sa.removeNull(this.p), function(res) {
  121. this.dataList = res.data; // 数据
  122. this.dataCount = res.dataCount; // 数据总数
  123. sa.f5TableHeight(); // 刷新表格高度
  124. }.bind(this));
  125. },
  126. // 查看
  127. get: function(data) {
  128. sa.showIframe('数据详情', 'tb-partner-info.html?id=' + data.id, '800px', '80%');
  129. },
  130. // 查看 - 根据选中的
  131. getBySelect: function(data) {
  132. var selection = this.$refs['data-table'].selection;
  133. if (selection.length == 0) {
  134. return sa.msg('请选择一条数据')
  135. }
  136. this.get(selection[0]);
  137. },
  138. // 修改
  139. update: function(data) {
  140. sa.showIframe('修改数据', 'tb-partner-add.html?id=' + data.id, '500px', '70%');
  141. },
  142. // 新增
  143. add: function(data) {
  144. sa.showIframe('新增数据', 'tb-partner-add.html?id=-1', '550px', '80%');
  145. },
  146. // 删除
  147. del: function(data) {
  148. sa.confirm('是否删除,此操作不可撤销', function() {
  149. sa.ajax('/TbCostomer/delete?id=' + data.id, function(res) {
  150. sa.arrayDelete(this.dataList, data);
  151. sa.ok('删除成功');
  152. sa.f5TableHeight(); // 刷新表格高度
  153. }.bind(this))
  154. }.bind(this));
  155. },
  156. // 批量删除
  157. deleteByIds: function() {
  158. // 获取选中元素的id列表
  159. let selection = this.$refs['data-table'].selection;
  160. let ids = sa.getArrayField(selection, 'id');
  161. if (selection.length == 0) {
  162. return sa.msg('请至少选择一条数据')
  163. }
  164. // 提交删除
  165. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  166. sa.ajax('/TbCostomer/deleteByIds', {
  167. ids: ids.join(',')
  168. }, function(res) {
  169. sa.arrayDelete(this.dataList, selection);
  170. sa.ok('删除成功');
  171. sa.f5TableHeight(); // 刷新表格高度
  172. }.bind(this))
  173. }.bind(this));
  174. },
  175. // 改 - 状态(0=否,1=是)
  176. updateStatus: function(data) {
  177. // 声明变量记录是否成功
  178. var isOk = false;
  179. var oldValue = data.status;
  180. var ajax = sa.ajax('/TbCostomer/updateStatus', {
  181. id: data.id,
  182. value: data.status
  183. }, function(res) {
  184. isOk = true;
  185. sa.msg('修改成功');
  186. }.bind(this));
  187. // 如果未能修改成功, 则回滚
  188. $.when(ajax).done(function() {
  189. if (isOk == false) {
  190. data.status = oldValue;
  191. }
  192. })
  193. },
  194. },
  195. created: function() {
  196. this.f5();
  197. this.getCustomer();
  198. sa.onInputEnter();
  199. }
  200. })
  201. </script>
  202. </body>
  203. </html>