【优化】去除分销申请面板按钮无用并失效报错的customStyle属性。

This commit is contained in:
大灰灰
2022-08-14 00:24:08 +08:00
parent d991e26710
commit 29656bfe5a

View File

@@ -34,8 +34,8 @@
<u-parse :content="distributionNotes" :selectable="true"></u-parse>
</view>
<view class="coreshop-bg-white coreshop-footer-fixed coreshop-foot-padding-bottom">
<u-button :custom-style="customStyle" size="normal" type="error" v-if="condition.conditionStatus" @click="goApply()">申请</u-button>
<u-button :custom-style="customStyle" size="normal" type="primary" v-else>您的条件暂不满足</u-button>
<u-button size="normal" type="error" v-if="condition.conditionStatus" @click="goApply()">申请</u-button>
<u-button size="normal" type="primary" v-else>您的条件暂不满足</u-button>
</view>
</view>
</view>
@@ -45,9 +45,6 @@
export default {
data() {
return {
customStyle: {
width: '100%',
},
show: false,
condition: {}
}