Browse Source

no message

feature/v1.6
xpz2018 4 years ago
parent
commit
ce3f314468
7 changed files with 20 additions and 8 deletions
  1. 4
      api/user.js
  2. 2
      pages/login/index.js
  3. 2
      pages/process/order-check/index.js
  4. 1
      pages/process/order-check/index.wxss
  5. 1
      pages/process/order-price/index.json
  6. 15
      pages/process/order-price/index.wxml
  7. 3
      pages/process/order-price/index.wxss

4
api/user.js

@ -27,9 +27,9 @@ const certificateIdentity = (params) => mPost('/uec/identify/identity', params,
const generateCode = (params) => mPost('/uec/generate/qrcode', params, config)
const createQrcode = (params) => mPost('/uec/create/qrcode-record', params, config)
const verifyCode = (code, params) => mGet(`/uec/verify/qrcode${code}`, params, config)
const applyEmplyee = (params) => mPost(`/uec/apply/to/be/employee/of/enterprise-department`, params, config)
const applyEmplyee = (params) => mPost(`/uec/save/join/of/enterprise-department`, params, config)
const getCheckList = (params) => mGet(`/uec/get/employee-joining-department-application-list`, params, config)
const auditEmploye = (params) => mPost(`/uec/audit/employee-joining-department-application`, params, config)
const auditEmploye = (params) => mPost(`/uec/modify/join/of/enterprise-department`, params, config)
const deleteEmploye = (params) => mPost(`/uec/remove/employees`, params, config)
const editEmploye = (params) => mPost(`/uec/save/self-department-member`, params, config)
// ****************************************************************************************************************************************

2
pages/login/index.js

@ -180,7 +180,7 @@ Page({
if(applicationStatus == -1){
this.setData({ loging: false})
Dialog.alert({ title: '温馨提示', message: '还没有您所属的打包站信息,请联系相关客服人员' }).then(() => {
wx.redirectTo({ url: '/pages/process/order-check/index' })
// wx.redirectTo({ url: '/pages/process/order-check/index' })
})
return
}

2
pages/process/order-check/index.js

@ -13,7 +13,7 @@ Scene({
data: {
safeBottom: app.globalData.safeBottom,
paperList: null,
form: {},
form: null,
columns: [],
focus: 0,
visible: false,

1
pages/process/order-check/index.wxss

@ -2,6 +2,7 @@
.page-icon {
margin-right: 24rpx;
}
.margin-top{
margin-top: 16rpx;
}

1
pages/process/order-price/index.json

@ -1,6 +1,5 @@
{
"usingComponents": {
"van-index-anchor": "/components/index-anchor/index",
"van-cell": "/components/cell/index",
"van-button": "/components/button/index",
"van-checkbox": "/components/checkbox/index",

15
pages/process/order-price/index.wxml

@ -31,7 +31,10 @@
</view>
</view>
<view wx:elif="{{form && step == 2}}">
<van-index-anchor index="订单信息" />
<view class="flex flex-center bg-white" style="justify-content: flex-start;padding: 24rpx 32rpx;border-bottom:1rpx solid #f3f3f3">
<view style="height:24rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);"></view>
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">订单信息</view>
</view>
<van-cell>
<view slot="title" class="flex flex-justify">
<view class="text-black">客户姓名</view>
@ -53,7 +56,10 @@
<view class="{{form.productName ? 'text-black' : 'text-gray'}}">{{form.productName || '请选择废纸品类'}}</view>
</view>
</van-cell>
<van-index-anchor index="定价信息" />
<view class="flex flex-center bg-white margin-top" style="justify-content: flex-start;padding: 24rpx 32rpx;border-bottom:1rpx solid #f3f3f3">
<view style="height:24rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);"></view>
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">定价信息</view>
</view>
<van-cell>
<view slot="title" class="flex flex-justify">
<view class="flex flex-center text-black">
@ -97,7 +103,10 @@
</view>
</van-cell>
<van-field label="备注" type="textarea" input-align="right" placeholder="请输入备注" autosize border="{{ false }}" />
<van-index-anchor index="过磅信息" />
<view class="flex flex-center bg-white margin-top" style="justify-content: flex-start;padding: 24rpx 32rpx;border-bottom:1rpx solid #f3f3f3">
<view style="height:24rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);"></view>
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">过磅信息</view>
</view>
<van-cell>
<view slot="title" class="flex flex-justify">
<view class="text-black">毛重(公斤)</view>

3
pages/process/order-price/index.wxss

@ -2,6 +2,9 @@
.page-icon {
margin-right: 24rpx;
}
.margin-top{
margin-top: 16rpx;
}
.big-icon{
margin-top: 24rpx;
Loading…
Cancel
Save