|
|
|
@ -1,7 +1,7 @@ |
|
|
|
|
// 存款 |
|
|
|
|
<template> |
|
|
|
|
<div class="wrap wrap2"> |
|
|
|
|
<MyTitle :titleArr="['同城交换', '同城提出']"/> |
|
|
|
|
<MyTitle :titleArr="['同城交互', '同城提出']"/> |
|
|
|
|
|
|
|
|
|
<!-- 存款 --> |
|
|
|
|
<div class="body"> |
|
|
|
@ -13,7 +13,8 @@ |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="币种" prop="currency"> |
|
|
|
|
<el-select v-model="form.currency" placeholder="请选择" ref="currency"> |
|
|
|
|
<el-option value="CNY人民币">CNY人民币</el-option> |
|
|
|
|
<el-option v-for="item in getSelectList.currencySelectList" :label="item.options" :value="item.itemId + ''" :key="item.itemId"> </el-option> |
|
|
|
|
<!-- <el-option label="CNY人民币" value="12"></el-option> --> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="提出场次" prop="proposeTime"> |
|
|
|
@ -24,15 +25,20 @@ |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="票据类型" prop="billType"> |
|
|
|
|
<el-select v-model="form.billType" placeholder="请选择" ref="billType"> |
|
|
|
|
<el-option v-for="item in billTypeSelect" :label="item.itemId" :key="item.itemId" >{{ item.description }}</el-option> |
|
|
|
|
<el-option v-for="item in getSelectList.billTypeSelect" :label="item.options" :key="item.itemId" :value="item.itemId + ''" ></el-option> |
|
|
|
|
<!-- <el-option :label="119" :key="item.itemId" :value="item.itemId" ></el-option> --> |
|
|
|
|
</el-select> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="出票日期" prop="drawBillDate"> |
|
|
|
|
|
|
|
|
|
<el-date-picker |
|
|
|
|
v-model="form.drawBillDate" |
|
|
|
|
type="date" |
|
|
|
|
placeholder="选择日期" |
|
|
|
|
ref="drawBillDate"> |
|
|
|
|
ref="drawBillDate" |
|
|
|
|
format="yyyy-MM-dd" |
|
|
|
|
value-format="yyyy-MM-dd" |
|
|
|
|
> |
|
|
|
|
</el-date-picker> |
|
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
|
@ -67,61 +73,61 @@ |
|
|
|
|
</el-form> |
|
|
|
|
</el-row> |
|
|
|
|
<el-button @click="submitForm" type="primary" class="submitBtn" v-throttle>提交</el-button> |
|
|
|
|
<my-dialog :moduleName="moduleName" v-if="visible" :visible.sync="visible" :showForm="form" :formName="formName" @submitIt="submitForm2" /> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<el-dialog |
|
|
|
|
style="margin-top:10vh" |
|
|
|
|
:visible.sync="visible" |
|
|
|
|
:modal="false" |
|
|
|
|
width="40%" |
|
|
|
|
:close-on-click-modal="false" |
|
|
|
|
:show-close="false" |
|
|
|
|
custom-class="data-dia" |
|
|
|
|
> |
|
|
|
|
<div slot="title" class="dia-header"> |
|
|
|
|
<div class="data-title">提交</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="popBody"> |
|
|
|
|
<h2>本业务需要授权</h2> |
|
|
|
|
</div> |
|
|
|
|
<div class="popBtns"> |
|
|
|
|
<el-button class="close btn" @click="visible = false">取 消</el-button> |
|
|
|
|
<el-button class="sure btn" type="primary" @click="visible = false">确 定</el-button> |
|
|
|
|
</div> |
|
|
|
|
</el-dialog> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
import { mapState } from 'vuex' |
|
|
|
|
import { mapGetters, mapState } from 'vuex' |
|
|
|
|
import { myValidate, ismoney, inputListen, checkHanzi, checkName, autoPlay, autoPlay2 } from '@/utils/utilFunction.js' |
|
|
|
|
import MyTitle from '@/components/myTitle' |
|
|
|
|
import MyDialog from '@/components/dialogTwo' |
|
|
|
|
const moduleName = "cityWide/cityWideOut" |
|
|
|
|
import { getSubjectInfo, addOperation, getOperation } from '@/api/http'; |
|
|
|
|
export default { |
|
|
|
|
name: 'index', |
|
|
|
|
components:{ |
|
|
|
|
MyTitle |
|
|
|
|
MyTitle, |
|
|
|
|
MyDialog |
|
|
|
|
}, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
text:'存款',/* 顶部文字 */ |
|
|
|
|
visible: false, |
|
|
|
|
billTypeSelect: [], |
|
|
|
|
// billTypeSelect: [], |
|
|
|
|
moduleName, |
|
|
|
|
form:{ |
|
|
|
|
// 必填项 |
|
|
|
|
shroffAccountNumber: '', // 本行收款账号 |
|
|
|
|
money: '', // 金额 |
|
|
|
|
shroffAccountUsername: '', // 本行收款户名 |
|
|
|
|
billType: '银行本票', // 票据类型 |
|
|
|
|
billType: '', // 票据类型 |
|
|
|
|
otherAccountNumber: '', // 他行收款账号 |
|
|
|
|
voucherNumber: '', // 凭证号码 |
|
|
|
|
// 非必填项 |
|
|
|
|
currency: 'CNY人民币', // 币种 |
|
|
|
|
currency: '12', // 币种 |
|
|
|
|
proposeTime: 1, // 提出场次 |
|
|
|
|
proposeDate: '', // 提出日期 |
|
|
|
|
otherAccountUsername: '', // 其他收款户名 |
|
|
|
|
drawBillDate: '', // 出票日期 |
|
|
|
|
abstract: '', // 摘要 |
|
|
|
|
}, |
|
|
|
|
formName: { |
|
|
|
|
shroffAccountNumber: '本行收款账号', // |
|
|
|
|
money: '金额', // |
|
|
|
|
shroffAccountUsername: '本行收款户名', // |
|
|
|
|
billType: '票据类型', // |
|
|
|
|
otherAccountNumber: '他行收款账号', // |
|
|
|
|
voucherNumber: '凭证号码', // |
|
|
|
|
// 非必填项 |
|
|
|
|
currency: '币种', // |
|
|
|
|
proposeTime: '提出场次', // |
|
|
|
|
proposeDate: '提出日期', // |
|
|
|
|
otherAccountUsername: '其他收款户名', // |
|
|
|
|
drawBillDate: '出票日期', // |
|
|
|
|
abstract: '摘要', // |
|
|
|
|
}, |
|
|
|
|
rules: { |
|
|
|
|
drawBillDate: [ |
|
|
|
|
{ |
|
|
|
@ -289,27 +295,60 @@ export default { |
|
|
|
|
return y + '-' + m + '-' + d; |
|
|
|
|
} |
|
|
|
|
this.form.proposeDate = tmpFunc() |
|
|
|
|
this.getSubjectInfo() |
|
|
|
|
|
|
|
|
|
// this.form.billType = this.billTypeSelect[0].itemId; |
|
|
|
|
}, |
|
|
|
|
mounted() { |
|
|
|
|
const parentId = '285,' + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ',287,5,29,345,346' |
|
|
|
|
autoPlay2(parentId, this.form, this.myTable2, this.myTable) |
|
|
|
|
this.$refs.shroffAccountNumber.focus() |
|
|
|
|
|
|
|
|
|
this.$refs.shroffAccountNumber.focus() |
|
|
|
|
const parentId = '285,' + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ',287,5,29,345,346' |
|
|
|
|
autoPlay2(parentId, this.form, this.myTable2, this.myTable) |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
async getSubjectInfo() { |
|
|
|
|
const { data: { items } } = await getSubjectInfo({ |
|
|
|
|
subject_id: 57 |
|
|
|
|
}) |
|
|
|
|
this.billTypeSelect.push(...items) |
|
|
|
|
}, |
|
|
|
|
submitForm() { |
|
|
|
|
this.$refs.form.validate(myValidate(() => { |
|
|
|
|
// 验证通过逻辑写在这 |
|
|
|
|
const parentId = '285,' + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ',287,5,29,345,346' |
|
|
|
|
autoPlay(parentId, this.form, this.myTable2, this.myTable) |
|
|
|
|
// const parentId = '285,' + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ',287,5,29,345,346' |
|
|
|
|
this.visible = true; |
|
|
|
|
}, this.$refs)); |
|
|
|
|
}, |
|
|
|
|
submitForm2() { |
|
|
|
|
let projectId = sessionStorage.getItem('projectId') |
|
|
|
|
let startTime = sessionStorage.getItem('startTime') |
|
|
|
|
const formList = [] |
|
|
|
|
formList.push({"answerId":'347',"emptyOne": 54, "emptyTwo": this.form.shroffAccountNumber, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id +",287,5,29,345,346","type": "3"}) |
|
|
|
|
formList.push({"answerId":'348',"emptyOne": 8, "emptyTwo": this.form.currency, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id +",287,5,29,345,346","type": "3"}) |
|
|
|
|
|
|
|
|
|
formList.push({"answerId":'349',"emptyOne": 14, "emptyTwo": this.form.money, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id +",287,5,29,345,346","type": "3"}) |
|
|
|
|
formList.push({"answerId":'350',"emptyOne": 55, "emptyTwo": this.form.proposeTime, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id +",287,5,29,345,346","type": "3"}) |
|
|
|
|
formList.push({"answerId":'351',"emptyOne": 56, "emptyTwo": this.form.proposeDate, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id +",287,5,29,345,346","type": "3"}) |
|
|
|
|
formList.push({"answerId":'352',"emptyOne": 57, "emptyTwo": this.form.billType, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id +",287,5,29,345,346","type": "3"}) |
|
|
|
|
formList.push({"answerId":'353',"emptyOne": 58, "emptyTwo": this.form.shroffAccountUsername, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id +",287,5,29,345,346","type": "3"}) |
|
|
|
|
formList.push({"answerId":'354',"emptyOne": 59, "emptyTwo": this.form.otherAccountNumber, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id +",287,5,29,345,346","type": "3"}) |
|
|
|
|
|
|
|
|
|
formList.push({"answerId":'355',"emptyOne": 60, "emptyTwo": this.form.drawBillDate, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id +",287,5,29,345,346","type": "3"}) |
|
|
|
|
formList.push({"answerId":'356',"emptyOne": 44, "emptyTwo": this.form.voucherNumber, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id +",287,5,29,345,346","type": "3"}) |
|
|
|
|
formList.push({"answerId":'357',"emptyOne": 61, "emptyTwo": this.form.shroffAccountUsername, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id +",287,5,29,345,346","type": "3"}) |
|
|
|
|
formList.push({"answerId":'358',"emptyOne": 16, "emptyTwo": this.form.abstract, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id +",287,5,29,345,346","type": "3"}) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let params= { |
|
|
|
|
parentId: "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id +",287,5,29,345,346", |
|
|
|
|
lcJudgmentRuleReq:formList, |
|
|
|
|
projectId:+projectId, |
|
|
|
|
startTime:startTime, |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
addOperation(params).then((data)=>{ |
|
|
|
|
// this.$message({ |
|
|
|
|
// message: '提交成功', |
|
|
|
|
// type: 'success' |
|
|
|
|
// }); |
|
|
|
|
// this.setNeedsModule(moduleName) |
|
|
|
|
// this.setDataFlow({ ...this.form }) |
|
|
|
|
}).catch((error)=>{ |
|
|
|
|
}) |
|
|
|
|
}, |
|
|
|
|
getFocus() { |
|
|
|
|
// console.log('test') |
|
|
|
|
if(!this.form.shroffAccountNumber) { |
|
|
|
@ -331,6 +370,14 @@ export default { |
|
|
|
|
inputListen: inputListen, |
|
|
|
|
checkHanzi: checkHanzi, |
|
|
|
|
checkName: checkName |
|
|
|
|
}, |
|
|
|
|
computed: { |
|
|
|
|
// ...mapState({ |
|
|
|
|
// billTypeSelect: state => state.select.billTypeSelect |
|
|
|
|
// }), |
|
|
|
|
...mapGetters({ |
|
|
|
|
getSelectList: 'system/getSelectList' |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|