提交 3977630f 编写于 作者: DCloud-yyl's avatar DCloud-yyl

web端与app端截图差异优化:去掉rpx单位

上级 52df0bca
<template> <template>
<view style="flex: 1;"> <view style="flex: 1;">
<view class="uni-padding-wrap uni-common-mt"> <view class="uni-padding-wrap uni-common-mt">
<view class="uni-common-mt" style="border-width: 2rpx;border-style: solid; border-radius: 4rpx;"> <view class="uni-common-mt" style="border-width: 2px;border-style: solid; border-radius: 4px;">
<textarea :value="res" class="uni-textarea"></textarea> <textarea :value="res" class="uni-textarea"></textarea>
</view> </view>
<view> <view>
...@@ -13,55 +13,55 @@ ...@@ -13,55 +13,55 @@
</view> </view>
</view> </view>
<scroll-view style="flex: 1;" show-scrollbar="true"> <scroll-view style="flex: 1;" show-scrollbar="true">
<view style="padding: 20rpx;"> <view style="padding: 20px;">
<text>设置请求方式</text> <text>设置请求方式</text>
<view class="uni-common-pb"></view> <view class="uni-common-pb"></view>
<view style="flex-direction: row;flex-wrap: wrap;"> <view style="flex-direction: row;flex-wrap: wrap;">
<button style="padding: 5rpx; margin-right: 10rpx;" type="primary" size="mini" <button style="padding: 5px; margin-right: 10px;" type="primary" size="mini"
@click="changeMethod('GET')">GET</button> @click="changeMethod('GET')">GET</button>
<button style="padding: 5rpx; margin-right: 10rpx; " type="primary" size="mini" <button style="padding: 5px; margin-right: 10px; " type="primary" size="mini"
@click="changeMethod('POST')">POST</button> @click="changeMethod('POST')">POST</button>
<button style="padding: 5rpx; margin-right: 10rpx; " type="primary" size="mini" <button style="padding: 5px; margin-right: 10px; " type="primary" size="mini"
@click="changeMethod('PUT')">PUT</button> @click="changeMethod('PUT')">PUT</button>
<button style="padding: 5rpx; margin-right: 10rpx;" type="primary" size="mini" <button style="padding: 5px; margin-right: 10px;" type="primary" size="mini"
@click="changeMethod('DELETE')">DELETE</button> @click="changeMethod('DELETE')">DELETE</button>
<button style="padding: 5rpx; margin-right: 10rpx; " type="primary" size="mini" <button style="padding: 5px; margin-right: 10px; " type="primary" size="mini"
@click="changeMethod('PATCH')">PATCH</button> @click="changeMethod('PATCH')">PATCH</button>
<button style="padding: 5rpx;margin-right: 10rpx;" type="primary" size="mini" <button style="padding: 5px;margin-right: 10px;" type="primary" size="mini"
@click="changeMethod('OPTIONS')">OPTIONS</button> @click="changeMethod('OPTIONS')">OPTIONS</button>
<button style="padding: 5rpx;" type="primary" size="mini" @click="changeMethod('HEAD')">HEAD</button> <button style="padding: 5px;" type="primary" size="mini" @click="changeMethod('HEAD')">HEAD</button>
</view> </view>
</view> </view>
<view style="padding: 20rpx;"> <view style="padding: 20px;">
<text>请求返回错误码的接口(默认为GET)</text> <text>请求返回错误码的接口(默认为GET)</text>
<view class="uni-common-pb"></view> <view class="uni-common-pb"></view>
<view style="flex-direction: row;flex-wrap: wrap;"> <view style="flex-direction: row;flex-wrap: wrap;">
<button style="padding: 5rpx;" type="primary" size="mini" v-for="(item, index) in errorCodeUrls" :key="index" <button style="padding: 5px;" type="primary" size="mini" v-for="(item, index) in errorCodeUrls" :key="index"
@click="changeUrl(item)">{{item}}</button> @click="changeUrl(item)">{{item}}</button>
</view> </view>
</view> </view>
<view style="padding: 20rpx;"> <view style="padding: 20px;">
<text>请求不同header的接口(默认为GET)</text> <text>请求不同header的接口(默认为GET)</text>
<view class="uni-common-pb"></view> <view class="uni-common-pb"></view>
<view style="flex-direction: row;flex-wrap: wrap;"> <view style="flex-direction: row;flex-wrap: wrap;">
<button style="padding: 5rpx;" type="primary" size="mini" v-for="(item, index) in headerUrls" :key="index" <button style="padding: 5px;" type="primary" size="mini" v-for="(item, index) in headerUrls" :key="index"
@click="changeUrl(item)">{{item}}</button> @click="changeUrl(item)">{{item}}</button>
</view> </view>
</view> </view>
<view style="padding: 20rpx;"> <view style="padding: 20px;">
<text>请求不同content-type的接口(默认为GET)</text> <text>请求不同content-type的接口(默认为GET)</text>
<view class="uni-common-pb"></view> <view class="uni-common-pb"></view>
<view style="flex-direction: row;flex-wrap: wrap;"> <view style="flex-direction: row;flex-wrap: wrap;">
<button style="padding: 5rpx;" type="primary" size="mini" v-for="(item, index) in contentTypeUrls" <button style="padding: 5px;" type="primary" size="mini" v-for="(item, index) in contentTypeUrls"
:key="index" @click="changeUrl(item)">{{item}}</button> :key="index" @click="changeUrl(item)">{{item}}</button>
</view> </view>
</view> </view>
<view style="padding: 20rpx;"> <view style="padding: 20px;">
<text>POST请求(有body)</text> <text>POST请求(有body)</text>
<view class="uni-common-pb"></view> <view class="uni-common-pb"></view>
<view style="flex-direction: row;flex-wrap: wrap;"> <view style="flex-direction: row;flex-wrap: wrap;">
<button style="padding: 5rpx;" type="primary" size="mini" v-for="(item, index) in postUrls" :key="index" <button style="padding: 5px;" type="primary" size="mini" v-for="(item, index) in postUrls" :key="index"
@click="changeUrlFromPost(item)">{{item}}</button> @click="changeUrlFromPost(item)">{{item}}</button>
</view> </view>
</view> </view>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册