Commit 01be6617ea914e1639b3bd429d578bbb49c74af7
1 parent
c036723c
测试库
Showing
4 changed files
with
29 additions
and
5 deletions
pages/addTitle/addTitle.vue
| ... | ... | @@ -226,7 +226,7 @@ export default { |
| 226 | 226 | remark: this.baseFormDataPerson.remark, |
| 227 | 227 | isDefault: '1',// 是否默认客户抬头信息,1表示是默认抬头信息,0不是默认抬头信息(默认0) |
| 228 | 228 | invoiceType: '0', // 发票类型(个人、公司),0 表示个人,1表示公司 |
| 229 | - phone: this.baseFormDataPerson.phone, | |
| 229 | + phone: this.baseFormDataPerson.telphone, | |
| 230 | 230 | }; |
| 231 | 231 | uni.request({ |
| 232 | 232 | url: insertCustInvoiceInfo, | ... | ... |
pages/billing/billing.vue
| ... | ... | @@ -299,7 +299,14 @@ export default { |
| 299 | 299 | }) |
| 300 | 300 | return |
| 301 | 301 | } |
| 302 | - | |
| 302 | + console.log(this.moneyTotal) | |
| 303 | + if(this.moneyTotal>=1000000){ | |
| 304 | + uni.showToast({ | |
| 305 | + icon:'none', | |
| 306 | + title: `所选总金额不能超过1万` | |
| 307 | + }) | |
| 308 | + return | |
| 309 | + } | |
| 303 | 310 | var openTicketForCustInvoiceHisInfo = this.$common.openTicketForCustInvoiceHisInfo; |
| 304 | 311 | var jsondata = { |
| 305 | 312 | orderList: JSON.stringify(orderList), | ... | ... |
pages/index/index.vue
| ... | ... | @@ -20,9 +20,9 @@ |
| 20 | 20 | <view class="paddinglr30 uni-common-mt"> |
| 21 | 21 | <button type="primary" @click="login">登录</button> |
| 22 | 22 | </view> |
| 23 | - <view class="uni-common-mt login-foot"> | |
| 24 | - 点击"登录",即表示你同意<view style="color: blue;">《商户用户协议》</view> | |
| 25 | - </view> | |
| 23 | + <!--<view class="uni-common-mt login-foot">--> | |
| 24 | + <!--点击"登录",即表示你同意<view style="color: blue;">《商户用户协议》</view>--> | |
| 25 | + <!--</view>--> | |
| 26 | 26 | </view> |
| 27 | 27 | <view class="bg-white" v-else> |
| 28 | 28 | <view class="index-top"> | ... | ... |
pages/webview/webview.vue
0 → 100644
| 1 | +<template> | |
| 2 | + <web-view src="https://wxgzh.renniting.cn/wechatwuxi/ChiFeng/FBCC/sceshi.html#/plateNumber"></web-view> | |
| 3 | +</template> | |
| 4 | + | |
| 5 | +<script> | |
| 6 | +export default { | |
| 7 | + data() { | |
| 8 | + return { | |
| 9 | + url: '' | |
| 10 | + } | |
| 11 | + }, | |
| 12 | + // onLoad(item) { | |
| 13 | + // // 传入需要跳转的链接 使用web-view标签进行跳转 | |
| 14 | + // this.url = decodeURIComponent(item.url) | |
| 15 | + // } | |
| 16 | +} | |
| 17 | +</script> | |
| 0 | 18 | \ No newline at end of file | ... | ... |