gdpao
This commit is contained in:
parent
87c321be99
commit
b35222853d
@ -73,7 +73,7 @@
|
|||||||
<u-popup v-model="publishstate" mode="bottom">
|
<u-popup v-model="publishstate" mode="bottom">
|
||||||
<view class="publish">
|
<view class="publish">
|
||||||
<view class="list">
|
<view class="list">
|
||||||
<view @click="navto('release/tosign')">
|
<view @click="navto('release/tosign')" v-if="0">
|
||||||
<image src="../../static/image/index/live.png"></image>
|
<image src="../../static/image/index/live.png"></image>
|
||||||
<text>直播</text>
|
<text>直播</text>
|
||||||
</view>
|
</view>
|
||||||
@ -541,7 +541,7 @@ export default {
|
|||||||
.list {
|
.list {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: space-between;
|
justify-content: space-around;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
> view {
|
> view {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="form-view active" @click="show_add()">+ 新建标签</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)">
|
<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>
|
<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>
|
||||||
</view>
|
</view>
|
||||||
@ -301,6 +301,7 @@ export default {
|
|||||||
} else {
|
} else {
|
||||||
this.tagcontent = '';
|
this.tagcontent = '';
|
||||||
this.show = false;
|
this.show = false;
|
||||||
|
res.data.state = true;
|
||||||
this.fileListes.push(res.data);
|
this.fileListes.push(res.data);
|
||||||
// this.$refs.uToast.show({
|
// this.$refs.uToast.show({
|
||||||
// title: res.message,
|
// title: res.message,
|
||||||
@ -341,7 +342,6 @@ export default {
|
|||||||
title: "提示",
|
title: "提示",
|
||||||
content: "是否删除此标签?",
|
content: "是否删除此标签?",
|
||||||
success: (res) => {
|
success: (res) => {
|
||||||
console.log();
|
|
||||||
if (res.confirm) {
|
if (res.confirm) {
|
||||||
this.delTable(id,index);
|
this.delTable(id,index);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user