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.
57 lines
1.1 KiB
57 lines
1.1 KiB
<!--
|
|
* @Author: ch
|
|
* @Date: 2022-04-11 13:51:10
|
|
* @LastEditors: ch
|
|
* @LastEditTime: 2022-04-11 17:23:00
|
|
* @Description: file content
|
|
-->
|
|
<template>
|
|
<view>
|
|
<view class="box">
|
|
<UiCell title="货物状态"></UiCell>
|
|
<UiCell title="退款原因"></UiCell>
|
|
<UiCell title="退款金额"></UiCell>
|
|
<UiCell title="问题描述"></UiCell>
|
|
</view>
|
|
<view class="box">
|
|
<u-upload
|
|
:fileList="fileList3"
|
|
@afterRead="afterRead"
|
|
@delete="deletePic"
|
|
name="3"
|
|
multiple
|
|
:maxCount="10"
|
|
:previewFullImage="true"
|
|
></u-upload>
|
|
</view>
|
|
<UiButton size="max" type="gradual">提交申请</UiButton>
|
|
</view>
|
|
</template>
|
|
<script>
|
|
import UiButton from '../../../components/UiButton.vue';
|
|
import UiCell from "../../../components/UiCell.vue";
|
|
export default {
|
|
components: { UiCell, UiButton },
|
|
data() {
|
|
return {
|
|
fileList3: [
|
|
{
|
|
url: "https://cdn.uviewui.com/uview/swiper/1.jpg",
|
|
},
|
|
],
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
<style lang="scss">
|
|
page{
|
|
background: $color-grey1;
|
|
}
|
|
</style>
|
|
<style lang="scss" scoped>
|
|
.box{
|
|
padding: 0 40rpx;
|
|
margin: 20rpx 0;
|
|
background: $color-grey0;
|
|
}
|
|
</style> |