Browse Source

提交代码

master
杨豪 3 years ago
parent
commit
c8904b1c59
  1. 2
      pages/demandHall/needsContact/index.wxss
  2. 2
      pages/release/index.js
  3. 6
      pages/release/index.wxml
  4. 3
      pages/release/index.wxss
  5. 5
      pages/user/resourcesOrder/index.wxml
  6. 11
      pages/user/resourcesOrder/index.wxss
  7. 13
      project.config.json

2
pages/demandHall/needsContact/index.wxss

@ -70,7 +70,7 @@
}
.need-item{
width: 100%;
padding: 20rpx 0;
padding: 20rpx 0 0;
background: #FFFFFF;
box-shadow: 0rpx 6rpx 12rpx rgba(0, 0, 0, 0.16);
border-radius: 12rpx;

2
pages/release/index.js

@ -106,7 +106,7 @@ Page({
}
},
toNeeds(){
if(this.data.authStatus == 2 && (this.data.authType == 2 || this.data.authType == 0) && this.data.completeState == true){
if(this.data.authStatus == 2 && (this.data.authType == 2 || this.data.authType == 1) && this.data.completeState == true){
wx.navigateTo({
url: '/pages/user/editNeeds/index?type=2',
})

6
pages/release/index.wxml

@ -4,13 +4,13 @@
<view class="auth-btn" bindtap="toCompanyAuth" wx:if="{{authStatus == 0 || authStatus == 3}}">企业认证<image src="../../images/back.png"></image></view>
<view class="auth-btn bgG" bindtap="toPersonlAuth" wx:if="{{authStatus == 0 || authStatus == 3}}">个人认证<image src="../../images/back.png"></image></view>
</view>
<view class="posi">
<view class="posi {{authStatus == 2 ? 'top30' : ''}}">
<view class="tips-box">
<view class="tips acea-row row-middle">
<view class="tips acea-row row-middle" wx:if="{{authStatus == 0 || authStatus == 3}}">
<view class="icon">!</view>
<view>请先完成认证</view>
</view>
<view class="tips acea-row row-middle">
<view class="tips acea-row row-middle" wx:if="{{authStatus == 0 || authStatus == 3}}">
<view class="icon">!</view>
<view>注:完成企业认证后可以发布资源及需求,个人认证后只可发布需求</view>
</view>

3
pages/release/index.wxss

@ -28,6 +28,9 @@
width: 100%;
bottom: 100rpx;
}
.top30{
bottom: 30%;
}
.tips-box{
/* margin-top: 15%; */
}

5
pages/user/resourcesOrder/index.wxml

@ -53,7 +53,10 @@
<view class="desc line1">{{c.content}}</view>
</view>
<image src="../../../images/home/call.png" class="call" catchtap="call" data-item="{{c}}"></image>
<view class="create-btn" catchtap="createProject" data-item="{{item}}" data-id="{{c.communicateId}}">立项</view>
<view class="create-btn" wx:if="{{c.comminuteState == 1}}" catchtap="createProject" data-item="{{item}}" data-id="{{c.communicateId}}">立项</view>
<view class="create-btn default" wx:if="{{c.comminuteState == 2}}" data-item="{{item}}" data-id="{{c.communicateId}}">等待立项</view>
<view class="create-btn default" wx:if="{{c.comminuteState == 3}}" data-item="{{item}}" data-id="{{c.communicateId}}">已立项</view>
<view class="create-btn default" wx:if="{{c.comminuteState == 4}}" data-item="{{item}}" data-id="{{c.communicateId}}">项目流标</view>
</view>
</view>
</view>

11
pages/user/resourcesOrder/index.wxss

@ -112,7 +112,7 @@ image{
background: #fff;
border-radius: 4rpx;
font-size: 24rpx;
margin: 12rpx 0;
margin: 5rpx 0;
}
.open-btn{
color: #FF5100;
@ -182,14 +182,15 @@ image{
margin-top: 16rpx;
}
.create-btn{
width: 92rpx;
height: 56rpx;
width: auto;
height: 50rpx;
padding: 0 6rpx;
font-size: 24rpx;
background: linear-gradient(134deg, #FFA782 0%, #FF6D31 100%);
border-radius: 12rpx;
text-align: center;
line-height: 56rpx;
line-height: 50rpx;
color: #fff;
}
.progress-box{
margin-top: 32rpx;

13
project.config.json

@ -21,9 +21,9 @@
"checkSiteMap": true,
"uploadWithSourceMap": true,
"compileHotReLoad": false,
"useMultiFrameRuntime": false,
"useApiHook": false,
"useApiHostProcess": false,
"useMultiFrameRuntime": true,
"useApiHook": true,
"useApiHostProcess": true,
"babelSetting": {
"ignore": [],
"disablePlugins": [],
@ -31,12 +31,13 @@
},
"enableEngineNative": false,
"useIsolateContext": true,
"useCompilerModule": true,
"userConfirmedUseCompilerModuleSwitch": false,
"userConfirmedBundleSwitch": false,
"packNpmManually": false,
"packNpmRelationList": [],
"minifyWXSS": true
"minifyWXSS": true,
"disableUseStrict": false,
"showES6CompileOption": false,
"useCompilerPlugins": false
},
"compileType": "miniprogram",
"libVersion": "2.19.1",

Loading…
Cancel
Save