|
@@ -230,16 +230,21 @@
|
|
|
v-hasPermi="['business:NEWS:remove']"
|
|
|
>下架</el-button
|
|
|
>
|
|
|
- <el-button
|
|
|
- v-if="scope.row.status == 0 || scope.row.status == 2"
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- v-hasPermi="['business:NEWS:remove']"
|
|
|
- @click="handleCommit(scope.row)"
|
|
|
- >提交审核</el-button>
|
|
|
+ <el-button
|
|
|
+ v-if="scope.row.status == 0 || scope.row.status == 2"
|
|
|
+ size="mini"
|
|
|
+ type="text"
|
|
|
+ v-hasPermi="['business:NEWS:remove']"
|
|
|
+ @click="handleCommit(scope.row)"
|
|
|
+ >提交审核</el-button
|
|
|
+ >
|
|
|
|
|
|
<el-button
|
|
|
- v-if="scope.row.status == 0 || scope.row.status == 2 || scope.row.status == 5"
|
|
|
+ v-if="
|
|
|
+ scope.row.status == 0 ||
|
|
|
+ scope.row.status == 2 ||
|
|
|
+ scope.row.status == 5
|
|
|
+ "
|
|
|
size="mini"
|
|
|
type="text"
|
|
|
@click="handleUpdate(scope.row)"
|
|
@@ -364,7 +369,12 @@
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
|
|
|
- <el-dialog :visible.sync="dialogVisible" fullscreen append-to-body @close="dialogVisible = false">
|
|
|
+ <el-dialog
|
|
|
+ :visible.sync="dialogVisible"
|
|
|
+ fullscreen
|
|
|
+ append-to-body
|
|
|
+ @close="dialogVisible = false"
|
|
|
+ >
|
|
|
<img width="100%" :src="form.picture" alt="" />
|
|
|
</el-dialog>
|
|
|
</div>
|
|
@@ -380,7 +390,8 @@ import {
|
|
|
upload,
|
|
|
setTop,
|
|
|
newCommit,
|
|
|
- updateAndex
|
|
|
+ updateAndex,
|
|
|
+ downloadpic,
|
|
|
} from "@/api/portal/news/NEWS.js";
|
|
|
|
|
|
export default {
|
|
@@ -504,7 +515,7 @@ export default {
|
|
|
let formData = new FormData();
|
|
|
formData.append("file", file);
|
|
|
upload(formData).then((res) => {
|
|
|
- this.form.picture = res.url;
|
|
|
+ this.form.picture = res.fileName;
|
|
|
});
|
|
|
},
|
|
|
handleRemove(file) {
|
|
@@ -595,15 +606,16 @@ export default {
|
|
|
this.form = response.data;
|
|
|
this.open = true;
|
|
|
this.title = "修改网站新闻";
|
|
|
- if (this.form.picture) {
|
|
|
- this.fileList.push({ name: "xxx", url: this.form.picture });
|
|
|
- }
|
|
|
+ downloadpic(this.form.picture).then((res) => {
|
|
|
+ let src = window.URL.createObjectURL(res);
|
|
|
+ this.fileList.push({ name: "xxx", url: src});
|
|
|
+ });
|
|
|
});
|
|
|
},
|
|
|
handleCommit(row) {
|
|
|
// let data = new FormData();
|
|
|
// data.append("id", id);
|
|
|
- let CbNewsVo = row
|
|
|
+ let CbNewsVo = row;
|
|
|
newCommit(CbNewsVo).then((response) => {
|
|
|
this.$modal.msgSuccess("提交审核成功!");
|
|
|
this.getList();
|
|
@@ -614,7 +626,6 @@ export default {
|
|
|
this.$refs["form"].validate((valid) => {
|
|
|
if (valid) {
|
|
|
if (this.form.id != null) {
|
|
|
-
|
|
|
updateAndex(this.form).then((response) => {
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
this.open = false;
|
|
@@ -622,15 +633,15 @@ export default {
|
|
|
this.reset();
|
|
|
});
|
|
|
} else {
|
|
|
- this.form.status = '1'
|
|
|
+ this.form.status = "1";
|
|
|
addNEWS(this.form).then((response) => {
|
|
|
// let formData = new FormData()
|
|
|
// formData.append('id',this.form.id)
|
|
|
// newCommit(formData).then((res) => {
|
|
|
- this.$modal.msgSuccess("新增成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
- this.reset();
|
|
|
+ this.$modal.msgSuccess("新增成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ this.reset();
|
|
|
// });
|
|
|
});
|
|
|
}
|
|
@@ -646,28 +657,33 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
submitzc() {
|
|
|
- console.log(this.form.id)
|
|
|
- this.$refs["form"].validate((valid) => {
|
|
|
- if (valid) {
|
|
|
- if(this.form.id == null){
|
|
|
- this.form.status = "0";
|
|
|
- addNEWS(this.form).then((response) => {
|
|
|
- this.$modal.msgSuccess("暂存成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
- this.reset();
|
|
|
- });
|
|
|
- }else if(this.form.status == 0 || this.form.status == 2 || this.form.status == 3 || this.form.status == 5){
|
|
|
- updateNEWS(this.form).then((response) => {
|
|
|
- this.$modal.msgSuccess("修改成功");
|
|
|
- this.open = false;
|
|
|
- this.getList();
|
|
|
- this.reset();
|
|
|
- });
|
|
|
- }
|
|
|
+ console.log(this.form.id);
|
|
|
+ this.$refs["form"].validate((valid) => {
|
|
|
+ if (valid) {
|
|
|
+ if (this.form.id == null) {
|
|
|
+ this.form.status = "0";
|
|
|
+ addNEWS(this.form).then((response) => {
|
|
|
+ this.$modal.msgSuccess("暂存成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ this.reset();
|
|
|
+ });
|
|
|
+ } else if (
|
|
|
+ this.form.status == 0 ||
|
|
|
+ this.form.status == 2 ||
|
|
|
+ this.form.status == 3 ||
|
|
|
+ this.form.status == 5
|
|
|
+ ) {
|
|
|
+ updateNEWS(this.form).then((response) => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ this.reset();
|
|
|
+ });
|
|
|
}
|
|
|
- });
|
|
|
- },
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|
|
|
const ids = row.id || this.ids;
|