Browse Source

上传修改

master
前端-胡立永 7 months ago
parent
commit
c2d57452f0
2 changed files with 13 additions and 0 deletions
  1. +10
    -0
      api/api.js
  2. +3
    -0
      pages_order/mine/contract.vue

+ 10
- 0
api/api.js View File

@ -179,6 +179,11 @@ const config = {
url: '/api/employee/queryWatchMe', url: '/api/employee/queryWatchMe',
method: 'GET', method: 'GET',
}, },
//电子合同-获取电子合同列表
employeeQueryContractList: {
url: '/api/employee/queryContractList',
method: 'GET',
},
/** /**
* boss的接口 * boss的接口
@ -193,6 +198,11 @@ const config = {
url: '/api/boss/queryResumeById', url: '/api/boss/queryResumeById',
method: 'GET', method: 'GET',
}, },
//电子合同-获取电子合同列表
bossQueryContractList: {
url: '/api/boss/queryContractList',
method: 'GET',
},
} }
export function api(key, data, callback, loadingTitle) { export function api(key, data, callback, loadingTitle) {


+ 3
- 0
pages_order/mine/contract.vue View File

@ -42,7 +42,9 @@
</template> </template>
<script> <script>
import mixinList from '@/mixins/list.js'
export default { export default {
mixins : [mixinList],
data() { data() {
return { return {
tabs: [ tabs: [
@ -60,6 +62,7 @@
}, },
], ],
type : 0, type : 0,
mixinsListApi : 'bossQueryContractList',
} }
}, },
methods: { methods: {


Loading…
Cancel
Save