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

Loading…
Cancel
Save