123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- <template>
- <view class="page-content">
- <u-gap height="10" bg-color="#f8f8f8"></u-gap>
- <u-field
- class="field-item"
- v-model="storeName"
- disabled
- input-align="right"
- label="收取门店"
- placeholder="请填写手机号"
- >
- </u-field>
- <u-field
- v-model="remarks"
- label="备注"
- input-align="right"
- auto-height
- placeholder="请填写备注(最多500个字符)"
- type="textarea"
- >
- </u-field>
- <view class="num-cont">
- <text class="u-required">支付数量</text>
- <view class="num-input">
- <u-input v-model="number" type="number" placeholder="请输入数量" />
- <text>个乐豆</text>
- </view>
- </view>
- <u-gap height="50" bg-color="#f8f8f8"></u-gap>
- <view class="pay-btn">
- <u-button @click="handlePay" type="error" >确认支付</u-button>
- </view>
- <!-- 确认支付弹窗 -->
- <u-popup mode="center" closeable @close="closeModal" v-model="showPayModal" width="600rpx" >
- <view class="slot-content">
- <view>请输入支付密码</view>
- <view class="text-cont">
- <view>
- <text>收取门店:</text>
- <text>{{storeName}}</text>
- </view>
- <view class="num-text">
- <text>支付数量:</text>
- <view>
- <text class="num-big">{{number}}</text>乐豆
- </view>
- </view>
- <view>
- <text>备 注:</text>
- <text>{{remarks||'--'}}</text>
- </view>
- </view>
- <view class="footer">
- <u-input v-model="password"
- input-align="center"
- type="password"
- placeholder="请输入支付密码"
- :maxlength="30"
- @confirm="confirm"
- />
- </view>
- <view class="fot-btn">
- <u-button @click="confirm" type="error" >确认支付</u-button>
- </view>
- </view>
- </u-popup>
- </view>
- </template>
- <script>
- export default{
- data() {
- return {
- storeName: '和超级大黄蜂发挥教师的回复', // 门店名称
- remarks: '', // 备注
- number: '', // 支付数量
- showPayModal: false, // 支付弹窗
- password: '', // 支付密码
- }
- },
- onLoad() {
-
- },
- methods: {
- // 确认支付
- handlePay() {
- if (!this.number) {
- uni.showToast({
- title: '请输入支付数量',
- icon: 'none'
- })
- } else {
- this.showPayModal = true
- }
- },
- // 关闭弹窗
- closeModal() {
- this.showPayModal = false
- this.password = ''
- },
- // 输入密码完成 支付
- confirm(e) {
- console.log(e,'eeeee')
-
- }
- },
- }
- </script>
- <style lang="less">
- page{
- height: 100%;
- }
- .page-content{
- width: 100%;
- height: 100%;
- background-color: #fff;
- .num-cont{
- width: 100%;
- padding: 30upx;
- .num-input{
- display: flex;
- align-items: center;
- justify-content: center;
- >u-input {
- width: 300upx;
- border-bottom: 1px solid #f8f8f8;
- }
- }
- }
- .pay-btn{
- padding: 0 30upx;
- }
- }
- .slot-content{
- padding: 30upx 0;
- font-size: 32upx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- .text-cont{
- width: 100%;
- margin-top: 20upx;
- border-bottom: 1px solid #F8F8F8;
- >view {
- padding: 10upx 40upx;
- display: flex;
- >text{
- &:last-child {
- flex: 1;
- padding-left: 30upx;
- }
- }
- .num-big{
- font-size: 36upx;
- color: red;
- padding-left: 30upx;
- }
- }
- .num-text{
- align-items: center;
- }
-
- }
- .footer{
- width: 80%;
- border-bottom: 1px solid #b1b1b1;
- }
- .fot-btn{
- margin-top: 30upx;
- }
- }
- </style>
|