Ver código fonte

Signed-off-by: yukangzhe <382985154@qq.com>

yukangzhe 4 anos atrás
pai
commit
0c7ee06786

+ 1 - 0
app.json

@@ -1,6 +1,7 @@
 {
   "plugins": {},
   "pages": [
+    "pages/teamWork/teamWork",
     "pages/forBack/forBack",
     "pages/myself/myself",
     "pages/orderClassDetail/orderClassDetail",

+ 76 - 0
pages/teamWork/teamWork.js

@@ -0,0 +1,76 @@
+// pages/teamWork/teamWork.js
+Page({
+
+  /**
+   * 页面的初始数据
+   */
+  data: {
+    index: 0,
+    array:[
+      '本地生活服务',
+      '亲子早教',
+      '文化课培训',
+      '餐饮娱乐',
+      '文化演艺',
+      '银行金融',
+      '特许加盟',
+      '其他',
+    ]
+  },
+
+  /**
+   * 生命周期函数--监听页面加载
+   */
+  onLoad: function (options) {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面初次渲染完成
+   */
+  onReady: function () {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面显示
+   */
+  onShow: function () {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面隐藏
+   */
+  onHide: function () {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面卸载
+   */
+  onUnload: function () {
+
+  },
+
+  /**
+   * 页面相关事件处理函数--监听用户下拉动作
+   */
+  onPullDownRefresh: function () {
+
+  },
+
+  /**
+   * 页面上拉触底事件的处理函数
+   */
+  onReachBottom: function () {
+
+  },
+
+  /**
+   * 用户点击右上角分享
+   */
+  onShareAppMessage: function () {
+
+  }
+})

+ 3 - 0
pages/teamWork/teamWork.json

@@ -0,0 +1,3 @@
+{
+  "usingComponents": {}
+}

+ 59 - 0
pages/teamWork/teamWork.wxml

@@ -0,0 +1,59 @@
+<view class="container">
+  <form catchsubmit="formSubmit">
+    <view class="input-box">
+      <view class="title">企业名称</view>
+      <view class="input-view">
+        <input class="weui-input" auto-focus placeholder="请填写" maxlength="50" />
+      </view>
+    </view>
+
+    <view class="select-box">
+      <view class="title">企业类型</view>
+      <view class="select-view">
+        <picker bindchange="bindPickerChange" value="{{index}}" range="{{array}}">
+          <view class="picker">
+            {{array[index]}}
+          </view>
+        </picker>
+      </view>
+    </view>
+
+    <view class="input-box">
+      <view class="title">联系人姓名</view>
+      <view class="input-view">
+        <input class="weui-input" auto-focus placeholder="请填写" maxlength="5" />
+      </view>
+    </view>
+
+    <view class="input-box">
+      <view class="title">联系人电话</view>
+      <view class="input-view">
+        <input class="weui-input" auto-focus placeholder="请填写" maxlength="11" />
+      </view>
+    </view>
+
+    <view class="input-box">
+      <view class="title">联系人微信</view>
+      <view class="input-view">
+        <input class="weui-input" auto-focus placeholder="请填写" maxlength="50" />
+      </view>
+    </view>
+
+    <view class="line"></view>
+
+    <view class="textarea-box">
+      <view class="title">项目简介/合作方案</view>
+      <textarea class="textarea" placeholder="请在此填写项目简介或初步合作方案说明..." maxlength="200"></textarea>
+    </view>
+    <view class="line"></view>
+
+    <view class="tips">
+      请填写以上内容,如有合作机会,我们会在48小时内主动与您取得联系,谢谢!
+    </view>
+
+    <view class="btn-view">
+      <button class="submint-btn" formType="submit">提交</button>
+    </view>
+
+  </form>
+</view>

+ 56 - 0
pages/teamWork/teamWork.wxss

@@ -0,0 +1,56 @@
+/* pages/teamWork/teamWork.wxss */
+.container{
+  padding: 0;
+  margin: 0;
+}
+
+.input-box,.select-box{
+  display: flex;
+  height: 100rpx;
+  line-height: 100rpx;
+  padding: 0 25rpx;
+  border-bottom: 1px solid #f2f2f2;
+  font-size: 32rpx;
+}
+.title{
+  margin-right: 20rpx;
+}
+.input-view input{
+  font-size: 32rpx;
+  padding: 30rpx 10rpx 0;
+  width: 500rpx;
+}
+.textarea-box{
+  padding: 25rpx;
+}
+.textarea{
+  background: #f1f1f1;
+  width: 650rpx;
+  border-radius: 20rpx;
+  margin-top: 40rpx;
+  padding: 25rpx;
+}
+.line{
+  width: 750rpx;
+  height: 20rpx;
+  background: #f1f1f1;
+  margin: 10rpx 0;
+}
+.tips{
+  color: #999;
+  font-size: 24prx;
+  width: 700rpx;
+  margin: 25rpx;
+}
+.btn-view{
+  position: fixed;
+    bottom: 60rpx;
+    width: 750rpx;
+}
+.submint-btn{
+  background: #cc6031;
+    border-radius: 50rpx;
+    color: #FFF;
+    font-weight: 400;
+    width: 400rpx;
+}