Browse Source

上传修改

master
前端-胡立永 4 months ago
parent
commit
41acb0062e
3 changed files with 104 additions and 6 deletions
  1. +71
    -1
      api/api.js
  2. +1
    -1
      manifest.json
  3. +32
    -4
      pages_order/work/userDetail.vue

+ 71
- 1
api/api.js View File

@ -51,7 +51,67 @@ const config = {
* 公共的接口 * 公共的接口
*/ */
//关于本程序
commonAboutUs: {
url: '/api/common/aboutUs',
method: 'GET',
},
//个人记工-新建账本
commonAddBill: {
url: '/api/common/addBill',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
//班组记工-新建账本
commonAddBills: {
url: '/api/common/addBills',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
// 我的服务-兑换码
commonAddExchange: {
url: '/api/common/addExchange',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
// 个人记工-技工问题
commonAddQuestion: {
url: '/api/common/addQuestion',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
// 班组记工-技工问题
commonAddQuestions: {
url: '/api/common/addQuestions',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
// 我的服务-会员充值(开通VIP)
commonAddRecharge: {
url: '/api/common/addRecharge',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
// 我的服务-获取积分-充值积分
commonAddScoreByRecharge: {
url: '/api/common/addScoreByRecharge',
method: 'POST',
auth: true,
limit : 500,
showLoading : true,
},
//获取工种列表 //获取工种列表
commonQueryJobTypeList: { commonQueryJobTypeList: {
url: '/api/common/queryJobTypeList', url: '/api/common/queryJobTypeList',
@ -67,6 +127,16 @@ const config = {
url: '/api/common/queryAddressList', url: '/api/common/queryAddressList',
method: 'GET', method: 'GET',
}, },
//个人记工-全年收支
commonQueryBill: {
url: '/api/common/queryBill',
method: 'GET',
},
//班组记工-全年收支
commonQueryBills: {
url: '/api/common/queryBills',
method: 'GET',
},
/** /**


+ 1
- 1
manifest.json View File

@ -52,7 +52,7 @@
"quickapp" : {}, "quickapp" : {},
/* */ /* */
"mp-weixin" : { "mp-weixin" : {
"appid" : "wxe7ae8cbe1673834c",
"appid" : "wxad5b3d20a75974c0",
"setting" : { "setting" : {
"urlCheck" : false "urlCheck" : false
}, },


+ 32
- 4
pages_order/work/userDetail.vue View File

@ -1,6 +1,6 @@
<template> <template>
<view class="page"> <view class="page">
<navbar title="工作详情" leftClick @leftClick="$utils.navigateBack" />
<navbar leftClick @leftClick="$utils.navigateBack" />
<view class="head"> <view class="head">
<view class="headImage"> <view class="headImage">
@ -31,6 +31,7 @@
</view> </view>
</view> </view>
<view style="background-color: #f3f3f3;height: 30rpx;"></view>
<view class="box"> <view class="box">
@ -41,7 +42,7 @@
联系电话 联系电话
</view> </view>
<view class="right"> <view class="right">
联系电话
{{ detail.phone }}
</view> </view>
</view> </view>
@ -50,7 +51,34 @@
期望工作地 期望工作地
</view> </view>
<view class="right"> <view class="right">
联系电话
{{ detail.ipAddress }}
</view>
</view>
<view class="line">
<view class="left">
民族
</view>
<view class="right">
{{ detail.nation }}
</view>
</view>
<view class="line">
<view class="left">
工龄
</view>
<view class="right">
{{ detail.workTime ? `${detail.workTime}` : '应届生' }}
</view>
</view>
<view class="line">
<view class="left">
IP归属地
</view>
<view class="right">
{{ detail.ipAddress }}
</view> </view>
</view> </view>
@ -71,7 +99,7 @@
<uv-parse :content="detail.brief"></uv-parse> <uv-parse :content="detail.brief"></uv-parse>
</view> </view>
<view class="tag-list"> <view class="tag-list">
<view v-for="(t, i) in detail.tab && detail.tab.split('、')">
<view v-for="(t, i) in detail.tag && detail.tag.split('、')">
{{ t }} {{ t }}
</view> </view>
</view> </view>


Loading…
Cancel
Save