|
@@ -1,52 +1,27 @@
|
|
|
<template>
|
|
|
<div class="type6-container">
|
|
|
|
|
|
+
|
|
|
+ <c-select-imitate title="申请人" :value="apply_user_id_txt" @click="handleEditApplyofUser" />
|
|
|
+
|
|
|
<div class="group-box">
|
|
|
<div class="group__title">用车信息</div>
|
|
|
- <c-input
|
|
|
- title="出发地点"
|
|
|
- :required="true"
|
|
|
- v-model="reason"
|
|
|
- />
|
|
|
- <c-date
|
|
|
- title="出发时间"
|
|
|
- :required="true"
|
|
|
- v-model="start_time"
|
|
|
- />
|
|
|
+ <c-input title="出发地点" :required="true" v-model="reason" />
|
|
|
+ <c-date title="出发时间" :required="true" v-model="start_time" />
|
|
|
</div>
|
|
|
|
|
|
|
|
|
<div class="group-box m-t-10">
|
|
|
- <c-input
|
|
|
- title="到达地点"
|
|
|
- :required="true"
|
|
|
- v-model="reach_address"
|
|
|
- />
|
|
|
- <c-date
|
|
|
- title="返回时间"
|
|
|
- v-model="end_time"
|
|
|
- />
|
|
|
- <c-input
|
|
|
- title="返回地点"
|
|
|
- v-model="end_address"
|
|
|
- />
|
|
|
+ <c-input title="到达地点" :required="true" v-model="reach_address" />
|
|
|
+ <c-date title="返回时间" v-model="end_time" />
|
|
|
+ <c-input title="返回地点" v-model="end_address" />
|
|
|
</div>
|
|
|
|
|
|
- <c-files
|
|
|
- ctype="files"
|
|
|
- v-model="document"
|
|
|
- />
|
|
|
+ <c-files ctype="files" v-model="document" />
|
|
|
|
|
|
- <c-files
|
|
|
- ctype="images"
|
|
|
- v-model="images"
|
|
|
- />
|
|
|
+ <c-files ctype="images" v-model="images" />
|
|
|
|
|
|
- <c-flow-path
|
|
|
- :approve="approvePeople"
|
|
|
- :copy="copyPeople"
|
|
|
- :isAllowCopy="isCopy"
|
|
|
- />
|
|
|
+ <c-flow-path :approve="approvePeople" :copy="copyPeople" :isAllowCopy="isCopy" />
|
|
|
|
|
|
</div>
|
|
|
</template>
|
|
@@ -62,17 +37,29 @@ import indexMixin from '../indexMixins'
|
|
|
import { postCreateInfo } from '@/api/approveinfo'
|
|
|
import { editApprove } from '@/api/approve'
|
|
|
|
|
|
+import { mapState } from 'vuex'
|
|
|
+
|
|
|
+import { dingtalkComplexPicker } from "@/utils/dingtalk"
|
|
|
+
|
|
|
|
|
|
export default {
|
|
|
name: 'IndexType7',
|
|
|
mixins: [
|
|
|
indexMixin
|
|
|
],
|
|
|
- data () {
|
|
|
+ computed: {
|
|
|
+ ...mapState("user", [
|
|
|
+ 'token',
|
|
|
+ 'userinfo'
|
|
|
+ ])
|
|
|
+ },
|
|
|
+ data() {
|
|
|
return {
|
|
|
postApi: null,
|
|
|
|
|
|
// formData start
|
|
|
+ apply_user_id: '',
|
|
|
+ apply_user_id_txt: '',
|
|
|
id: '',
|
|
|
module: 7,
|
|
|
reason: '', // 出发地点
|
|
@@ -88,20 +75,29 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
|
|
|
- created () {
|
|
|
+ created() {
|
|
|
this.getCommonFlowPathData()
|
|
|
this.postApi = this.flag === 'approve' ? editApprove : postCreateInfo
|
|
|
+
|
|
|
+
|
|
|
+ console.log('%c ???? >>>', 'background: blue; color: #fff', this.token);
|
|
|
+
|
|
|
+ if (this.token) {
|
|
|
+ console.log('%c ----- >>>', 'background: blue; color: #fff', this.userinfo);
|
|
|
+ this.apply_user_id_txt = this.userinfo.name
|
|
|
+ this.apply_user_id = this.userinfo.userid
|
|
|
+ }
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
// 获取编辑数据
|
|
|
- handleFormatEditData (data) {
|
|
|
+ handleFormatEditData(data) {
|
|
|
console.log('%c edit data type6 >>>', 'background: blue; color: #fff', data);
|
|
|
},
|
|
|
/**
|
|
|
* @description 提交数据默认函数
|
|
|
*/
|
|
|
- handleSubmitData () {
|
|
|
+ handleSubmitData() {
|
|
|
let formData = this.__format_data__()
|
|
|
console.log('format data>>>', formData);
|
|
|
let bol = this.validate(formData)
|
|
@@ -109,7 +105,7 @@ export default {
|
|
|
console.log('execute handleSubmitData', formData);
|
|
|
this.__post__(formData)
|
|
|
},
|
|
|
- __format_data__ () {
|
|
|
+ __format_data__() {
|
|
|
let templateObj = {
|
|
|
module: this.module,
|
|
|
reason: this.reason,
|
|
@@ -134,7 +130,7 @@ export default {
|
|
|
// images
|
|
|
return templateObj
|
|
|
},
|
|
|
- validate (data) {
|
|
|
+ validate(data) {
|
|
|
let mapTxt = {
|
|
|
'start_time': '出发时间',
|
|
|
'end_time': '返回时间',
|
|
@@ -151,7 +147,7 @@ export default {
|
|
|
data
|
|
|
})
|
|
|
},
|
|
|
- async __post__ (data) {
|
|
|
+ async __post__(data) {
|
|
|
try {
|
|
|
const res = await this.postApi(data)
|
|
|
if (res.code === 1) {
|
|
@@ -168,10 +164,26 @@ export default {
|
|
|
*/
|
|
|
|
|
|
}
|
|
|
- } catch(e) {
|
|
|
+ } catch (e) {
|
|
|
console.log('it5, __post__', e);
|
|
|
}
|
|
|
},
|
|
|
+
|
|
|
+ // NOTE: 跳转申请人列表页面 进行选择申请人
|
|
|
+ async handleEditApplyofUser() {
|
|
|
+ try {
|
|
|
+ const result = await dingtalkComplexPicker({})
|
|
|
+ console.log('%c complexPicker >>>', 'background: blue; color: #fff', result);
|
|
|
+ } catch (error) {
|
|
|
+ console.log('---', error);
|
|
|
+ }
|
|
|
+ // 通过钉钉查询
|
|
|
+ // NOET: 通过页面查询
|
|
|
+ // this.$router.push({
|
|
|
+ // name: 'ApplyUser',
|
|
|
+ // query: {}
|
|
|
+ // })
|
|
|
+ }
|
|
|
},
|
|
|
}
|
|
|
|