|
@@ -1,5 +1,8 @@
|
|
|
<template>
|
|
|
<div class="type6-container">
|
|
|
+ <div class="btn-container" @click="handleNavRightBack">
|
|
|
+ <div class="btn-span">我的</div>
|
|
|
+ </div>
|
|
|
<c-input title="申请事由" :required="true" input-type="textarea" :maxlength="800" v-model="reason" />
|
|
|
|
|
|
<c-select title="采购类型" :required="true" v-model="type" :list="applyTypeList" pickerValueKey="name"
|
|
@@ -7,7 +10,7 @@
|
|
|
|
|
|
<!-- NOTE: 只有货物采购才有 采购明细 -->
|
|
|
<template v-if="type == '1'">
|
|
|
- <c-product-store v-model="apply_goods" type="1" />
|
|
|
+ <c-product-store ref="productStoreRef" v-model="apply_goods" type="1" />
|
|
|
</template>
|
|
|
|
|
|
<c-input title="总金额(元)" :required="true" v-model="total_amount" />
|
|
@@ -16,7 +19,7 @@
|
|
|
|
|
|
<c-files v-model="document" />
|
|
|
|
|
|
- <c-files ctype="images" v-model="images" />
|
|
|
+ <c-files ref="imageRef" ctype="images" v-model="images" />
|
|
|
|
|
|
<c-select title="支付方式" :required="true" :list="applyPayTypeList" v-model="pay_type" pickerValueKey="name"
|
|
|
pickerValueId="id" />
|
|
@@ -54,8 +57,8 @@ export default {
|
|
|
applyTypeList: this.$store.state.enum.applyTypeList,
|
|
|
applyPayTypeList: this.$store.state.enum.applyPayTypeList,
|
|
|
|
|
|
- // TODO: 缺少拟稿部门、落款选择数据列表
|
|
|
// formData start
|
|
|
+ way: 'create',
|
|
|
id: '',
|
|
|
module: 1,
|
|
|
reason: '', // 申购事由
|
|
@@ -78,9 +81,69 @@ export default {
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
+ // NOTE: 设置标题等
|
|
|
+ navigationSetting() {
|
|
|
+ // settingNavigationTitle({
|
|
|
+ // title: '维修申请'
|
|
|
+ // })
|
|
|
+
|
|
|
+ // settingNavigationRight({
|
|
|
+ // show: true,
|
|
|
+ // control: true,
|
|
|
+ // text: '我的出差',
|
|
|
+ // callback: this.handleNavRightBack
|
|
|
+ // })
|
|
|
+ },
|
|
|
+ handleNavRightBack(result) {
|
|
|
+ console.log('result', result);
|
|
|
+ this.$router.push({
|
|
|
+ name: 'ApplyState',
|
|
|
+ query: {
|
|
|
+ type: this.module
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
// 获取编辑数据
|
|
|
handleFormatEditData(data) {
|
|
|
- console.log('%c edit data type6 >>>', 'background: blue; color: #fff', data);
|
|
|
+ console.log('%c edit data type1 >>>', 'background: blue; color: #fff', data);
|
|
|
+ const IS_EDIT = this.flag === 'approve'
|
|
|
+ this.way = IS_EDIT ? 'edit' : 'update'
|
|
|
+ this.id = IS_EDIT ? data.approve_id : data.id
|
|
|
+ this.reason = data.reason
|
|
|
+ this.type = data.type
|
|
|
+
|
|
|
+ const mif = data.module_info
|
|
|
+
|
|
|
+ this.total_amount = `${Number(mif.total_amount)}`
|
|
|
+ this.pay_type = mif.pay_type
|
|
|
+
|
|
|
+ if (mif.apply_date) {
|
|
|
+ this.apply_date = mif.apply_date
|
|
|
+ }
|
|
|
+
|
|
|
+ this.apply_goods = data.apply_goods.map(goods => ({
|
|
|
+ ...goods,
|
|
|
+ goods_stock: JSON.parse(goods.goods_stock)
|
|
|
+ }))
|
|
|
+
|
|
|
+ if (data.module_info.images) {
|
|
|
+ this.images = data.module_info.images_text.map(img => ({
|
|
|
+ url: img
|
|
|
+ }))
|
|
|
+ }
|
|
|
+
|
|
|
+ // TODO: document
|
|
|
+ // if (data.module_info.document_text) {
|
|
|
+ // this.images = data.module_info.document_text.map(doc => ({
|
|
|
+ // url: doc
|
|
|
+ // }))
|
|
|
+ // }
|
|
|
+ // NOTE: 主动触发子组件渲染
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.$refs.productStoreRef.handleUpdateValues()
|
|
|
+ this.$refs.imageRef.handleUpdateValues()
|
|
|
+ })
|
|
|
},
|
|
|
/**
|
|
|
* @description 提交数据默认函数
|
|
@@ -96,20 +159,27 @@ export default {
|
|
|
|
|
|
__format_data__() {
|
|
|
let templateObj = {
|
|
|
+ way: this.way,
|
|
|
module: this.module,
|
|
|
reason: this.reason,
|
|
|
type: this.type,
|
|
|
total_amount: this.total_amount,
|
|
|
pay_type: this.pay_type,
|
|
|
apply_date: this.apply_date,
|
|
|
-
|
|
|
+ apply_goods: this.apply_goods,
|
|
|
approve_user: this.approvePeople.map(user => (user.userid || user.emplId)).join(','),
|
|
|
copy_user: this.copyPeople.map(user => (user.userid || user.emplId)).join(',')
|
|
|
}
|
|
|
|
|
|
- // TODO: 格式化尚未完成
|
|
|
- // document
|
|
|
- // images
|
|
|
+ let images = this.images
|
|
|
+ if (Array.isArray(images) && images.length) {
|
|
|
+ templateObj.images = images.map(image => image.url).join(',')
|
|
|
+ }
|
|
|
+
|
|
|
+ let documents = this.document
|
|
|
+ if (Array.isArray(documents) && documents.length) {
|
|
|
+ templateObj.document = documents.map(document => document.url).join(',')
|
|
|
+ }
|
|
|
|
|
|
if (this.id) templateObj.id = this.id
|
|
|
return templateObj
|
|
@@ -119,14 +189,14 @@ export default {
|
|
|
let mapTxt = {
|
|
|
'reason': '申购事由',
|
|
|
'type': '采购类型',
|
|
|
- // 申购明细
|
|
|
+ 'apply_goods': '申购明细',
|
|
|
'total_amount': '总金额',
|
|
|
'pay_type': '支付方式'
|
|
|
}
|
|
|
let requiredKey = [
|
|
|
'reason',
|
|
|
'type',
|
|
|
- // 申购明细
|
|
|
+ 'apply_goods',
|
|
|
'total_amount',
|
|
|
'pay_type'
|
|
|
]
|
|
@@ -142,17 +212,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);
|