|
|
|
@ -58,14 +58,12 @@
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
|
<div style="margin-top: 0.3rem; color: #333">
|
|
|
|
|
<div
|
|
|
|
|
class="tags"
|
|
|
|
|
:style="`border: 1px solid ;color:#05A9FF;width: 6rem;`"
|
|
|
|
|
>
|
|
|
|
|
<div style="margin-top: 0.3rem; color: #333">
|
|
|
|
|
合同状态:
|
|
|
|
|
{{
|
|
|
|
|
getDictDataLabel(
|
|
|
|
|
DICT_TYPE.SR_CT_TYPE,
|
|
|
|
|
itemData.contractType
|
|
|
|
|
DICT_TYPE.BS_EXPENSE_APPLY_STATUS,
|
|
|
|
|
itemData.status
|
|
|
|
|
) || '未知'
|
|
|
|
|
}}
|
|
|
|
|
</div>
|
|
|
|
@ -127,13 +125,13 @@ export default {
|
|
|
|
|
props: {
|
|
|
|
|
itemData: {
|
|
|
|
|
required: true,
|
|
|
|
|
default: () => {},
|
|
|
|
|
},
|
|
|
|
|
default: () => {}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
components: {},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
jumoStudentId: null,
|
|
|
|
|
jumoStudentId: null
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
activated() {
|
|
|
|
@ -145,7 +143,7 @@ export default {
|
|
|
|
|
computed: {
|
|
|
|
|
userInfo() {
|
|
|
|
|
return JSON.parse(window.localStorage.getItem('userInfo') || { dept: {} })
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
handleMerge(id, status) {
|
|
|
|
@ -160,7 +158,7 @@ export default {
|
|
|
|
|
this.jumoStudentId = id
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: '/supplier',
|
|
|
|
|
query: { id, type: 'edit' },
|
|
|
|
|
query: { id, type: 'edit' }
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
handleDel(id, status, creator) {
|
|
|
|
@ -169,7 +167,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
Dialog.confirm({
|
|
|
|
|
title: '提示',
|
|
|
|
|
message: '你确定要删除吗?',
|
|
|
|
|
message: '你确定要删除吗?'
|
|
|
|
|
}).then(() => {
|
|
|
|
|
deleteSupplierContract(id).then(() => {
|
|
|
|
|
this.$emit('onAllRefresh')
|
|
|
|
@ -182,18 +180,18 @@ export default {
|
|
|
|
|
this.jumoStudentId = id
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: '/supplier',
|
|
|
|
|
query: { id, type: 'show' },
|
|
|
|
|
query: { id, type: 'show' }
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
dayjs,
|
|
|
|
|
handleUpdataInfo() {
|
|
|
|
|
this.jumoStudentId = null
|
|
|
|
|
this.$emit('onUpdataInfo', this.itemData.id)
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
@import '@/assets/style/common/newList.scss';
|
|
|
|
|
</style>
|
|
|
|
|
</style>
|
|
|
|
|