调整企业基础信息数据格式增加商品权证管理发型模块

This commit is contained in:
唐明明
2021-09-06 17:28:06 +08:00
parent 291c97eabc
commit f472df0cfa
17 changed files with 3242 additions and 1043 deletions

View File

@@ -48,13 +48,15 @@
</view>
</view>
<view class="mian">
<view class="mian-title">适用权证</view>
<view class="mian-goods">
<view class="item" v-for="(item, index) in details.goods" :key="index">
<view class="item-title nowrap">{{item.name}}</view>
<view class="item-price nowrap">{{item.price}}</view>
<block v-if="details.goods.length > 0">
<view class="mian-title">适用权证</view>
<view class="mian-goods">
<view class="item" v-for="(item, index) in details.goods" :key="index">
<view class="item-title nowrap">{{item.name}}</view>
<view class="item-price nowrap">{{item.price}}</view>
</view>
</view>
</view>
</block>
<view class="mian-title">使用说明</view>
<view class="mian-text">
<text>{{details.description || '-'}}</text>
@@ -83,7 +85,7 @@
};
},
onShow() {
magCouponsInfo(16).then(res => {
magCouponsInfo(this.$Route.query.couponId).then(res => {
this.isLoding = false
this.details = res
})