Commit fc217f74 authored by zhengke's avatar zhengke

修改

parent 90b95da4
...@@ -547,10 +547,10 @@ ...@@ -547,10 +547,10 @@
} }
let str = ""; let str = "";
if (num == 4) { if (num == 4) {
str = "批量上架,是否继续"; str = "批量启用,是否继续";
} }
if (num == 5) { if (num == 5) {
str = "批量下架,是否继续"; str = "批量禁用,是否继续";
} }
if (num == 6) { if (num == 6) {
str = "是否确认删除选中的课程?"; str = "是否确认删除选中的课程?";
......
...@@ -99,8 +99,8 @@ ...@@ -99,8 +99,8 @@
<el-button v-else class="button-new-tag" size="small" @click="showInput">+ 标签</el-button> <el-button v-else class="button-new-tag" size="small" @click="showInput">+ 标签</el-button>
</el-form-item> </el-form-item>
<el-form-item label="资讯状态"> <el-form-item label="资讯状态">
<el-radio v-model="addMsg.ArticleStatus" :label="1">上架</el-radio> <el-radio v-model="addMsg.ArticleStatus" :label="1">启用</el-radio>
<el-radio v-model="addMsg.ArticleStatus" :label="2">下架</el-radio> <el-radio v-model="addMsg.ArticleStatus" :label="2">禁用</el-radio>
</el-form-item> </el-form-item>
<el-form-item label="关联老师"> <el-form-item label="关联老师">
<el-select class="w150" style="margin-right: 10px;" v-model="addMsg.TeacherId" size="small" <el-select class="w150" style="margin-right: 10px;" v-model="addMsg.TeacherId" size="small"
...@@ -112,7 +112,7 @@ ...@@ -112,7 +112,7 @@
</el-form-item> </el-form-item>
<el-form-item label="头像" size="small"> <el-form-item label="头像" size="small">
<el-button @click="openChangeDig(1)" size="small">选择文件</el-button> <el-button @click="openChangeDig(1)" size="small">选择文件</el-button>
<div class="app-gallery-item" style="position: relative;width: 100px;margin-top: 10px;"> <div class="app-gallery-item" style="position: relative;width: 100px;margin-top: 10px;border:none;">
<img v-if="!addMsg.ArticlePic || addMsg.ArticlePic==''" src="../../assets/img/default.png" <img v-if="!addMsg.ArticlePic || addMsg.ArticlePic==''" src="../../assets/img/default.png"
style="width:80px;height:80px" alt=""> style="width:80px;height:80px" alt="">
<img v-else style="width:80px;height:80px" :src="addMsg.ArticlePic" alt=""> <img v-else style="width:80px;height:80px" :src="addMsg.ArticlePic" alt="">
...@@ -372,10 +372,10 @@ ...@@ -372,10 +372,10 @@
ArticleStatus: num, ArticleStatus: num,
} }
if (num == 1) { if (num == 1) {
str = "批量上架,是否继续"; str = "批量启用,是否继续";
} }
if (num == 2) { if (num == 2) {
str = "批量下架,是否继续"; str = "批量禁用,是否继续";
} }
if (num == 3) { if (num == 3) {
str = "是否确认删除选中的资讯?"; str = "是否确认删除选中的资讯?";
......
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