+
@@ -308,10 +308,10 @@
@@ -357,12 +357,26 @@
:visible.sync="peopleJudge"
custom-class="2xl:w-7/12 xl:w-9/12 lg:w-full h-auto rounded-2xl border-2 border-gray-600"
center>
- 客户: 你好!我现在该做什么呢?
+ 请选择客户签字或返还资料
+
+
+ 请问需要取出几张银行卡
+
+
+
+
@@ -409,6 +423,10 @@ export default {
}
};
return {
+ voucherCardGet: false,
+ voucherCardNumber: 0,
+
+ // 方便操作的数据:调整弹出框高度
fit: 'scale-down',
controlGoodsDblClickFn: null,
// cultureIn: [], // 传票栏
@@ -433,7 +451,7 @@ export default {
dateBirthYear:'1994',
dateBirthMonth:'4',
dateBirthDay:'1',
- address:'奥斯卡巅峰计划拉水电费啥地方',
+ address:'在山的那边海的那边',
idCardNo:'465852346854168479'},
{name:'开户申请书', src:require('@/assets/img/goods/khsqs.png'), id:14},
{name:'现金', src:require('@/assets/img/goods/cash-sm.png'), id:15},
@@ -1208,6 +1226,7 @@ export default {
// console.log(this.getSelectList.accountQualitySelectList)
},
mounted(){
+
let that = this
// 拖拽-物品栏
new Sortable(this.$refs.goods, {
@@ -1262,8 +1281,10 @@ export default {
// 印章的拖拽
else if(that.$refs.popUpSeal) {
- that.outThingsGoods([that.goodsShelfTotalData[evt.oldIndex].id])
- that.pushThings({ idArr: [ that.goodsShelfTotalData[evt.oldIndex].id ], name: that.myMap})
+
+ const id = that.goodsShelfTotalData[evt.oldIndex].id
+ that.outThingsGoods([ id ])
+ that.pushThings({ idArr: [ id ], name: that.myMap})
}
@@ -1340,6 +1361,12 @@ export default {
outThingsGoods: 'system/outThingsGoods',
setTipsOperate: 'system/setTipsOperate'
}),
+ voucherCardGetIt(number) {
+ if(number === 2) {
+
+ }
+ this.voucherCardGet = false
+ },
changePeopleJudge() {
this.peopleJudge = true;
},
@@ -1569,15 +1596,15 @@ export default {
}else if(this.popText.includes('密码器')) {
// if(this.systemId == '62,1' || this.systemId == '62,2' || this.systemId == '62,3') {
// if(this.passwordForm.password2 !== this.passwordForm.passwordAgain) {
- // this.setTipsOperate('您输入的密码和确认密码不一致!')
+ // this.setTipsOperate('两次输入密码不一致')
// return
// }
// }
if(this.passwordForm.passwordAgain.length !== 6) {
this.setTipsOperate('您输入的密码不足6位!')
return
- }else if(this.passwordForm.password2 !== this.passwordForm.passwordAgain) {
- this.setTipsOperate('您输入的密码和确认密码不一致!')
+ }else if((this.id == '62,1' || this.id == '62,2' || this.id == '62,3') && this.passwordForm.password2 !== this.passwordForm.passwordAgain) {
+ this.setTipsOperate('两次输入密码不一致')
return
}
}else if(this.popText.includes('身份证扫描')) {
@@ -2026,7 +2053,7 @@ export default {
// that.outThingsGoods([that.goodsShelfTotalData[evt.oldIndex].id])
}else if (this.nbm == 7){ //打印机
if(this.goodState.length === 0) {
- this.setTipsOperate('请放入证件!')
+ this.setTipsOperate('请放入打印资料')
return
}
let projectId = sessionStorage.getItem('projectId')
@@ -2057,7 +2084,7 @@ export default {
}
}
}else{
- this.setTipsOperate('您输入的密码和确认密码不一致!')
+ this.setTipsOperate('两次输入密码不一致!')
}
}else if (this.nbm == 9){//资料
if(this.goodState.length === 0) {
@@ -2137,12 +2164,34 @@ export default {
const targetDom = this.$refs.goods.getBoundingClientRect()
return evt.originalEvent.pageX
targetDom.left && evt.originalEvent.pageYtargetDom.top
},
-
+ // inputListenCard(val, prop) {
+ // const tmpCheck = val.substr(val.length-1, 1);
+ // if(tmpCheck === ' ') {
+ // return;
+ // }
+ // if(val === '') {
+ // this[prop] = val;
+ // return;
+ // }
+ // const tmpGet = Number(val.replace(/\D+/, ''))
+ // if(tmpGet <= 2 && tmpGet>0) {
+ // this[prop] = tmpGet
+ // }else {
+ // this.setTipsOperate('最多只能取出两张')
+ // this[prop] = 2
+ // }
+
+ // }
}
};
\ No newline at end of file
diff --git a/src/pages/manage/index/index.vue b/src/pages/manage/index/index.vue
index 29055f5..c96edd7 100644
--- a/src/pages/manage/index/index.vue
+++ b/src/pages/manage/index/index.vue
@@ -191,6 +191,7 @@ export default {
&:focus {
border-color: skyblue;
}
+
}
// 校验错误变红
@@ -198,6 +199,15 @@ export default {
border-color: #f40!important;;
}
+ /deep/.el-input {
+ // width: 15vw!important;
+ width: 100%;
+ input {
+ font-size: $font_size_All!important;
+ }
+
+ }
+
/deep/ .text-xl p {
font-size: $font_size_All!important;
}
@@ -234,10 +244,16 @@ export default {
// }
@media screen and (min-width: 1200px) and (max-width: 1700px) {
/deep/.el-input {
- width: 15vw!important;
+ // width: 15vw!important;
+ width: 100%;
+ input {
+ font-size: $font_size_All!important;
+ }
+
}
/deep/ .idCard {
- width: 15vw;
+ // width: 15vw;
+ width: 100%;
}
}
@media screen and (min-width: 1200px) and (max-width: 1900px) {
diff --git a/src/pages/manage/list/ImportantCash/controlCash/cashOut.vue b/src/pages/manage/list/ImportantCash/controlCash/cashOut.vue
index 161c116..15703eb 100644
--- a/src/pages/manage/list/ImportantCash/controlCash/cashOut.vue
+++ b/src/pages/manage/list/ImportantCash/controlCash/cashOut.vue
@@ -32,18 +32,20 @@
prop="moneyType"
label="券别"
align="center"
+ width="90"
>
@@ -55,7 +57,6 @@
@@ -78,18 +79,20 @@
prop="moneyType"
label="券别"
align="center"
+ width="90"
>
@@ -101,7 +104,7 @@
@@ -127,7 +130,7 @@
提交
-
+
@@ -140,7 +143,7 @@ import { addOperation } from '@/api/http';
const moduleName = 'controlCash/cashOut'
import { mapMutations, mapGetters } from 'vuex'
import NeedBefore from '@/components/needBefore'
-import MyDialog from '@/components/dialog'
+import MyDialog from '@/components/dialogTwo'
export default {
name: 'index',
components:{
@@ -149,6 +152,7 @@ export default {
},
data() {
return {
+ moduleName,
headerCellStyle: headerCellStyle,
cellStyle: cellStyle,
text:'柜员现金轧账',/* 顶部文字 */
@@ -341,7 +345,7 @@ export default {
}
.submitBtn{
position: relative;
- width: 300px;
+ width: 200px;
font-size: 18px;
height: 45px;
margin-top: 50px;
diff --git a/src/pages/manage/list/ImportantCash/controlCash/cashPaid.vue b/src/pages/manage/list/ImportantCash/controlCash/cashPaid.vue
index 7ea0fec..47dc86b 100644
--- a/src/pages/manage/list/ImportantCash/controlCash/cashPaid.vue
+++ b/src/pages/manage/list/ImportantCash/controlCash/cashPaid.vue
@@ -60,7 +60,7 @@
提交
-
+
@@ -72,7 +72,7 @@ import { getNowDate } from '@/utils/utilFunction'
const moduleName = 'controlCash/cashPaid'
import { mapMutations, mapGetters } from 'vuex'
import NeedBefore from '@/components/needBefore'
-import MyDialog from '@/components/dialog'
+import MyDialog from '@/components/dialogTwo'
import { addOperation } from '@/api/http';
export default {
name: 'index',
@@ -82,6 +82,7 @@ export default {
},
data() {
return {
+ moduleName,
headerCellStyle: headerCellStyle,
text:'柜员现金轧账',/* 顶部文字 */
visible: false,
@@ -217,7 +218,7 @@ export default {
.submitBtn{
position: relative;
- width: 300px;
+ width: 200px;
font-size: 18px;
height: 45px;
margin-top: 50px;
diff --git a/src/pages/manage/list/ImportantCash/controlCash/cashRecipients.vue b/src/pages/manage/list/ImportantCash/controlCash/cashRecipients.vue
index 3191546..dc8e0b9 100644
--- a/src/pages/manage/list/ImportantCash/controlCash/cashRecipients.vue
+++ b/src/pages/manage/list/ImportantCash/controlCash/cashRecipients.vue
@@ -61,7 +61,7 @@
提交
-
+
@@ -70,7 +70,7 @@