|
@ -34,6 +34,7 @@ |
|
|
<el-dialog |
|
|
<el-dialog |
|
|
:title="layerTitle" |
|
|
:title="layerTitle" |
|
|
:close-on-click-modal="false" |
|
|
:close-on-click-modal="false" |
|
|
|
|
|
:show-close="false" |
|
|
:visible.sync="mkdirVisible" |
|
|
:visible.sync="mkdirVisible" |
|
|
width="616px" |
|
|
width="616px" |
|
|
height="384px" |
|
|
height="384px" |
|
@ -85,7 +86,7 @@ |
|
|
</el-form> |
|
|
</el-form> |
|
|
<div slot="footer" class="dialog-footer"> |
|
|
<div slot="footer" class="dialog-footer"> |
|
|
<el-button :loading="crud.status.cu === 2" type="primary" round @click="crud.submitCU">保 存</el-button> |
|
|
<el-button :loading="crud.status.cu === 2" type="primary" round @click="crud.submitCU">保 存</el-button> |
|
|
<el-button round @click="crud.cancelCU">关闭</el-button> |
|
|
|
|
|
|
|
|
<el-button round @click="mkdirVisible=false">取 消</el-button> |
|
|
</div> |
|
|
</div> |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
</div> |
|
|
</div> |
|
@ -96,6 +97,7 @@ |
|
|
<el-dialog |
|
|
<el-dialog |
|
|
title="上传列表" |
|
|
title="上传列表" |
|
|
:close-on-click-modal="false" |
|
|
:close-on-click-modal="false" |
|
|
|
|
|
:show-close="false" |
|
|
:visible.sync="uploadListVisible" |
|
|
:visible.sync="uploadListVisible" |
|
|
height="384px" |
|
|
height="384px" |
|
|
> |
|
|
> |
|
@ -142,15 +144,15 @@ |
|
|
> |
|
|
> |
|
|
<div class="right_upload">点击上传</div> |
|
|
<div class="right_upload">点击上传</div> |
|
|
</el-upload> |
|
|
</el-upload> |
|
|
<div class="upload_return">返回</div> |
|
|
|
|
|
|
|
|
<div class="upload_return" @click="uploadListVisible=false">返回</div> |
|
|
</div> |
|
|
</div> |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
</div> |
|
|
</div> |
|
|
|
|
|
|
|
|
<!-- 多选操作 --> |
|
|
<!-- 多选操作 --> |
|
|
<div v-if="contentIds.length !== 0" class="multi_handle"> |
|
|
<div v-if="contentIds.length !== 0" class="multi_handle"> |
|
|
<el-button type="button" class="mulit_btn">即时发布</el-button> |
|
|
|
|
|
<el-button type="button" class="mulit_btn">定时发布</el-button> |
|
|
|
|
|
|
|
|
<el-button type="button" class="mulit_btn" @click="publishHandle(0)">即时发布</el-button> |
|
|
|
|
|
<el-button type="button" class="mulit_btn" @click="publishHandle(1)">定时发布</el-button> |
|
|
<el-button |
|
|
<el-button |
|
|
type="button" |
|
|
type="button" |
|
|
class="mulit_btn" |
|
|
class="mulit_btn" |
|
@ -168,6 +170,7 @@ |
|
|
<el-dialog |
|
|
<el-dialog |
|
|
title="移动至" |
|
|
title="移动至" |
|
|
:close-on-click-modal="false" |
|
|
:close-on-click-modal="false" |
|
|
|
|
|
:show-close="false" |
|
|
:visible.sync="movingVisible" |
|
|
:visible.sync="movingVisible" |
|
|
width="576px" |
|
|
width="576px" |
|
|
height="384px" |
|
|
height="384px" |
|
@ -187,7 +190,7 @@ |
|
|
</div> |
|
|
</div> |
|
|
<div slot="footer" class="dialog-footer"> |
|
|
<div slot="footer" class="dialog-footer"> |
|
|
<el-button type="primary" round>确定</el-button> |
|
|
<el-button type="primary" round>确定</el-button> |
|
|
<el-button round @click="crud.cancelCU">取消</el-button> |
|
|
|
|
|
|
|
|
<el-button round @click="movingVisible=false">取消</el-button> |
|
|
</div> |
|
|
</div> |
|
|
</el-dialog> |
|
|
</el-dialog> |
|
|
</div> |
|
|
</div> |
|
@ -296,6 +299,13 @@ export default { |
|
|
this.start() |
|
|
this.start() |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
|
|
|
publishHandle(index) { |
|
|
|
|
|
this.$router.push( |
|
|
|
|
|
{ |
|
|
|
|
|
path: '/release', query: { tag: index } |
|
|
|
|
|
} |
|
|
|
|
|
) |
|
|
|
|
|
}, |
|
|
handleMkdir() { |
|
|
handleMkdir() { |
|
|
this.mkdirVisible = true |
|
|
this.mkdirVisible = true |
|
|
}, |
|
|
}, |
|
|