tb-person-filing-list.html 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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. <script src="../../static/kj/upload-util.js"></script>
  18. </head>
  19. <body>
  20. <div class="vue-box" style="display: none;" :style="'display: block;'">
  21. <div class="c-panel">
  22. <!-- ------------- 检索参数 ------------- -->
  23. <div class="c-title">检索参数</div>
  24. <el-form ref="form" :model='p' @submit.native.prevent>
  25. <sa-item type="text" name="姓名" v-model="p.name"></sa-item>
  26. <sa-item type="enum" name="类型" v-model="p.type" :jv="{1: '临时', 2: '内部'}" jtype="2" def="不限">
  27. </sa-item>
  28. <sa-item type="text" name="身份证" v-model="p.idCard"></sa-item>
  29. <sa-item type="enum" name="审核状态" v-model="p.judgeState" :jv="{0: '未审核', 1: '通过',2:'不通过'}" jtype="4"
  30. def="全部">
  31. </sa-item>
  32. <el-button type="primary" icon="el-icon-search" @click="p.pageNo = 1; f5()">查询</el-button>
  33. <el-button type="info" icon="el-icon-refresh"
  34. @click="p.name='',p.type='',p.idCard='',p.judgeState='',f5()">重置</el-button>
  35. <el-button type="primary" icon="el-icon-plus" @click="add" v-if="sa.isAuth('tb-person-filing-add')">
  36. 新增</el-button>
  37. <el-button type="primary" icon="el-icon-upload" @click="importFn"
  38. v-if="sa.isAuth('tb-person-filing-import')">
  39. 导入</el-button>
  40. </el-form>
  41. <!-- ------------- 数据列表 ------------- -->
  42. <el-table class="data-table" ref="data-table" :data="dataList">
  43. <sa-td name="序号" type="index"></sa-td>
  44. <sa-td name="姓名" prop="name"></sa-td>
  45. <sa-td name="所属部门" prop="departmentName" width="130"></sa-td>
  46. <sa-td name="备案组织" prop="deptName" width="130"></sa-td>
  47. <sa-td name="备案场所" prop="venuesName" width="130"></sa-td>
  48. <sa-td name="联系号码" prop="phone" width="120"></sa-td>
  49. <sa-td name="身份证" prop="idCadStr" width="150"></sa-td>
  50. <sa-td type="img" name="人脸" prop="photo"> </sa-td>
  51. <sa-td name="类型" prop="type" type="enum" :jv="{1: '临时', 2: '内部'}"></sa-td>
  52. <sa-td name="来访事由" prop="visitReason"></sa-td>
  53. <sa-td name="审核状态" prop="judgeState" type="enum" :jv="{0: '未审核', 1: '通过', 2: '不通过'}"></sa-td>
  54. <sa-td name="审核时间" prop="judgeTime" not="-" width="140"></sa-td>
  55. <sa-td name="创建时间" prop="createTime" width="140"></sa-td>
  56. <sa-td name="更新时间" prop="updateTime" width="140"></sa-td>
  57. <el-table-column label="操作" fixed="right" width="240px">
  58. <template slot-scope="s">
  59. <el-button v-if="sa.isAuth('tb-person-filing-judge')&&s.row.judgeState==0" class="c-btn"
  60. type="success" @click="judgeFn(s.row)">审核
  61. </el-button>
  62. <el-button class="c-btn" type="success" @click="get(s.row)">查看
  63. </el-button>
  64. <el-button v-if="sa.isAuth('tb-person-filing-edit')" class="c-btn" type="primary"
  65. @click="update(s.row)">修改
  66. </el-button>
  67. <el-button v-if="sa.isAuth('tb-person-filing-del')" class="c-btn" type="danger"
  68. @click="del(s.row)">删除
  69. </el-button>
  70. </template>
  71. </el-table-column>
  72. </el-table>
  73. <!-- ------------- 分页 ------------- -->
  74. <sa-item type="page" :curr.sync="p.pageNo" :size.sync="p.pageSize" :total="dataCount" @change="f5()">
  75. </sa-item>
  76. </div>
  77. <el-dialog title="批量导入" :visible.sync="form.visible" width="30%">
  78. <el-card class="box-card">
  79. <div slot="header" class="clearfix">
  80. <el-button style="float: right; padding-bottom: 10px" type="text" @click="downTemplate">模板下载
  81. </el-button>
  82. </div>
  83. <el-upload class="upload-demo" ref="importExcel" :headers="headers" drag :auto-upload="false"
  84. accept=".xls,.xlsx" :on-success="onSuccess" :action="importUrl">
  85. <i class="el-icon-upload"></i>
  86. <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
  87. <div class="el-upload__tip" slot="tip">只能上传excel文件</div>
  88. </el-upload>
  89. </el-card>
  90. <span slot="footer" class="dialog-footer">
  91. <el-button @click="cancelImport">取 消</el-button>
  92. <el-button type="primary" @click="sureImport">确定导入</el-button>
  93. </span>
  94. </el-dialog>
  95. </div>
  96. <script>
  97. var app = new Vue({
  98. components: {
  99. "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue'),
  100. "sa-td": httpVueLoader('../../sa-frame/com/sa-td.vue'),
  101. },
  102. el: '.vue-box',
  103. data: {
  104. form: {
  105. visible: false,
  106. deptId: ''
  107. },
  108. importUrl: sa.cfg.api_url + '/TbPersonFiling/import',
  109. headers: {
  110. 'satoken': sessionStorage.satoken
  111. },
  112. deptList: [],
  113. p: { // 查询参数
  114. id: '', //
  115. judgeState: '', // 部门ID
  116. name: '', // 姓名
  117. type: '', // 类型(1=临时,2=内部)
  118. idCard: '', // 身份证
  119. pageSize: 15, // 页大小
  120. sortType: 0 // 排序方式
  121. },
  122. dataCount: 0,
  123. dataList: [], // 数据集合
  124. },
  125. methods: {
  126. importFn() {
  127. this.form.visible = true;
  128. this.getDeptList()
  129. },
  130. downTemplate() {
  131. window.location.href = '../../static/template/' + encodeURIComponent('备案导入模板.xlsx')
  132. },
  133. cancelImport() {
  134. this.$refs.importExcel.clearFiles();
  135. this.form.visible = false;
  136. },
  137. sureImport() {
  138. sa.loading('正在上传');
  139. this.$refs.importExcel.submit();
  140. },
  141. onSuccess(resp) {
  142. sa.hideLoading();
  143. if (resp.code !== 200) {
  144. sa.error(resp.msg);
  145. } else {
  146. sa.alert('导入成功', this.cancelImport());
  147. setTimeout(() => {
  148. this.f5();
  149. }, 1000)
  150. }
  151. },
  152. getDeptList() {
  153. sa.ajax('/TbDept/getList', {
  154. pageNo: 1,
  155. pageSize: 100
  156. }, function(resp) {
  157. let list = resp.data;
  158. this.deptList = list;
  159. }.bind(this))
  160. },
  161. judgeFn(data) {
  162. sa.showIframe('审核', 'tb-person-filing-judge.html?id=' + data.id, '700px', '70%');
  163. },
  164. // 刷新
  165. f5: function() {
  166. sa.ajax('/TbPersonFiling/getList', sa.removeNull(this.p), function(res) {
  167. this.dataList = res.data; // 数据
  168. this.dataCount = res.dataCount; // 数据总数
  169. sa.f5TableHeight(); // 刷新表格高度
  170. }.bind(this));
  171. },
  172. // 查看
  173. get: function(data) {
  174. sa.showIframe('数据详情', 'tb-person-filing-info.html?id=' + data.id, '700px', '70%');
  175. },
  176. // 查看 - 根据选中的
  177. getBySelect: function(data) {
  178. var selection = this.$refs['data-table'].selection;
  179. if (selection.length == 0) {
  180. return sa.msg('请选择一条数据')
  181. }
  182. this.get(selection[0]);
  183. },
  184. // 修改
  185. update: function(data) {
  186. sa.showIframe('修改数据', 'tb-person-filing-add.html?id=' + data.id, '900px', '80%');
  187. },
  188. // 新增
  189. add: function(data) {
  190. sa.showIframe('新增数据', 'tb-person-filing-add.html?id=-1', '900px', '80%');
  191. },
  192. // 删除
  193. del: function(data) {
  194. sa.confirm('是否删除,此操作不可撤销', function() {
  195. sa.ajax('/TbPersonFiling/delete?id=' + data.id, function(res) {
  196. sa.arrayDelete(this.dataList, data);
  197. sa.ok('删除成功');
  198. sa.f5TableHeight(); // 刷新表格高度
  199. }.bind(this))
  200. }.bind(this));
  201. },
  202. // 批量删除
  203. deleteByIds: function() {
  204. // 获取选中元素的id列表
  205. let selection = this.$refs['data-table'].selection;
  206. let ids = sa.getArrayField(selection, 'id');
  207. if (selection.length == 0) {
  208. return sa.msg('请至少选择一条数据')
  209. }
  210. // 提交删除
  211. sa.confirm('是否批量删除选中数据?此操作不可撤销', function() {
  212. sa.ajax('/TbPersonFiling/deleteByIds', {
  213. ids: ids.join(',')
  214. }, function(res) {
  215. sa.arrayDelete(this.dataList, selection);
  216. sa.ok('删除成功');
  217. sa.f5TableHeight(); // 刷新表格高度
  218. }.bind(this))
  219. }.bind(this));
  220. },
  221. },
  222. created: function() {
  223. this.f5();
  224. sa.onInputEnter();
  225. console.log()
  226. }
  227. })
  228. </script>
  229. </body>
  230. </html>