123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>人员备案-添加/修改</title>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
- <meta name="viewport"
- content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
- <!-- 所有的 css js 资源 -->
- <link rel="stylesheet" href="../../static/kj/element-ui/theme-chalk/index.css">
- <link rel="stylesheet" href="../../static/sa.css">
- <script src="../../static/kj/vue.min.js"></script>
- <script src="../../static/kj/element-ui/index.js"></script>
- <script src="../../static/kj/httpVueLoader.js"></script>
- <script src="../../static/kj/jquery.min.js"></script>
- <script src="../../static/kj/layer/layer.js"></script>
- <script src="../../static/sa.js"></script>
- <script src="../../static/kj/upload-util.js"></script>
- <style type="text/css">
- .c-panel .el-form .c-label {
- width: 7.5em !important;
- }
- .c-panel .el-form .el-input,
- .c-panel .el-form .el-textarea__inner {
- width: 250px;
- }
- .rota {
- position: relative;
- right: 6px;
- font-size: 10px;
- cursor: pointer;
- padding: 3px;
- border-radius: 5px;
- bottom: 5em;
- color: cornflowerblue
- }
- </style>
- </head>
- <body>
- <div class="vue-box" :class="{sbot: id}" style="display: none;" :style="'display: block;'">
- <!-- ------- 内容部分 ------- -->
- <div class="s-body">
- <div class="c-panel">
- <div class="c-title" v-if="id == 0">数据添加</div>
- <div class="c-title" v-else>数据修改</div>
- <el-form v-if="m">
- <el-row>
- <el-col :span="12">
- <div class="c-item">
- <label class="c-label"><span style="color: red;">*</span>备案组织:</label>
- <el-select v-model="m.deptId" @change="deptChange">
- <el-option label="请选择" v-for="(item,index) in deptList" :key="item.id"
- :label="item.name" :value="item.id"></el-option>
- </el-select>
- </div>
- <sa-item type="text" name="姓名" v-model="m.name" br need></sa-item>
- <sa-item type="text" name="身份证" v-model="m.idCard" br need></sa-item>
- <sa-item type="num" name="联系电话" v-model="m.phone" br></sa-item>
- </el-col>
- <el-col :span="12">
- <sa-item type="text" name="商铺号" v-if="m.deptName.indexOf('商铺')!==-1" v-model="m.shopCode" br need></sa-item>
- <sa-item type="text" name="边民证" v-if="m.icCard" v-model="m.icCard" br></sa-item>
- <sa-item type="text" name="来访事由" v-model="m.visitReason" br></sa-item>
- <sa-item type="textarea" name="备注" v-model="m.remark" br></sa-item>
- <sa-item type="img" name="人脸" v-model="m.photo" br need>
- <span slot="tip" class="rota">
- <span @click="rotaFn(-90)">
- <i class="el-icon-refresh-left"></i>
- </span>
- <span style="margin-left: 10px;" @click="rotaFn(90)">
- <i class="el-icon-refresh-right"></i>
- </span>
- </span>
- </sa-item>
- </el-col>
- </el-row>
- </el-form>
- </div>
- </div>
- <!-- ------- 底部按钮 ------- -->
- <div class="s-foot">
- <el-button type="primary" @click="ok()">确定</el-button>
- <el-button @click="sa.closeCurrIframe()">取消</el-button>
- </div>
- </div>
- <script>
- var app = new Vue({
- components: {
- "sa-item": httpVueLoader('../../sa-frame/com/sa-item.vue')
- },
- el: '.vue-box',
- data: {
- venuesList: [],
- currentUser: sa.$sys.getCurrUser(),
- id: sa.p('id', 0), // 获取超链接中的id参数(0=添加,非0=修改)
- m: {
- id: '', //
- deptId: '', // 单位ID
- deptName:'',
- name: '', // 姓名
- phone: '', // 联系电话
- type: 1, // 类型(1=临时,2=内部)
- idCard: '', // 身份证
- remark: '', // 备注
- }, // 实体对象
- deptList: []
- },
- methods: {
- rotaFn(rota) {
- let m = this.m;
- sa.ajax('/TbPersonFiling/rota', {
- rota: rota,
- id:m.id
- }, function(resp) {
- this.init();
- }.bind(this))
- },
- deptChange(id) {
- let deptList = this.deptList;
- let dept = deptList.filter(obj => obj.id == id)[0];
- this.m.deptName=dept.name;
- console.log(this.m.deptName.indexOf('商铺'))
- },
- getDeptList() {
- sa.ajax('/TbDept/getList', {
- pageNo: 1,
- pageSize: 100
- }, function(resp) {
- let list = resp.data;
- this.deptList = list;
- }.bind(this))
- },
- // 提交数据
- ok: function() {
- // 表单校验
- let m = this.m;
- sa.checkNull(m.deptId, '请选择备案组织');
- sa.checkNull(m.name, '请输入 [姓名]');
- sa.checkNull(m.idCard, '请输入 [身份证]');
- let idCard = m.idCard;
- if (idCard.length < 15) {
- sa.error('请输入正确的身份证');
- return false;
- }
- if (m.deptName.indexOf('商铺')!==-1&&!m.shopCode) {
- sa.error('请输入商铺号');
- return false;
- }
- sa.checkNull(m.photo, '请上传 [人脸]');
- m = sa.removeNull(m);
- // 开始增加或修改
- if (this.id <= 0) { // 添加
- sa.ajax('/TbPersonFiling/add', m, function(res) {
- sa.alert('增加成功', this.clean);
- }.bind(this));
- } else { // 修改
- sa.ajax('/TbPersonFiling/update', m, function(res) {
- sa.alert('修改成功', this.clean);
- }.bind(this));
- }
- },
- // 添加/修改 完成后的动作
- clean: function() {
- parent.app.f5(); // 刷新父页面列表
- sa.closeCurrIframe(); // 关闭本页
- },
- init() {
- // 初始化数据
- if (this.id > 0) {
- sa.ajax('/TbPersonFiling/getById?id=' + this.id, function(res) {
- this.m = res.data;
- if (res.data == null) {
- sa.alert('未能查找到 id=' + this.id + " 详细数据");
- }
- }.bind(this))
- }
- }
- },
- mounted: function() {
- this.init();
- this.getDeptList();
- }
- })
- </script>
- </body>
- </html>
|