|
@@ -4,6 +4,8 @@
|
|
|
<div class="btn-span">我的出差</div>
|
|
|
</div>
|
|
|
|
|
|
+ <c-select-imitate title="申请人" :value="apply_user_name" />
|
|
|
+
|
|
|
<c-input title="填写事由" :required="true" v-model="reason" />
|
|
|
|
|
|
<peers v-model="peer_user" />
|
|
@@ -39,6 +41,7 @@ import Peers from './Peers.vue';
|
|
|
import indexMixin from '../indexMixins'
|
|
|
|
|
|
import { settingNavigationRight, settingNavigationTitle } from '@/utils/dingtalk';
|
|
|
+import { mapState } from 'vuex'
|
|
|
|
|
|
export default {
|
|
|
name: 'IndexType5',
|
|
@@ -49,7 +52,12 @@ export default {
|
|
|
components: {
|
|
|
Peers
|
|
|
},
|
|
|
-
|
|
|
+ computed: {
|
|
|
+ ...mapState("user", [
|
|
|
+ "token",
|
|
|
+ "userinfo"
|
|
|
+ ])
|
|
|
+ },
|
|
|
data() {
|
|
|
return {
|
|
|
postApi: null,
|
|
@@ -66,6 +74,7 @@ export default {
|
|
|
],
|
|
|
|
|
|
// formData =========
|
|
|
+ way: 'create', // create/update/edit
|
|
|
module: 5,
|
|
|
id: undefined, // id存在,表示编辑
|
|
|
reason: '', // 申请理由
|
|
@@ -73,38 +82,44 @@ export default {
|
|
|
end_time: '', // 结束时间
|
|
|
type: undefined, // 市内,市外
|
|
|
|
|
|
- document: '', // 附件
|
|
|
- images: '', // 图片
|
|
|
+ document: [], // 附件
|
|
|
+ images: [], // 图片
|
|
|
remark: '', // 备注
|
|
|
is_who: 0, // 是否出境
|
|
|
- peer_user: [ // 同行人员信息
|
|
|
- // {
|
|
|
- // is_who: '',
|
|
|
- // user_id: '',
|
|
|
- // name: '',
|
|
|
- // desc: ''
|
|
|
- // }
|
|
|
- ],
|
|
|
+
|
|
|
+ // 同行人员信息
|
|
|
+ // { is_who, user_id, name, desc }
|
|
|
+ peer_user: [],
|
|
|
approve_user: '',
|
|
|
- copy_user: ''
|
|
|
+ copy_user: '',
|
|
|
+
|
|
|
+
|
|
|
+ // 申请人
|
|
|
+ apply_user_id: '',
|
|
|
+ apply_user_name: ''
|
|
|
// ===========================
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
this.navigationSetting()
|
|
|
this.init()
|
|
|
+
|
|
|
+ // NOTE: 申请人 => 默认是账号本人
|
|
|
+ if (this.token) {
|
|
|
+ this.apply_user_id = this.userinfo.userid
|
|
|
+ this.apply_user_name = this.userinfo.name
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
init() {
|
|
|
this.getCommonFlowPathData()
|
|
|
this.postApi = this.flag === 'approve' ? editApprove : postCreateInfo
|
|
|
},
|
|
|
+
|
|
|
// NOTE: 格式化编辑数据
|
|
|
handleFormatEditData(data) {
|
|
|
- console.log('%c data---- >>>', 'background: blue; color: #fff', data);
|
|
|
const {
|
|
|
module_info,
|
|
|
- id,
|
|
|
peerUser
|
|
|
} = data
|
|
|
const {
|
|
@@ -114,14 +129,12 @@ export default {
|
|
|
remark,
|
|
|
start_time,
|
|
|
type,
|
|
|
- // document_text,
|
|
|
- // images,
|
|
|
- // images_text,
|
|
|
- // info_id,
|
|
|
- // document,
|
|
|
} = module_info /* eslint-disable-line */
|
|
|
|
|
|
- this.id = id
|
|
|
+ const IS_EDIT = this.flag === 'approve'
|
|
|
+ this.way = IS_EDIT ? 'edit' : 'update'
|
|
|
+ this.id = IS_EDIT ? data.approve_id : data.id
|
|
|
+ // this.id = id
|
|
|
this.peer_user = peerUser
|
|
|
this.reason = reason
|
|
|
this.start_time = start_time
|
|
@@ -129,6 +142,24 @@ export default {
|
|
|
this.type = type
|
|
|
this.remark = remark
|
|
|
this.is_who = is_who
|
|
|
+
|
|
|
+ // 申请人Id
|
|
|
+ this.apply_user_id = data.apply_user_id
|
|
|
+
|
|
|
+ // 申请人Id 对应 中文字段 // TODO: 中文对应字段
|
|
|
+ // this.apply_user_name = data.apply_user_name
|
|
|
+
|
|
|
+ if (Array.isArray(data.module_info.document_text) && data.module_info.document_text.length) {
|
|
|
+ this.document = module_info.document.split(',').map(doc => ({
|
|
|
+ url: doc
|
|
|
+ }))
|
|
|
+ }
|
|
|
+
|
|
|
+ if (Array.isArray(data.module_info.images_text) && data.module_info.images_text.length) {
|
|
|
+ this.images = data.module_info.images_text.map(img => ({
|
|
|
+ url: img
|
|
|
+ }))
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
// NOTE: 设置标题等
|
|
@@ -169,16 +200,9 @@ export default {
|
|
|
const res = await this.postApi(data)
|
|
|
if (res.code === 1) {
|
|
|
this.$toast(res.msg)
|
|
|
- // TODO: 提交成功后跳转到我的审批
|
|
|
- /*
|
|
|
- this.$router.push({
|
|
|
- name: '',
|
|
|
- query: {
|
|
|
- formtype: this.formType
|
|
|
- }
|
|
|
- })
|
|
|
- */
|
|
|
-
|
|
|
+ if (this.flag === 'approve') {
|
|
|
+ this.$router.go(-1)
|
|
|
+ } else this.__jump2apply_state__()
|
|
|
}
|
|
|
} catch (e) {
|
|
|
console.log('it5, __post__', e);
|
|
@@ -204,7 +228,7 @@ export default {
|
|
|
data
|
|
|
}, (data, hasEmpty, hasKey) => {
|
|
|
// 判断当type == 1 市内出差时。 判断是否出境
|
|
|
- if (data.type == 1 && !data.is_who) {
|
|
|
+ if (data.type == 1 && !['0', '1'].includes(String(data.is_who))) {
|
|
|
hasEmpty = true
|
|
|
hasKey = 'is_who'
|
|
|
}
|
|
@@ -213,6 +237,7 @@ export default {
|
|
|
},
|
|
|
__format_data__() {
|
|
|
let params = {
|
|
|
+ way: this.way,
|
|
|
module: 5,
|
|
|
reason: this.reason, // 申请理由
|
|
|
start_time: this.start_time, // 开始时间
|
|
@@ -231,7 +256,8 @@ export default {
|
|
|
}))
|
|
|
],
|
|
|
approve_user: this.approvePeople.map(user => (user.userid || user.emplId)).join(','),
|
|
|
- copy_user: this.copyPeople.map(user => (user.userid || user.emplId)).join(',')
|
|
|
+ copy_user: this.copyPeople.map(user => (user.userid || user.emplId)).join(','),
|
|
|
+ apply_user_id: this.apply_user_id
|
|
|
}
|
|
|
|
|
|
let images = this.images
|