Browse Source

修复默认的签名日期格式错误的bug

master
李磊 3 years ago
parent
commit
3485063e7d
  1. 7
      src/views/bggl/components/original_db_list.vue

7
src/views/bggl/components/original_db_list.vue

@ -469,7 +469,7 @@ export default {
dialogSignVisible: false,
passForm: {
password: '',
signDate: new Date().getFullYear() + '-' + (new Date().getMonth() + 1) + '-' + new Date().getDate()
signDate: this.formatter.dateFormat('YYYY-MM-dd')
},
isBatchSign: false, //
listCopy: [],
@ -1048,11 +1048,6 @@ export default {
}
},
qianming() {
//
if (this.$store.getters.departmentId === 74) {
this.sign()
return
}
this.api({
url: '/user/validationPwd',
method: 'post',

Loading…
Cancel
Save