This commit is contained in:
Gdpao 2020-08-18 15:58:57 +08:00
parent 87c321be99
commit b35222853d
2 changed files with 4 additions and 4 deletions

View File

@ -73,7 +73,7 @@
<u-popup v-model="publishstate" mode="bottom">
<view class="publish">
<view class="list">
<view @click="navto('release/tosign')">
<view @click="navto('release/tosign')" v-if="0">
<image src="../../static/image/index/live.png"></image>
<text>直播</text>
</view>
@ -541,7 +541,7 @@ export default {
.list {
display: flex;
align-items: center;
justify-content: space-between;
justify-content: space-around;
width: 100%;
> view {
display: flex;

View File

@ -34,7 +34,7 @@
</view>
<view class="form-view active" @click="show_add()">+ 新建标签</view>
<view :class="['form-view', item.state == true ? 'active' : '']" v-for="(item, index) in fileListes" :key="index" @click="changeselect(index)">
{{ item.name }}
{{ item.name }}{{ item.state }}
<u-icon v-show="is_edit && item.user_id != 0" class="close" name="close" color="#666" size="18" @click="isTable(item.id,index)"></u-icon>
</view>
</view>
@ -301,6 +301,7 @@ export default {
} else {
this.tagcontent = '';
this.show = false;
res.data.state = true;
this.fileListes.push(res.data);
// this.$refs.uToast.show({
// title: res.message,
@ -341,7 +342,6 @@ export default {
title: "提示",
content: "是否删除此标签?",
success: (res) => {
console.log();
if (res.confirm) {
this.delTable(id,index);
}