123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- <template>
- <view class="page">
- <view class="commodity-information">
- <view class="commodity-1">
- <image class="commodity-img"
- src="https://img11.360buyimg.com/jdcms/s460x460_jfs/t1/156939/24/43697/126104/6619de23F69802006/8432635baed61875.jpg.webp"
- mode=""></image>
- <view class="commodity-right">
- <view class="commodity-2">
- <view class="commodity-title">
- OATLY 噢麦力 醇香燕麦…
- </view>
- </view>
- <view class="commodity-3">
- <view class="specifications">
- 【醇香】250ml*3
- </view>
- <view style="font-size: 24rpx;">
- x1
- </view>
- </view>
- <view class="commodity-price">
- <text style="font-size: 20rpx;">¥</text>
- <text>133</text>.
- <text style="font-size: 20rpx;">22</text>
- </view>
- </view>
- </view>
- </view>
- <view class="reason">
- <view class="application-reason">
- <view class="">
- 申请原因
- </view>
- <view class="right" @click="openReason">
- <text>{{refundText}}</text>
- <image class="right-icon" src="../../static/mine/325.png" mode=""></image>
- </view>
- </view>
- <view class="application-reason">
- <view class="">
- 退款金额
- </view>
- <view class="commodity-price">
- <text style="font-size: 20rpx;">¥</text>
- <text>133</text>.
- <text style="font-size: 20rpx;">22</text>
- </view>
- </view>
- </view>
-
- <view class="application-explain">
- <view class="application-title">
- 申请说明
- </view>
- <view class="textarea">
- <u--textarea v-model="value1" border="none" placeholder="请您详细填写申请说明" ></u--textarea>
-
- <u-upload
- :fileList="fileList6"
- @afterRead="afterRead"
- @delete="deletePic"
- name="6"
- multiple
- :maxCount="1"
- width="250"
- height="150"
- >
-
- <view class="unload">
- <view class="text-content">
- 上传凭证<br/>(最多9张)
- </view>
-
- </view>
- </u-upload>
- </view>
- </view>
- <reasonPopupVue :show="show" @close="close"></reasonPopupVue>
- </view>
- </template>
- <script>
- import reasonPopupVue from './component/reasonPopup.vue';
- export default {
- components: {
- reasonPopupVue
- },
- data() {
- return {
- show: false,
- value1:"",
- refundText:"请选择退款原因"
- };
- },
- methods: {
- openReason() {
- this.show = true
- },
- close(value) {
- console.log(value)
- this.refundText = value
- this.show = false
- }
- },
- mounted() {
- uni.setNavigationBarTitle({
- title:"申请退款"
- })
- }
- }
- </script>
- <style lang="scss" scoped>
- .page {
- padding: 20rpx 24rpx;
- .commodity-information {
- padding: 28rpx 20rpx;
- background-color: #fff;
- border-radius: 16rpx;
- .commodity-1 {
- display: flex;
- .commodity-img {
- width: 156rpx;
- height: 156rpx;
- margin-right: 20rpx;
- border-radius: 10rpx;
- }
- .commodity-right {
- width: 73%;
- }
- .commodity-2 {
- display: flex;
- justify-content: space-between;
- width: 100%;
- .commodity-title {
- width: 328rpx;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- margin-right: 38rpx;
- }
- }
- .commodity-3 {
- display: flex;
- justify-content: space-between;
- margin-top: 20rpx;
- color: #777;
- .specifications {
- font-size: 28rpx;
- color: #777;
- }
- }
- .commodity-price {
- margin-top: 24rpx;
- font-weight: 600;
- }
- }
- }
- .reason {
- background-color: #fff;
- padding: 0 20rpx;
- border-radius: 16rpx;
- margin-top: 20rpx;
- .application-reason {
- display: flex;
- justify-content: space-between;
- height: 104rpx;
- align-items: center;
- font-size: 28rpx;
- .right {
- display: flex;
- align-items: center;
- color: rgba(34, 34, 34, .6);
- font-size: 28rpx;
- }
- .right-icon {
- width: 32rpx;
- height: 32rpx;
- }
- }
- }
- .application-explain{
- margin-top: 20rpx;
- padding: 28rpx 20rpx;
- background-color: #fff;
- border-radius: 16rpx;
- .application-title{
- font-size: 28rpx;
- color: #222;
- margin-bottom: 18rpx;
- }
- .textarea{
- background-color: #f4f4f4;
- padding: 24rpx;
- border-radius: 16rpx;
- }
- .unload{
- width: 614rpx;
- height: 152rpx;
- text-align: center;
- border-radius: 16rpx;
- color: #929292;
- border: 2rpx dashed #979797;
- font-size: 20rpx;
- .text-content{
- margin-top: 80rpx;
- }
- }
- }
- }
- .u-textarea{
- background-color: #f4f4f4;
- padding: 0;
- }
- </style>
|