Merge branch 'version_1.0' of httt push -u p://gitlab.ldxinyong.com/enterpriseManagement/lz_management_vue into version_1.0
This commit is contained in:
commit
fd584b692b
@ -48,7 +48,7 @@ export default {
|
|||||||
this.dingtalkLogin()
|
this.dingtalkLogin()
|
||||||
this.checkDingTalkLogin()
|
this.checkDingTalkLogin()
|
||||||
} else {
|
} else {
|
||||||
this.dataForm.verify = '请在钉钉打开'
|
this.dataForm.verify = '验证中'
|
||||||
console.log(this.$route.query)
|
console.log(this.$route.query)
|
||||||
this.req.code = this.$route.query.code
|
this.req.code = this.$route.query.code
|
||||||
apiDingtalkJump(this.req).then(res => {
|
apiDingtalkJump(this.req).then(res => {
|
||||||
|
|||||||
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
<el-button type="primary" v-if="auth.approvelCommit === 1 && status !== 5 " @click="commitRecord(2)">通过</el-button>
|
<el-button type="primary" v-if="auth.approvelCommit === 1 && status !== 5 " @click="commitRecord(2)">通过</el-button>
|
||||||
<el-button type="primary" v-if="auth.waitCommit===1 && status !== 5 " @click="commitRecord(3)">侍提交</el-button>
|
<el-button type="primary" v-if="auth.waitCommit===1 && status !== 5 " @click="commitRecord(3)">待提交</el-button>
|
||||||
<el-button type="primary" v-if="status === 5 && auth.reject == 1" @click="commitRecord(5)">驳回</el-button>
|
<el-button type="primary" v-if="status === 5 && auth.reject == 1" @click="commitRecord(5)">驳回</el-button>
|
||||||
</span>
|
</span>
|
||||||
</el-dialog>
|
</el-dialog>
|
||||||
@ -103,6 +103,7 @@ export default {
|
|||||||
}).then(data => {
|
}).then(data => {
|
||||||
if (data && data.code === 0) {
|
if (data && data.code === 0) {
|
||||||
this.$emit('refreshDataList', this.recordResultId)
|
this.$emit('refreshDataList', this.recordResultId)
|
||||||
|
this.alertInfo('更新成功')
|
||||||
} else {
|
} else {
|
||||||
this.alertInfo(data.msg)
|
this.alertInfo(data.msg)
|
||||||
}
|
}
|
||||||
|
|||||||
@ -77,7 +77,7 @@
|
|||||||
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<el-button type="primary" style="margin-bottom: 10px" @click="submitBt()">批量提交</el-button>
|
<el-button type="primary" style="margin-bottom: 10px" @click="submitBt()" v-if="isHiden">批量提交</el-button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<el-tabs type="border-card" v-model="tabValue" @tab-click="tabChange">
|
<el-tabs type="border-card" v-model="tabValue" @tab-click="tabChange">
|
||||||
@ -89,7 +89,7 @@
|
|||||||
<el-table
|
<el-table
|
||||||
:data="dataList"
|
:data="dataList"
|
||||||
border
|
border
|
||||||
v-loading="dataListLoading" border fit highlight-current-row
|
v-loading="dataListLoading" fit highlight-current-row
|
||||||
@selection-change="selectionChangeHandle"
|
@selection-change="selectionChangeHandle"
|
||||||
:cell-style="cellStyle"
|
:cell-style="cellStyle"
|
||||||
style="width: 100%;" >
|
style="width: 100%;" >
|
||||||
@ -231,7 +231,8 @@ export default {
|
|||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
recordIdsSelect: [],
|
recordIdsSelect: [],
|
||||||
tabValue: '1,2,5',
|
tabValue: '1,2,5',
|
||||||
isChangeDepartmentrtment: 0
|
isChangeDepartmentrtment: 0,
|
||||||
|
isHiden: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {},
|
computed: {},
|
||||||
@ -307,6 +308,11 @@ export default {
|
|||||||
})
|
})
|
||||||
},
|
},
|
||||||
tabChange (row) {
|
tabChange (row) {
|
||||||
|
if(row.name === '3') {
|
||||||
|
this.isHiden = true
|
||||||
|
} else {
|
||||||
|
this.isHiden = false
|
||||||
|
}
|
||||||
this.dataForm.status = row.name
|
this.dataForm.status = row.name
|
||||||
this.getDataList(row.name)
|
this.getDataList(row.name)
|
||||||
},
|
},
|
||||||
|
|||||||
@ -162,12 +162,12 @@ export default {
|
|||||||
wenHuaJiaZhiGuanNum: 2,
|
wenHuaJiaZhiGuanNum: 2,
|
||||||
lastResultNum: 2,
|
lastResultNum: 2,
|
||||||
commentNum: 1,
|
commentNum: 1,
|
||||||
checkMonth: '2020-03-21',
|
checkMonth: '',
|
||||||
staffName: '瞿贻晓',
|
staffName: '',
|
||||||
department1: '业务中台',
|
department1: '',
|
||||||
department2: '金融业务组',
|
department2: '',
|
||||||
department3: '技术部门',
|
department3: '',
|
||||||
superStaff: '吴林',
|
superStaff: '',
|
||||||
addOrUpdateVisible: false,
|
addOrUpdateVisible: false,
|
||||||
approvalVisible: false,
|
approvalVisible: false,
|
||||||
uploadVisible: false,
|
uploadVisible: false,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user