bug修改

This commit is contained in:
姚亚男
2021-11-01 18:32:51 +08:00
parent 74bff8532f
commit b141a0ccca
5 changed files with 7 additions and 7 deletions
-1
View File
@@ -1,5 +1,4 @@
import {appId, secret} from '../js/project.config' import {appId, secret} from '../js/project.config'
console.log(appId)
export function wxBind(callback){ export function wxBind(callback){
// 获取openid进行手机号和微信的绑定 // 获取openid进行手机号和微信的绑定
let count = 1 let count = 1
+2 -2
View File
@@ -30,10 +30,10 @@
<view class="title"> <view class="title">
<text>邮寄信息</text> <text>邮寄信息</text>
</view> </view>
<view class="email-info" wx:if="{{form.contractNum}}"> <view class="email-info" wx:if="{{form.payMailContract}}">
<text>{{form.contractNum}}由{{form.payMailContract.mailName}}于{{form.payMailContract.createTime}}邮寄,快递号:{{form.payMailContract.postNo}}</text> <text>{{form.contractNum}}由{{form.payMailContract.mailName}}于{{form.payMailContract.createTime}}邮寄,快递号:{{form.payMailContract.postNo}}</text>
<text bindtap="track">查看物流</text> <text bindtap="track">查看物流</text>
</view> </view>
<text wx:if="{{!form.contractNum}}" class="no-data">暂无邮寄记录!</text> <text wx:if="{{!form.payMailContract}}" class="no-data" style="height: 50px">暂无邮寄记录!</text>
</view> </view>
</view> </view>
+1
View File
@@ -9,6 +9,7 @@ page{
display: flex; display: flex;
flex-direction: column; flex-direction: column;
border-radius: 10px; border-radius: 10px;
margin-bottom: 10px;
} }
.basic-info .container view{ .basic-info .container view{
background-color: #FFF; background-color: #FFF;
+2 -2
View File
@@ -87,7 +87,7 @@
<text style="color: #069F99;" bindtap="meetingDetail" data-meetinginfo="{{item}}">查看详情</text> <text style="color: #069F99;" bindtap="meetingDetail" data-meetinginfo="{{item}}">查看详情</text>
</view> </view>
</view> </view>
<text wx:if="{{meetingList.length == 0}}" class="no-data">暂无会议记录!</text> <text wx:if="{{meetingList.length == 0}}" class="no-data" style="height: 50px;">暂无会议记录!</text>
</view> </view>
<view class="basic-info" style="margin-top: 10px;"> <view class="basic-info" style="margin-top: 10px;">
<view class="title"> <view class="title">
@@ -108,7 +108,7 @@
<image wx:if='{{item.sendMethod === 1}}' src="../../assets/images/ems.png"></image> <image wx:if='{{item.sendMethod === 1}}' src="../../assets/images/ems.png"></image>
<text>{{item.sendMethod_dictText ? item.sendMethod_dictText : '未邮寄'}}</text> <text>{{item.sendMethod_dictText ? item.sendMethod_dictText : '未邮寄'}}</text>
</view> </view>
<view class="way project-name">项目名称:{{item.chargeCompanyName}}</view> <view class="way project-name">项目名称:{{item.projectName}}</view>
<view class="way-info"> <view class="way-info">
<view class="way-left"> <view class="way-left">
<text class="way-left-text green">票</text> <text class="way-left-text green">票</text>
+2 -2
View File
@@ -1,4 +1,4 @@
import Api from '../../assets/js/http/api' import {baseUrl, URL_CONFIG} from '../../assets/js/project.config'
Page({ Page({
data: { data: {
context1: null, context1: null,
@@ -52,7 +52,7 @@ Page({
success(res) { // 完成签字 success(res) { // 完成签字
//得到了图片 上传到服务器 //得到了图片 上传到服务器
wx.uploadFile({ wx.uploadFile({
url: Api.baseUrl + Api.URL_CONFIG + "/sys/common/upload", url: baseUrl + URL_CONFIG + "/sys/common/upload",
filePath: res.tempFilePath, filePath: res.tempFilePath,
name: "file", name: "file",
formData: { formData: {