Commit 6f49d738 authored by Facius's avatar Facius

版本号加一,文件页面加无合作商提示文字

parent 2af1a02e
(function () {
let NODE_ENV = 'test'; // dev:开发环境 | test:测试环境 | prod:生产环境
let ENV_VAR = null;
let VERSION_NUMBER = '1.3.3';//版本号
let VERSION_NUMBER = '1.3.6';//版本号
//小程序是否审核通过,参数配置在ucenter库version表,对应版本号的is_audit设置为1,将显示学习视频
if (process.env.NODE_ENV === "development") {
if (NODE_ENV === 'dev') {
......
......@@ -14,14 +14,15 @@
<u-icon name="arrow-right"></u-icon>
</view>
</view>
<view class="label-content">
<view class="label-content" v-if="item.length > 0">
<view v-for="(label, ind) in item" :key="ind" class="label-item">
<!-- 选中为蓝底,非选中状态为灰底 -->
<view :class="['label-normal', {'selected': label.id == selected[key].id}]" @click="handleClick(key, label)">
<text class="label-text">{{label.name}}</text>
</view>
</view>
</view>
</view>
<view class="tag-tip-view" v-else>{{'暂无' + items[key]}}</view>
</view>
</template>
<view class="file-title">文件列表</view>
......@@ -377,6 +378,12 @@
}
}
}
}
.tag-tip-view {
color: #999999;
width: 100%;
margin-top: 30rpx;
text-align: center;
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment