unknown 4 months ago
parent
commit
7cc81a98aa
  1. 1
      components/cardNav/cardNav.vue
  2. 3
      config/site.config.js
  3. 4
      manifest.json
  4. 4
      pages/userCenter/refund/comp/item.vue
  5. 12
      pages/userCenter/refund/refund.vue

1
components/cardNav/cardNav.vue

@ -9,6 +9,7 @@
props: ['navData', 'currentNav'], props: ['navData', 'currentNav'],
methods: { methods: {
changeNav(id) { changeNav(id) {
console.log(id)
this.$emit('changeNav', id) this.$emit('changeNav', id)
} }
} }

3
config/site.config.js

@ -8,3 +8,6 @@ module.exports = {
httpPrefix: 'app-api/', httpPrefix: 'app-api/',
imgUrl: 'http://jxtemp.oss-cn-hangzhou.aliyuncs.com/defaultImages/admin/bigImg/' imgUrl: 'http://jxtemp.oss-cn-hangzhou.aliyuncs.com/defaultImages/admin/bigImg/'
}; };
// 测试 http://123.6.232.1:8099/
// 正式 http://www.lyjppt.com/

4
manifest.json

@ -123,8 +123,8 @@
"disableHostCheck" : true, "disableHostCheck" : true,
"proxy" : { "proxy" : {
"/api" : { "/api" : {
"target" : "http://123.6.232.1:8099/",
// "target" : "http://www.lyjppt.com/",
// "target" : "http://123.6.232.1:8099/",
"target" : "http://www.lyjppt.com/",
"changeOrigin" : true, "changeOrigin" : true,
"secure" : true, "secure" : true,
"pathRewrite" : { "pathRewrite" : {

4
pages/userCenter/refund/comp/item.vue

@ -8,9 +8,9 @@
<view class="status"> <view class="status">
<text class="text red" v-if="item.auditStatus==-1"> </text> <text class="text red" v-if="item.auditStatus==-1"> </text>
<view class="text" v-else :class="{red: item.auditStatus==2}">{{stateTxt[item.auditStatus]}}</view> <view class="text" v-else :class="{red: item.auditStatus==2}">{{stateTxt[item.auditStatus]}}</view>
<view class="icon">
<!-- <view class="icon">
<u-icon name="arrow-right" size="14" color="#686B73" style="margin-left: 12rpx;" ></u-icon> <u-icon name="arrow-right" size="14" color="#686B73" style="margin-left: 12rpx;" ></u-icon>
</view>
</view> -->
</view> </view>
</view> </view>
<view class="target"> <view class="target">

12
pages/userCenter/refund/refund.vue

@ -84,6 +84,7 @@
}, },
methods: { methods: {
changeNav(val) { changeNav(val) {
console.log(val)
if (this.params.status == val) return if (this.params.status == val) return
this.params.status = val this.params.status = val
this.listInit() this.listInit()
@ -157,17 +158,22 @@
height: auto; height: auto;
padding-bottom: 110rpx; padding-bottom: 110rpx;
} }
.bgImg {
width: 100%;
height: auto;
padding: 0 0 1rpx 0;
}
.navBox { .navBox {
padding: 0 0 24rpx 0; padding: 0 0 24rpx 0;
} }
.card { .card {
padding: 0 28rpx; padding: 0 28rpx;
margin-bottom: 24rpx;
margin-top: 24rpx;
} }
.con { .con {
// transform: translateY(-100rpx); // transform: translateY(-100rpx);
margin-top: -100rpx;
// margin-top: -100rpx;
} }
.popCon { .popCon {
width: calc(100vw - 100rpx); width: calc(100vw - 100rpx);
@ -224,4 +230,6 @@
} }
} }
} }
</style> </style>
Loading…
Cancel
Save