提交 faa1d73a authored 作者: 刘旭's avatar 刘旭

添加银行展示字段

上级 de92eb27
......@@ -353,6 +353,7 @@
{ title: '收货email', value: data.quotationEmail, type: 'quotationEmail' },
{ title: '收货联系电话', value: data.quotationTel, type: 'quotationTel' },
{ title: '订单号', value: data.noOrder, type: 'noOrder' },
{ title: '开户银行', value: data.bank, type: 'bank' },
{ title: '预计交货时间', value: data.deliveryDate, type: 'deliveryDate' },
{ title: '交货期', value: data.deliveryTime, type: 'deliveryTime' },
{ title: '交货地址', value: data.deliveryAddr, type: 'deliveryAddr' },
......
......@@ -60,7 +60,7 @@ let rules = ref({
contactsEmail: [
{ required: true, message: '请输入email', trigger: 'blur' },
{
validator: (rule, value: any, callback) => {
validator: (rule: any, value: any, callback: any) => {
return proxy.$u.test.email(value);
},
message: 'email不正确',
......
......@@ -69,6 +69,8 @@ let delGoods = ref({
// 上拉加载数据
onReachBottom(() => {
console.log('上拉加载');
// 判断是否还有下一页数据
if (collectQuery.value.page * collectQuery.value.limit >= total.value)
return (status.value = 'nomore');
......
......@@ -96,7 +96,6 @@ import { getAuthInfo, resetNickName, resetByMobile, resetEmail, resetWorkAddr, r
import config from '@/utils/config';
let ctx: any = getCurrentInstance();
let $u = ctx.appContext.config.globalProperties.$u; // uview方法
let title = ref('')
let label = ref('')
let userData = ref({
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论