tb-partner-list.html 7.9 KB

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