diff --git a/App.vue b/App.vue
index 056b547..affe792 100644
--- a/App.vue
+++ b/App.vue
@@ -12,10 +12,10 @@
}
-
\ No newline at end of file
diff --git a/components/list/workList/workItem.vue b/components/list/workList/workItem.vue
index 5d773be..4635f0a 100644
--- a/components/list/workList/workItem.vue
+++ b/components/list/workList/workItem.vue
@@ -37,7 +37,8 @@
{{ $dayjs(item.createTime).format('YYYY-MM-DD') }}
-
+
联系老板
@@ -58,7 +59,17 @@
}
},
methods: {
-
+ callPhone(){
+ uni.makePhoneCall({
+ phoneNumber: this.item.phone,
+ success() {
+ console.log('安卓拨打成功');
+ },
+ fail() {
+ console.log('安卓拨打失败');
+ }
+ })
+ },
}
}
diff --git a/manifest.json b/manifest.json
index 7f8b1a9..d48142a 100644
--- a/manifest.json
+++ b/manifest.json
@@ -52,7 +52,7 @@
"quickapp" : {},
/* 小程序特有相关 */
"mp-weixin" : {
- "appid" : "wxad5b3d20a75974c0",
+ "appid" : "wxe631bce44d54667e",
"setting" : {
"urlCheck" : false
},
diff --git a/pages.json b/pages.json
index 1470207..cbc3c91 100644
--- a/pages.json
+++ b/pages.json
@@ -107,6 +107,9 @@
},
{
"path": "mine/InvitationCredit"
+ },
+ {
+ "path": "work/addResume"
}
]
}],
diff --git a/pages/index/center.vue b/pages/index/center.vue
index bcc0fba..a359b2a 100644
--- a/pages/index/center.vue
+++ b/pages/index/center.vue
@@ -126,7 +126,7 @@
积分记录
-
+
实名认证
@@ -145,7 +145,7 @@
电子合同
-
+
面对面分享
diff --git a/pages/index/index.vue b/pages/index/index.vue
index 5686a79..cc7ac96 100644
--- a/pages/index/index.vue
+++ b/pages/index/index.vue
@@ -48,7 +48,7 @@
+ @click="toAdd">
发布
@@ -115,6 +115,13 @@
clickItem(){
},
+ toAdd(){
+ if(this.role){
+ this.$utils.navigateTo('/pages_order/work/jobPosting')
+ }else{
+ this.$utils.navigateTo('/pages_order/work/addResume')
+ }
+ },
}
}
diff --git a/pages/index/keepAccounts.vue b/pages/index/keepAccounts.vue
index 8e24e2e..0759f43 100644
--- a/pages/index/keepAccounts.vue
+++ b/pages/index/keepAccounts.vue
@@ -3,7 +3,7 @@
-
@@ -57,7 +59,8 @@
-
+
@@ -88,7 +91,6 @@
-
+
+
+
+
+
+
+
+
- 取消
- 确定
+ 取消
+ 确定
@@ -138,29 +156,72 @@
name: '结束项目',
},
],
+ statusList : [
+ {
+ name : '在建',
+ value : 0,
+ },
+ {
+ name : '结束',
+ value : 1,
+ },
+ ],
show: false,
- mixinsListApi : 'commonQueryStrartJobLists',
- apiType : '',
+ mixinsListApi : 'commonQueryNotebookList',
addOrUpdate : false,
form : {
title : '',
+ status : 0,
},
}
},
computed: {
},
- onReady() {
-
+ onLoad() {
+ this.queryParams.status = 0
+ this.queryParams.type = 0
},
methods: {
- isShohw(){
- this.show = false
+ clickTabsType({index}){
+ this.queryParams.type = index
+ this.getData()
},
- clickTabs({index}){
- this.apiType = index ? 's' : ''
+ clickTabsStatus({index}){
+ this.queryParams.status = index
this.getData()
},
+ submit(){
+
+ if(this.$utils.verificationAll(this.form, {
+ title : '请输入项目名称',//
+ })){
+ return
+ }
+
+ this.form.type = this.queryParams.type
+
+ this.$api('commonAddBill', this.form, res => {
+ if(res.code == 200){
+ this.show = false
+ this.form = {
+ title : '',
+ status : 0,
+ }
+ this.getData()
+ }
+ })
+ },
+ openUpdate(item){
+ this.form = {
+ id : item.id,
+ title : item.title,
+ status : item.status,
+ status : item.status,
+ }
+ this.addOrUpdate = true
+ this.show = true
+ }
}
}
diff --git a/pages_order/auth/certification.vue b/pages_order/auth/certification.vue
index 9eaa1e6..7fa29db 100644
--- a/pages_order/auth/certification.vue
+++ b/pages_order/auth/certification.vue
@@ -1,7 +1,105 @@
+
+
+ 完成实名认证,您将获得《实名认证平台特权》
+
+
+
+
+
+ 姓名
+
+
+
+
+
+
+ 身份证号码
+
+
+
+
+
+
+ 联系方式
+
+
+
+
+
+
+ 请上传身份证人像面照片(选填)
+
+
+ 信息仅用身份核实,上传后可增加曝光机会
+
+
+
+
+
+
+
+
+ 点击上传
+
+
+
+
+
+
+ (确保文字清晰、可辨、避免遮挡、不全、反光)
+
+
+
+
+
+ 认证
+
+
+
+
+
+
+
+ 阅读并同意我们的“服务协议与隐私条款”
+
+
+ 以及个人信息保护指引
+
+
+
+
+
+
@@ -9,15 +107,99 @@
export default {
data() {
return {
-
+ checkboxValue : [],
+ form : {},
+ fileList: [],
}
},
methods: {
+ deleteImage(e){
+ this.fileList.splice(e.index, 1)
+ },
+ afterRead(e){
+ let self = this
+ e.file.forEach(file => {
+ self.$Oss.ossUpload(file.url).then(url => {
+ self.fileList.push({
+ url
+ })
+ })
+ })
+ },
}
}
diff --git a/pages_order/auth/wxLogin.vue b/pages_order/auth/wxLogin.vue
index fcab8f0..76bd635 100644
--- a/pages_order/auth/wxLogin.vue
+++ b/pages_order/auth/wxLogin.vue
@@ -4,7 +4,7 @@
- 欢迎使用酒店桌布租赁平台
+ 欢迎使用特易招
@@ -32,7 +32,7 @@
阅读并同意我们的“服务协议与隐私条款”
diff --git a/pages_order/auth/wxUserInfo.vue b/pages_order/auth/wxUserInfo.vue
index f72f89c..0b31b48 100644
--- a/pages_order/auth/wxUserInfo.vue
+++ b/pages_order/auth/wxUserInfo.vue
@@ -1,7 +1,7 @@
- 酒店桌布租赁平台
+ 特易招
申请获取你的头像、昵称
diff --git a/pages_order/mine/IntegralRecord.vue b/pages_order/mine/IntegralRecord.vue
index 00d3f00..174a7e2 100644
--- a/pages_order/mine/IntegralRecord.vue
+++ b/pages_order/mine/IntegralRecord.vue
@@ -29,10 +29,10 @@
-
+
+ v-for="(item, index) in list"
+ :value="x[item.type] + item.score" :label="item.createTime" />
{
- if(res.code == 200){
- this.agentFlow = res.result
- }
- })
- },
clickTabs({index}) {
this.type = index
+ this.queryParams.type = this.type
},
}
}
diff --git a/pages_order/mine/contract.vue b/pages_order/mine/contract.vue
index 1dd84fc..d30225c 100644
--- a/pages_order/mine/contract.vue
+++ b/pages_order/mine/contract.vue
@@ -18,23 +18,25 @@
-
+
xxxx电子合同
- 甲方:湖南瀚海科技有限公司
+
+ {{ item.nameA }}
- 乙方:四川特能博世科技有限公司
+
+ {{ item.nameB }}
+ size="30rpx">
@@ -91,9 +93,10 @@
background-color: #fff;
display: flex;
margin: 30rpx;
- img {
- width: 160rpx;
- height: 140rpx;
+ border-radius: 20rpx;
+ image {
+ width: 140rpx;
+ height: 120rpx;
margin: 20rpx;
}
.itemList {
@@ -111,8 +114,8 @@
.run{
margin: auto;
margin-right: 30rpx;
- height: 80rpx;
- width: 80rpx;
+ height: 60rpx;
+ width: 60rpx;
border-radius: 50%;
border: 1px solid $uni-color;
display: flex;
diff --git a/pages_order/static/auth/cart.png b/pages_order/static/auth/cart.png
new file mode 100644
index 0000000..64572e0
Binary files /dev/null and b/pages_order/static/auth/cart.png differ
diff --git a/pages_order/work/addResume.vue b/pages_order/work/addResume.vue
new file mode 100644
index 0000000..707269b
--- /dev/null
+++ b/pages_order/work/addResume.vue
@@ -0,0 +1,116 @@
+
+
+
+
+
+
+
+
+
+ {{ item.title }}
+
+
+
+ {{ t }}
+
+
+
+
+
+
+
+
+
+ 发布
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages_order/work/jobPosting.vue b/pages_order/work/jobPosting.vue
index 6888541..71201f9 100644
--- a/pages_order/work/jobPosting.vue
+++ b/pages_order/work/jobPosting.vue
@@ -141,7 +141,7 @@
placeholder="请输入详细介绍">
-
+
发布
@@ -216,15 +216,6 @@
margin-left: auto;
}
}
- .btn{
- border-radius: 40rpx;
- padding: 20rpx;
- margin: 40rpx;
- background: $uni-color;
- color: #fff;
- text-align: center;
- font-size: 28rpx;
- }
}
}
diff --git a/uni.scss b/uni.scss
index a18da8d..7626cbf 100644
--- a/uni.scss
+++ b/uni.scss
@@ -74,3 +74,14 @@ $uni-color-subtitle: #555555; // 二级标题颜色
$uni-font-size-subtitle:26px;
$uni-color-paragraph: #3F536E; // 文章段落颜色
$uni-font-size-paragraph:15px;
+
+
+.uni-color-btn{
+ border-radius: 40rpx;
+ padding: 20rpx;
+ margin: 40rpx;
+ background: $uni-color;
+ color: #fff;
+ text-align: center;
+ font-size: 28rpx;
+}
\ No newline at end of file