tb-partner-list.html 8.9 KB

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