修改分页组件在部分场景中存在缓存问题导致部分数据无法查看的问题
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
// pages/invoiceList/components/info/index.js
|
||||
import { getInvoiceInfo, updateInvoiceInfo } from "../../../../service/invoice"
|
||||
import { getUserInfo } from "../../../../service/user";
|
||||
import { alertInfo, alertSuccess, isValidPhoneNumber } from "../../../../utils/index";
|
||||
import request from '../../../../utils/request'
|
||||
const { OK } = request
|
||||
|
||||
// pages/invoiceList/components/info/index.js
|
||||
Component({
|
||||
|
||||
/**
|
||||
@@ -89,10 +89,6 @@ Component({
|
||||
alertInfo("请输入发票税号")
|
||||
return;
|
||||
}
|
||||
// if (!address) {
|
||||
// alertInfo("请输入地址")
|
||||
// return;
|
||||
// }
|
||||
if (phone && !isValidPhoneNumber(phone)) {
|
||||
alertInfo("手机号格式不正确")
|
||||
return
|
||||
|
@@ -17,7 +17,6 @@
|
||||
label="发票类型"
|
||||
readonly="{{true}}"
|
||||
autosize="{{true}}"
|
||||
|
||||
custom-style="padding-left: 0; padding-right: 0;"
|
||||
title-width="132rpx"
|
||||
border="{{ false }}"
|
||||
@@ -28,7 +27,6 @@
|
||||
label="发票类型"
|
||||
readonly="{{true}}"
|
||||
autosize="{{true}}"
|
||||
|
||||
custom-style="padding-left: 0; padding-right: 0;"
|
||||
title-width="132rpx"
|
||||
border="{{ false }}"
|
||||
@@ -39,7 +37,6 @@
|
||||
label="发票类型"
|
||||
readonly="{{true}}"
|
||||
autosize="{{true}}"
|
||||
|
||||
custom-style="padding-left: 0; padding-right: 0;"
|
||||
title-width="132rpx"
|
||||
border="{{ false }}"
|
||||
@@ -50,7 +47,6 @@
|
||||
label="抬头类型"
|
||||
readonly="{{true}}"
|
||||
autosize="{{true}}"
|
||||
|
||||
custom-style="padding-left: 0; padding-right: 0;"
|
||||
title-width="132rpx"
|
||||
border="{{ false }}"
|
||||
@@ -70,7 +66,6 @@
|
||||
label="抬头类型"
|
||||
readonly="{{true}}"
|
||||
autosize="{{true}}"
|
||||
|
||||
custom-style="padding-left: 0; padding-right: 0;"
|
||||
title-width="132rpx"
|
||||
border="{{ false }}"
|
||||
@@ -81,7 +76,6 @@
|
||||
label="抬头类型"
|
||||
readonly="{{true}}"
|
||||
autosize="{{true}}"
|
||||
|
||||
custom-style="padding-left: 0; padding-right: 0;"
|
||||
title-width="132rpx"
|
||||
border="{{ false }}"
|
||||
@@ -95,7 +89,6 @@
|
||||
custom-style="padding-left: 0; padding-right: 0;"
|
||||
readonly="{{true}}"
|
||||
autosize="{{true}}"
|
||||
|
||||
title-width="132rpx"
|
||||
border="{{ false }}"
|
||||
>
|
||||
@@ -107,7 +100,6 @@
|
||||
custom-style="padding-left: 0; padding-right: 0;"
|
||||
readonly="{{editType === 'detail'}}"
|
||||
autosize="{{true}}"
|
||||
|
||||
title-width="132rpx"
|
||||
border="{{ editType === 'detail' ? false : true }}"
|
||||
>
|
||||
@@ -119,7 +111,6 @@
|
||||
custom-style="padding-left: 0; padding-right: 0;"
|
||||
readonly="{{editType === 'detail'}}"
|
||||
autosize="{{true}}"
|
||||
|
||||
title-width="132rpx"
|
||||
border="{{ editType === 'detail' ? false : true }}"
|
||||
>
|
||||
@@ -132,7 +123,6 @@
|
||||
custom-style="padding-left: 0; padding-right: 0;"
|
||||
readonly="{{editType === 'detail'}}"
|
||||
autosize="{{true}}"
|
||||
|
||||
title-width="132rpx"
|
||||
border="{{ editType === 'detail' ? false : true }}"
|
||||
bind:change="onChangeText"
|
||||
@@ -146,7 +136,6 @@
|
||||
custom-style="padding-left: 0; padding-right: 0; height: auto;"
|
||||
readonly="{{editType === 'detail'}}"
|
||||
autosize="{{true}}"
|
||||
|
||||
title-width="132rpx"
|
||||
border="{{ editType === 'detail' ? false : true }}"
|
||||
bind:change="onChangeText"
|
||||
@@ -161,16 +150,12 @@
|
||||
custom-style="padding-left: 0; padding-right: 0;"
|
||||
readonly="{{editType === 'detail'}}"
|
||||
autosize="{{true}}"
|
||||
|
||||
title-width="132rpx"
|
||||
border="{{ editType === 'detail' ? false : true }}"
|
||||
bind:change="onChangeText"
|
||||
data-name="remark"
|
||||
value="{{detail.remark || '-'}}"
|
||||
>
|
||||
<!-- <view slot="input" style="margin-top: -10rpx;">
|
||||
<view> {{detail.remark || '-'}} </view>
|
||||
</view> -->
|
||||
</van-field>
|
||||
</view>
|
||||
<view wx:else>
|
||||
@@ -303,7 +288,6 @@
|
||||
data-name="phone"
|
||||
value="{{detail.phone || '-'}}"
|
||||
>
|
||||
|
||||
</van-field>
|
||||
</view>
|
||||
<view wx:else>
|
||||
|
Reference in New Issue
Block a user