123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307 |
- <template>
- <div>
- <common @asynCallBack="asynCallBack"></common>
- <top-header :pageTitle="pageTitle"></top-header>
- <div class="mui-content vongi-wordcard">
- <div class="mui-content-padded vongi-wordcard-padded">
- <h5>当前打卡班次</h5>
- <h3>{{tjForm.workAttendanceDate}}<span v-text="tjForm.workAttendanceTime"></span></h3>
- </div>
- <div class="mui-content-padded">
- <form class="mui-input-group">
- <div class="mui-input-row">
- <label><span class="colorfe616c">*</span>审批人</label>
- <div class="mui-navigate-right" @click="selectPerson">
- <button class="mui-btn mui-btn-block" type='button' v-text="approvalPersonName"></button>
- </div>
- </div>
- </form>
- </div>
- <div class="mui-content-padded">
- <h5><span class="colorfe616c">*</span>定位</h5>
- <button class="vongi-yidi-location">{{tjForm.address}}<span class="mui-icon mui-icon-location"></span></button>
- </div>
- <div class="mui-content-padded">
- <h5>备注</h5>
- <div class="mui-input-row">
- <textarea v-model="tjForm.content" rows="5" placeholder="请输入"></textarea>
- </div>
- </div>
- <div class="mui-content-padded">
- <h5>上传照片</h5>
- <div class="fyy-upphoto">
- <div class="mui-col-xs-3 fyy-upphoto-close" v-for="(item,index) in picList">
- <img :src="item" />
- <a class="mui-icon mui-icon-closeempty" @click="delPic(item)"></a>
- </div>
- <div class="mui-col-xs-3" @click="chooseImage">
- <a><span class="mui-icon mui-icon-plusempty"></span></a>
- </div>
- </div>
- </div>
- <div class="vongi-btn">
- <button class="mui-btn mui-btn-primary" type="button" @click="submit">
- 提交
- </button>
- </div>
- </div>
- </div>
- </template>
- <script>
- require('$project/assets/js/mui.picker.min.js');
- import * as API_Attendance from '@/apis/Master/attendance'
- import Common from '$project/components/Common.vue'
- import Loading from '$project/components/Loading.vue'
- import TopHeader from '$project/components/TopHeader.vue'
- import {
- mapGetters,
- mapMutations
- } from 'vuex'
- import * as WxJsApi from '$project/utils/wxJsApi'
- import MapLoader from '$project/utils/AMap'
- export default {
- name: 'MasterAttendanceSign',
- components: {
- Common,
- Loading,
- TopHeader
- },
- data() {
- return {
- pageTitle: '异地打卡',
- isLoading: false,
- subForm: {
- workAttendanceId: ''
- },
- tjForm: {
- alarmConfigId: '',
- workAttendanceDate: '',
- workAttendanceTime: '',
- type: '1', //外勤打卡/补卡(1/2)
- content: '',
- approvalPersonId: '',
- workAttendanceId: '',
- photoFile: '',
- longitude: 112.276527,
- latitude: 30.306427,
- address: '',
- },
- //typeName: '',
- approvalPersonName: '',
- personList: [],
- picList: [],
- }
- },
- created() {
- },
- methods: {
- //获取详情
- getTime() {
- this.isLoading = true;
- API_Attendance.patchCard(this.subForm).then(response => {
- this.tjForm.workAttendanceDate = response.workAttendanceDate;
- this.tjForm.workAttendanceTime = response.workAttendanceTime;
- this.tjForm.alarmConfigId = response.alarmConfigId;
- this.isLoading = false;
- }).catch(error => {
- this.isLoading = false;
- mui.toast(error);
- })
- },
- //获取审核人列表
- getPsersonList() {
- this.isLoading = true;
- API_Attendance.getApprovalList().then(response => {
- this.personList = response.data;
- this.isLoading = false;
- }).catch(error => {
- this.isLoading = false;
- mui.toast(error);
- })
- },
- //微信选择图片
- chooseImage() {
- WxJsApi.chooseImage().then(res => {
- var localData = res.localData;
- if (localData.indexOf('data:image') != 0) {
- //判断是否有这样的头部
- localData = 'data:image/jpeg;base64,' + localData
- }
- localData = localData.replace(/\r|\n/g, '').replace('data:image/jgp', 'data:image/jpeg')
- this.imgBase64 = localData;
- //显示裁剪图片
- //_this.showCropper(field);
- this.uploadpic();
- }).catch(error => {
- mui.toast(error);
- })
- },
- //上传图片
- uploadpic() {
- this.isLoading = true;
- WxJsApi.uploadPic(this.imgBase64).then(response => {
- this.isLoading = false;
- this.picList.push(response);
- }).catch(error => {
- this.isLoading = false;
- mui.toast(error);
- })
- },
- //选择审核人
- selectPerson() {
- var _this = this;
- var picker = new mui.PopPicker();
- picker.setData(_this.syPersonList);
- picker.show(function(selectItems) {
- _this.tjForm.approvalPersonId = selectItems[0].value;
- _this.approvalPersonName = selectItems[0].text;
- })
- },
- //表单检测
- checkFrom() {
- if (!this.tjForm.type) {
- mui.toast('请选择打卡类型');
- return false;
- } else if (!this.tjForm.approvalPersonId) {
- mui.toast('请选择审批人');
- return false;
- } else if (!this.tjForm.content) {
- mui.toast('请输入申请内容');
- return false;
- } else {
- return true;
- }
- },
- //提交
- submit() {
- this.tjForm.photoFile = this.picList.join(',');
- if (this.checkFrom()) {
- this.isLoading = true;
- API_Attendance.postPatchCard(this.tjForm).then(response => {
- this.isLoading = false;
- this.$router.push({
- name: 'Master',
- query: {}
- })
- }).catch(error => {
- this.isLoading = false;
- mui.toast(error);
- })
- }
- },
- //删除图片
- delPic(item) {
- let picList = this.picList;
- let index = picList.indexOf(item);
- if (index > -1) {
- picList.splice(index, 1);
- }
- this.picList = picList;
- },
- //获取经纬度
- getPoint() {
- this.isLoading = true;
- WxJsApi.getLocation().then((res) => {
- this.isLoading = false;
- this.tjForm.latitude = parseFloat(res.latitude);
- this.tjForm.longitude = parseFloat(res.longitude);
- console.log(this.tjForm)
- //获取定位地址
- this.getPositionByLonLats()
- })
- },
- //获取定位地址
- getPositionByLonLats() {
- var _this = this;
- MapLoader().then(AMap => {
- var lnglatXY = [_this.tjForm.longitude, _this.tjForm.latitude];
- AMap.service('AMap.Geocoder', function() {
- let geocoder = new AMap.Geocoder({});
- geocoder.getAddress(lnglatXY, function(status, result) {
- console.log(lnglatXY);
- console.log(status, result);
- if (status === 'complete' && result.info === 'OK') {
- var address = result.regeocode.formattedAddress;
- console.log(address);
- _this.tjForm.address = address;
- } else {
- _this.tjForm.address = '无法获取定位';
- }
- });
- });
- }).catch(error => {
- console.log(error)
- })
- },
- asynCallBack() {
- },
- },
- mounted() {
- //获取微信配置
- WxJsApi.getWxConfig(['chooseImage', 'getLocalImgData', 'getLocation']);
- //获取经纬度
- this.getPoint();
- this.getTime();
- this.getPsersonList();
- },
- destroyed() {},
- computed: {
- syPersonList: {
- // getter
- get: function() {
- let list = [];
- this.personList.forEach(function(item, index) {
- list.push({
- value: item.id,
- text: item.name
- });
- })
- return list;
- },
- // setter
- set: function(newValue) {
- console.log(newValue)
- }
- },
- typeName: {
- // getter
- get: function() {
- if (this.tjForm.type == '1') {
- return '外勤打卡';
- } else if (this.tjForm.type == '2') {
- return '补卡';
- } else {
- return '无';
- }
- },
- // setter
- set: function(newValue) {
- console.log(newValue)
- }
- },
- ...mapGetters({
- openId: 'wx_openid',
- token: 'token',
- })
- }
- }
- </script>
- <style scoped src="$project/assets/css/xpwyfyy.css"></style>
- <style src="$project/assets/css/mui.picker.min.css"></style>
- <style scoped>
- </style>
|