纸通宝SAAS仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

51 lines
2.5 KiB

<!--pages/home/qrcode/index.wxml-->
<cu-custom bgColor="bg-white" isBack="{{true}}">
<view slot="content">工厂设置</view>
</cu-custom>
<view class="flex flex-center" style="justify-content: flex-start;padding: 16rpx 32rpx">
<view style="height:30rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);"></view>
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">收货结算金额设置</view>
</view>
<van-radio-group value="{{ settlePriceType }}" bind:change="onTypeChange">
<van-cell-group>
<van-cell title="正常保留两位小数(默认)" clickable data-name="1" bind:click="onTypeClick">
<van-radio slot="right-icon" name="1" />
</van-cell>
<van-cell title="抹零取整" clickable data-name="2" bind:click="onTypeClick">
<van-radio slot="right-icon" name="2" />
</van-cell>
<van-cell title="四舍五入取整" clickable data-name="3" bind:click="onTypeClick">
<van-radio slot="right-icon" name="3" />
</van-cell>
</van-cell-group>
</van-radio-group>
<view class="flex flex-center" style="justify-content: flex-start;padding: 16rpx 32rpx">
<view style="height:30rpx;width:6rpx;background-image: linear-gradient(180deg, #007AFF 0%, #027BFF 15%, #5AABFF 45%, #CAF4FE 100%);"></view>
<view class="text-black text-sg text-bold" style="margin-left: 12rpx">客户支付方式</view>
</view>
<van-radio-group value="{{ settleType }}" bind:change="onPaymentChange">
<van-cell-group>
<van-cell title="现金支付(默认)" clickable data-name="1" bind:click="onPaymentClick">
<van-radio slot="right-icon" name="1" />
</van-cell>
<van-cell title="银行卡转账" clickable data-name="2" bind:click="onPaymentClick">
<van-radio slot="right-icon" name="2" />
</van-cell>
<van-cell title="微信支付" clickable data-name="4" bind:click="onPaymentClick">
<van-radio slot="right-icon" name="4" />
</van-cell>
<van-cell title="支付宝支付" clickable data-name="5" bind:click="onPaymentClick">
<van-radio slot="right-icon" name="5" />
</van-cell>
<van-cell title="千鸟代付" clickable data-name="3" bind:click="onPaymentClick">
<van-radio slot="right-icon" name="3" />
</van-cell>
</van-cell-group>
</van-radio-group>
<view style="margin-top:48rpx;padding:40rpx 80rpx">
<van-button block type="info" bind:click="submitForm">保存</van-button>
</view>
<notification id="qn-notification"/>