This commit is contained in:
parent
3df4446a4e
commit
da0e9968c4
|
|
@ -201,7 +201,11 @@ export default {
|
||||||
},
|
},
|
||||||
close() {
|
close() {
|
||||||
this.$store.dispatch('LogOut').then(() => {
|
this.$store.dispatch('LogOut').then(() => {
|
||||||
location.href = '/index'
|
// location.href = '/index'
|
||||||
|
location.href =
|
||||||
|
process.env.VUE_APP_ENV === 'production'
|
||||||
|
? '/hd-realname/index'
|
||||||
|
: '/index'
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -255,7 +255,7 @@ export default {
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
onHandlePack() {
|
onHandlePack() {
|
||||||
console.log('封档')
|
// console.log('封档')
|
||||||
this.$modal
|
this.$modal
|
||||||
.confirm('是否确定封档?')
|
.confirm('是否确定封档?')
|
||||||
.then(async () => {
|
.then(async () => {
|
||||||
|
|
@ -280,7 +280,7 @@ export default {
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
onHandleUpload() {
|
onHandleUpload() {
|
||||||
console.log('回单上传')
|
// console.log('回单上传')
|
||||||
this.uploadVisible = true
|
this.uploadVisible = true
|
||||||
this.fileList = []
|
this.fileList = []
|
||||||
},
|
},
|
||||||
|
|
@ -399,7 +399,7 @@ export default {
|
||||||
|
|
||||||
// 删除附件
|
// 删除附件
|
||||||
onHandleDeleteFile(row) {
|
onHandleDeleteFile(row) {
|
||||||
console.log('删除附件', row)
|
// console.log('删除附件', row)
|
||||||
|
|
||||||
this.$confirm('是否确定删除附件?', '提示', {
|
this.$confirm('是否确定删除附件?', '提示', {
|
||||||
confirmButtonText: '确定',
|
confirmButtonText: '确定',
|
||||||
|
|
|
||||||
|
|
@ -239,7 +239,7 @@ export default {
|
||||||
{
|
{
|
||||||
...this.nameListQueryParams,
|
...this.nameListQueryParams,
|
||||||
},
|
},
|
||||||
'农名工花名册.xlsx',
|
'农民工花名册.xlsx',
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
// 获取考勤信息
|
// 获取考勤信息
|
||||||
|
|
|
||||||
|
|
@ -262,7 +262,7 @@ export default {
|
||||||
{
|
{
|
||||||
...this.wagePayQueryParams,
|
...this.wagePayQueryParams,
|
||||||
},
|
},
|
||||||
'农名工工资支付表.xlsx',
|
'农民工工资支付表.xlsx',
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
// 获取农名工工资支付表
|
// 获取农名工工资支付表
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue