diff --git a/src/components/checkPhoto/index.vue b/src/components/checkPhoto/index.vue index f8f744e..0836390 100644 --- a/src/components/checkPhoto/index.vue +++ b/src/components/checkPhoto/index.vue @@ -1,8 +1,12 @@ + + + + + @@ -154,7 +202,7 @@ export default { methods: { closeIt() { this.$emit('update:showImg', false) - } + }, }, computed: { diff --git a/src/components/dialogTwo/index.vue b/src/components/dialogTwo/index.vue index 316b908..3257a1e 100644 --- a/src/components/dialogTwo/index.vue +++ b/src/components/dialogTwo/index.vue @@ -88,7 +88,9 @@ const obj = { 'tallerCash': '柜员现金轧账', 'tellerCertificate': '柜员凭证轧账', 'branchDayEnd': '网点日终轧帐', - 'spacial': '提交' + 'spacial': '提交', + "cityWide/cityWideOut": '同城提出', + "cityWide/cityWideIn": '同城提入', } const nameMap = { sex: { @@ -226,6 +228,14 @@ const nameMap = { 112: '按月', 113: '满页' }, + billType: { + 119: '银行本票', + 120: '银行承兑汇票', + 136: '银行支票', + 137: '银行汇票', + 138: '商业承兑汇票', + 139: '其他' + } } export default { diff --git a/src/pages/counter/list/index.vue b/src/pages/counter/list/index.vue index bb3fe9d..832a51f 100644 --- a/src/pages/counter/list/index.vue +++ b/src/pages/counter/list/index.vue @@ -399,7 +399,6 @@
-
@@ -475,7 +474,7 @@ diff --git a/src/pages/manage/list/ImportantCash/controlCash/cashOut.vue b/src/pages/manage/list/ImportantCash/controlCash/cashOut.vue index 12b19d6..69b8ddc 100644 --- a/src/pages/manage/list/ImportantCash/controlCash/cashOut.vue +++ b/src/pages/manage/list/ImportantCash/controlCash/cashOut.vue @@ -124,7 +124,7 @@ - + @@ -164,7 +164,7 @@ export default { currency: 12, state: '正常', moneyTotal: '0', - receiveCounter: '', + receiveCounter: '002288', }, formName:{ currency: '币种', diff --git a/src/pages/manage/list/ImportantCash/controlCash/cashPaid.vue b/src/pages/manage/list/ImportantCash/controlCash/cashPaid.vue index 903dd0f..bd65ce1 100644 --- a/src/pages/manage/list/ImportantCash/controlCash/cashPaid.vue +++ b/src/pages/manage/list/ImportantCash/controlCash/cashPaid.vue @@ -154,17 +154,55 @@ export default { tableRowClassName: tableRowClassName, sure(row) { if(this.form.clickIt2 === '确认退回') { - this.setTipsOperate('您已选择退回') + this.$confirm('该项目只能选择将现金调入或退回现金,请问是否改为现金调入?', '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + center: true + }).then(() => { + this.form.clickIt1 = '确认调入' + this.form.clickIt2 = '' + this.$message({ + type: 'success', + message: '当前选择为现金调入!' + }); + }).catch(() => { + this.$message({ + type: 'info', + message: '已取消调入' + }); + }); return + }else { + this.form.clickIt1 = '确认调入' } - this.form.clickIt1 = '确认调入' + }, back(row) { if(this.form.clickIt1 === '确认调入') { - this.setTipsOperate('您已选择调入') + this.$confirm('该项目只能选择将现金调入或退回现金,请问是否改为退回现金?', '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + center: true + }).then(() => { + this.form.clickIt2 = '确认退回' + this.form.clickIt1 = '' + this.$message({ + type: 'success', + message: '当前选择为现金退回' + }); + }).catch(() => { + this.$message({ + type: 'info', + message: '已取消退回' + }); + }); return + }else { + this.form.clickIt2 = '确认退回' } - this.form.clickIt2 = '确认退回' + }, submitClick() { this.visible = true diff --git a/src/pages/manage/list/ImportantCash/controlCash/cashRecipients.vue b/src/pages/manage/list/ImportantCash/controlCash/cashRecipients.vue index 92227eb..5e0f437 100644 --- a/src/pages/manage/list/ImportantCash/controlCash/cashRecipients.vue +++ b/src/pages/manage/list/ImportantCash/controlCash/cashRecipients.vue @@ -166,17 +166,55 @@ export default { }), sure(row) { if(this.form.clickIt2 === '已退回') { - this.setTipsOperate('您已选择退回') + this.$confirm('该项目只能选择将现金领用或退回现金,请问是否改为现金领用?', '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + center: true + }).then(() => { + this.form.clickIt1 = '已领用' + this.form.clickIt2 = '' + this.$message({ + type: 'success', + message: '当前选择为现金领用!' + }); + }).catch(() => { + this.$message({ + type: 'info', + message: '已取消现金领用' + }); + }); return + }else { + this.form.clickIt1 = '已领用' } - this.form.clickIt1 = '已领用' + }, back(row) { if(this.form.clickIt1 === '已领用') { - this.setTipsOperate('您已选择领用') + this.$confirm('该项目只能选择将现金领用或退回现金,请问是否改为现金退回?', '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + center: true + }).then(() => { + this.form.clickIt2 = '已退回' + this.form.clickIt1 = '' + this.$message({ + type: 'success', + message: '当前选择为退回现金!' + }); + }).catch(() => { + this.$message({ + type: 'info', + message: '已取消退回现金' + }); + }); return + }else { + this.form.clickIt2 = '已退回' } - this.form.clickIt2 = '已退回' + }, submitClick() { this.visible = true diff --git a/src/pages/manage/list/ImportantCash/controlCash2/cashOut.vue b/src/pages/manage/list/ImportantCash/controlCash2/cashOut.vue index dec61b5..38eccc9 100644 --- a/src/pages/manage/list/ImportantCash/controlCash2/cashOut.vue +++ b/src/pages/manage/list/ImportantCash/controlCash2/cashOut.vue @@ -37,7 +37,7 @@ - + @@ -77,7 +77,7 @@ export default { needBefore: '', form:{ voucherType: '', - receiveCounter: '', + receiveCounter: '002288', endNumber: '', startNumber: '', number: '', diff --git a/src/pages/manage/list/ImportantCash/controlCash2/cashPaid.vue b/src/pages/manage/list/ImportantCash/controlCash2/cashPaid.vue index b8ac6a6..39e7260 100644 --- a/src/pages/manage/list/ImportantCash/controlCash2/cashPaid.vue +++ b/src/pages/manage/list/ImportantCash/controlCash2/cashPaid.vue @@ -153,10 +153,54 @@ export default { }, methods: { sure(row) { - this.form.clickIt1 = '已领用' + if(this.form.clickIt2 === '已退回') { + this.$confirm('该项目只能选择将凭证调入或退回凭证,请问是否改为凭证领用?', '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + center: true + }).then(() => { + this.form.clickIt1 = '已领用' + this.form.clickIt2 = '' + this.$message({ + type: 'success', + message: '当前选择为凭证领用!' + }); + }).catch(() => { + this.$message({ + type: 'info', + message: '已取消凭证领用' + }); + }); + return + }else { + this.form.clickIt1 = '已领用' + } }, back(row) { - this.form.clickIt2 = '已退回' + if(this.form.clickIt1 === '已领用') { + this.$confirm('该项目只能选择将凭证调入或退回凭证,请问是否改为凭证退回?', '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + center: true + }).then(() => { + this.form.clickIt2 = '已退回' + this.form.clickIt1 = '' + this.$message({ + type: 'success', + message: '当前选择为退回凭证!' + }); + }).catch(() => { + this.$message({ + type: 'info', + message: '已取消退回凭证' + }); + }); + return + }else { + this.form.clickIt2 = '已退回' + } }, submitClick() { this.visible = true diff --git a/src/pages/manage/list/ImportantCash/controlCash2/cashRecipients.vue b/src/pages/manage/list/ImportantCash/controlCash2/cashRecipients.vue index d7ed87a..2b8d7c8 100644 --- a/src/pages/manage/list/ImportantCash/controlCash2/cashRecipients.vue +++ b/src/pages/manage/list/ImportantCash/controlCash2/cashRecipients.vue @@ -91,7 +91,7 @@ export default { return { moduleName, headerCellStyle: headerCellStyle, - text:'柜员现金轧账',/* 顶部文字 */ + text:'柜员凭证轧账',/* 顶部文字 */ visible: false, unNeed: false, isNeedBefore: '', @@ -143,10 +143,55 @@ export default { }, methods: { sure(row) { - this.form.clickIt1 = '已领用' + if(this.form.clickIt2 === '已退回') { + this.$confirm('该项目只能选择将凭证调入或退回凭证,请问是否改为凭证领用?', '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + center: true + }).then(() => { + this.form.clickIt1 = '已领用' + this.form.clickIt2 = '' + this.$message({ + type: 'success', + message: '当前选择为凭证领用!' + }); + }).catch(() => { + this.$message({ + type: 'info', + message: '已取消凭证领用' + }); + }); + return + }else { + this.form.clickIt1 = '已领用' + } + }, back(row) { - this.form.clickIt2 = '已退回' + if(this.form.clickIt1 === '已领用') { + this.$confirm('该项目只能选择将凭证调入或退回凭证,请问是否改为凭证退回?', '提示', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning', + center: true + }).then(() => { + this.form.clickIt2 = '已退回' + this.form.clickIt1 = '' + this.$message({ + type: 'success', + message: '当前选择为退回凭证!' + }); + }).catch(() => { + this.$message({ + type: 'info', + message: '已取消退回凭证' + }); + }); + return + }else { + this.form.clickIt2 = '已退回' + } }, submitClick() { this.visible = true diff --git a/src/pages/manage/list/cityWide/cityWideIn.vue b/src/pages/manage/list/cityWide/cityWideIn.vue index f999fa3..191aff0 100644 --- a/src/pages/manage/list/cityWide/cityWideIn.vue +++ b/src/pages/manage/list/cityWide/cityWideIn.vue @@ -1,7 +1,7 @@ // 存款 diff --git a/src/pages/manage/list/dayEnd/branchDayEnd.vue b/src/pages/manage/list/dayEnd/branchDayEnd.vue index 83a0096..aa837c8 100644 --- a/src/pages/manage/list/dayEnd/branchDayEnd.vue +++ b/src/pages/manage/list/dayEnd/branchDayEnd.vue @@ -26,6 +26,7 @@ import { myValidate, checkHanzi } from '@/utils/utilFunction.js' import { mapState, mapMutations, mapGetters } from 'vuex' import MyTitle from '@/components/myTitle' import MyDialog from '@/components/dialogTwo' +import { addOperation, getOperation } from '@/api/http'; export default { name: 'index', components:{ diff --git a/src/pages/manage/list/dayEnd/tellerCash.vue b/src/pages/manage/list/dayEnd/tellerCash.vue index 748ea32..3a56834 100644 --- a/src/pages/manage/list/dayEnd/tellerCash.vue +++ b/src/pages/manage/list/dayEnd/tellerCash.vue @@ -14,7 +14,7 @@ - +