20240205 V3.0.0
yujialong 10 months ago
parent b60282b643
commit 74f9ae8920
  1. 2
      src/components/case/index.vue
  2. 2
      src/pages/lobbyManager/list/index.vue
  3. 149
      src/pages/manage/list/dayEnd/tellerCertificate.vue
  4. 3
      src/store/modules/system.js

@ -11,7 +11,7 @@
<el-select v-model.trim="projectId"
placeholder="请选择"
class="select"
:disabled="projectPermissions != 0"
disabled
@change="selectProject">
<el-option v-for="item in topicList"
:key="item.projectId"

@ -521,7 +521,7 @@ export default {
}
})
const params= {
parentId: '285,' + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ',286, 553',
parentId: '285,' + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ',286,553',
lcJudgmentRuleReq:formList,
projectId:+projectId,
startTime:startTime,

@ -1,66 +1,72 @@
<template>
<div class="wrap2 myPadding">
<my-title :titleArr="['日终管理', '柜员凭证轧账']"/>
<my-title :titleArr="['日终管理', '柜员凭证轧账']" />
<!-- 存款 -->
<div class="body">
<el-row :gutter="20" style="margin: 0">
<el-form ref="form" :model="form" label-width="120px" :rules="rules">
<el-col :span="10" :offset="1">
<el-form-item label="日期" required>
<el-row :gutter="20"
style="margin: 0">
<el-form ref="form"
:model="form"
label-width="120px"
:rules="rules">
<el-col :span="10"
:offset="1">
<el-form-item label="日期"
required>
<!-- <el-date-picker type="date" placeholder="选择日期" v-model.trim="form.date" style="width: 100%;"></el-date-picker> -->
<el-input :value="form.date" disabled ref="date"></el-input>
<el-input :value="form.date"
disabled
ref="date"></el-input>
</el-form-item>
</el-col>
<el-col :span="10" :offset="1">
<el-form-item label="柜员号" prop="counterNumber">
<el-input disabled :value="form.counterNumber" @input="(val) => checkHanzi(val, form, 'counterNumber')"></el-input>
<el-col :span="10"
:offset="1">
<el-form-item label="柜员号"
prop="counterNumber">
<el-input disabled
:value="form.counterNumber"
@input="(val) => checkHanzi(val, form, 'counterNumber')"></el-input>
</el-form-item>
</el-col>
<!-- <el-col :span="20" :offset="2">
</el-col> -->
<el-table
ref="filterTable"
<el-table ref="filterTable"
:data="tableData"
max-height="550"
:header-cell-style="headerCellStyle"
style="width: 95%"
:rules="rules">
<el-table-column
prop="certificateName"
<el-table-column prop="certificateName"
label="凭证类型"
align="center"
>
align="center">
</el-table-column>
<el-table-column
prop="stockNum"
<el-table-column prop="stockNum"
label="库存数量"
align="center"
>
align="center">
</el-table-column>
<el-table-column
prop="startNumber"
<el-table-column prop="startNumber"
label="起始号码"
align="center"
>
align="center">
</el-table-column>
<el-table-column
prop="endNumber"
<el-table-column prop="endNumber"
label="终止号码"
align="center"
>
align="center">
</el-table-column>
<el-table-column
label="钱箱数量"
<el-table-column label="钱箱数量"
align="center"
width="230"
prop="boxNumber"
>
prop="boxNumber">
<template slot-scope="scope">
<el-form-item :label="scope.row.certificateName + '数量'" required>
<el-input type='text' @input="val => inputListen(val, scope.row)" min="0" :value="scope.row.cashBoxNum" class='numrule'></el-input>
<el-form-item :label="scope.row.certificateName + '数量'"
required>
<el-input type='text'
@input="val => inputListen(val, scope.row)"
min="0"
:value="scope.row.cashBoxNum"
class='numrule'></el-input>
</el-form-item>
</template>
</el-table-column>
@ -68,8 +74,17 @@
</el-form>
</el-row>
<el-button @click="submitForm" type="primary" class="submitBtn" style="margin-top: 20px;" v-throttle>提交</el-button>
<my-dialog :moduleName="moduleName" v-if="visible" :visible.sync="visible" :showForm="form" :formName="formName" @submitIt="submitForm2" />
<el-button @click="submitForm"
type="primary"
class="submitBtn"
style="margin-top: 20px;"
v-throttle>提交</el-button>
<my-dialog :moduleName="moduleName"
v-if="visible"
:visible.sync="visible"
:showForm="form"
:formName="formName"
@submitIt="submitForm2" />
</div>
</div>
@ -85,21 +100,21 @@ import { Message } from 'element-ui';
import { addOperation } from '@/api/http';
export default {
name: 'index',
components:{
components: {
MyTitle,
MyDialog
},
data() {
data () {
return {
headerCellStyle: headerCellStyle,
moduleName: 'tellerCertificate',
visible: false,
form:{
form: {
date: '',
counterNumber: '002288',
},
formName:{
formName: {
date: '日期',
counterNumber: '柜员号'
},
@ -163,7 +178,7 @@ export default {
submited: 0
}
},
created() {
created () {
const tmpFunc = () => {
const date = new Date()
var y = date.getFullYear();
@ -179,14 +194,14 @@ export default {
...mapMutations({
setTipsOperate: 'system/setTipsOperate'
}),
inputListen(val, row) {
inputListen (val, row) {
row.cashBoxNum = Number(val.replace(/\D+/, ''))
},
submitForm() {
submitForm () {
if (this.submited) return this.$message.error('已提交!')
this.$refs.form.validate(myValidate(() => {
for(const item of this.tableData) {
if(item.cashBoxNum === '') {
for (const item of this.tableData) {
if (item.cashBoxNum === '') {
Message.warning({
center: true,
message: '请输入' + item.certificateName + '数量'
@ -196,7 +211,7 @@ export default {
}
const obj1 = {}
const obj2 = {}
for(const item of this.tableData) {
for (const item of this.tableData) {
console.log(item)
const { cashBoxNum, name2, certificateName } = item;
obj1[name2] = cashBoxNum + '张'
@ -205,26 +220,29 @@ export default {
}
this.form = { ...this.form, ...obj1 }
this.formName = { ...this.formName, ...obj2 }
console.log(obj1)
console.log(obj2)
this.visible = true
}, this.$refs));
},
submitForm2() {
submitForm2 () {
let projectId = sessionStorage.getItem('projectId')
let startTime = sessionStorage.getItem('startTime')
const formList = []
formList.push({"answerId":'544',"emptyOne": 99, "emptyTwo": this.form.date, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id +",287,5,32,542,544","type": "3"})
formList.push({"answerId":'545',"emptyOne": 100, "emptyTwo": this.form.counterNumber, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id +",287,5,32,542,545","type": "3"})
formList.push({ "answerId": '544', "emptyOne": 99, "emptyTwo": this.form.date, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ",287,5,32,542,544", "type": "3" })
formList.push({ "answerId": '545', "emptyOne": 100, "emptyTwo": this.form.counterNumber, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ",287,5,32,542,545", "type": "3" })
let params= {
formList.push({ "answerId": '572', "emptyOne": 106, "emptyTwo": this.tableData[0].cashBoxNum, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ",287,5,32,542,572", "type": "3" })
formList.push({ "answerId": '573', "emptyOne": 107, "emptyTwo": this.tableData[1].cashBoxNum, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ",287,5,32,542,573", "type": "3" })
formList.push({ "answerId": '574', "emptyOne": 108, "emptyTwo": this.tableData[2].cashBoxNum, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ",287,5,32,542,574", "type": "3" })
formList.push({ "answerId": '575', "emptyOne": 109, "emptyTwo": this.tableData[3].cashBoxNum, "operationIds": "285," + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ",287,5,32,542,575", "type": "3" })
let params = {
parentId: '285,' + this.$store.state.system.businessSelect[this.$store.state.system.businessKey].id + ',287,5,32,542',
lcJudgmentRuleReq:formList,
projectId:+projectId,
startTime:startTime,
lcJudgmentRuleReq: formList,
projectId: +projectId,
startTime: startTime,
}
addOperation(params).then((data)=>{
addOperation(params).then((data) => {
this.submited = 1
// this.$message({
// message: '',
@ -232,7 +250,7 @@ export default {
// });
// this.setNeedsModule(moduleName)
// this.setDataFlow({ ...this.form })
}).catch((error)=>{
}).catch((error) => {
})
},
tableRowClassName: tableRowClassName,
@ -242,20 +260,19 @@ export default {
</script>
<style lang="scss" scoped>
@import '@/assets/css/tablebg.scss';
@import '@/assets/css/tablebg.scss';
.myPadding {
.myPadding {
padding: 24px 0 24px 24px;
}
}
/deep/.numrule input {
appearance: textField!important;
-webkit-appearance: textField!important;
/deep/.numrule input {
appearance: textField !important;
-webkit-appearance: textField !important;
width: 100px;
}
}
/deep/.el-input input {
/deep/.el-input input {
text-align: center;
}
}
</style>

@ -2514,7 +2514,7 @@ export default {
}
},
'业务三十二': { // 银行承兑汇票签发
id: 5771,
id: 577,
name: '银行承兑汇票签发',
data: [ 13, 587 ], //
needs: [ ],
@ -3074,7 +3074,6 @@ export default {
}
}
}
console.log('arr=',arr)
return arr
},

Loading…
Cancel
Save