|
@@ -45,104 +45,104 @@ export default {
|
|
|
column: [
|
|
|
{
|
|
|
label: '文章名称',
|
|
|
- prop: 'title',
|
|
|
+ prop: 'title'
|
|
|
},
|
|
|
{
|
|
|
label: '标签名称',
|
|
|
- prop: 'tagsName',
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- };
|
|
|
+ prop: 'tagsName'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
init() {
|
|
|
- this.data = this.$route.query;
|
|
|
- this.$api.login.sendSMS({ current: 1, size: 200 }).then((res) => {
|
|
|
+ this.data = this.$route.query
|
|
|
+ this.$api.login.sendSMS({ current: 1, size: 200 }).then(res => {
|
|
|
if (res.code === 200) {
|
|
|
- this.list = res.data.records;
|
|
|
+ this.list = res.data.records
|
|
|
}
|
|
|
- });
|
|
|
+ })
|
|
|
},
|
|
|
push() {
|
|
|
- this.$router.push({ path: '/user', query: { id: 12, type: 'test' } });
|
|
|
+ this.$router.push({ path: '/user', query: { id: 12, type: 'test' } })
|
|
|
},
|
|
|
onLoad() {
|
|
|
- this.$api.login.sendSMS({ current: 1, size: 10 }).then((res) => {
|
|
|
+ this.$api.login.sendSMS({ current: 1, size: 10 }).then(res => {
|
|
|
if (res.code === 200) {
|
|
|
- this.list = res.data.records;
|
|
|
+ this.list = res.data.records
|
|
|
}
|
|
|
- });
|
|
|
+ })
|
|
|
},
|
|
|
beforeOpen(done, type) {
|
|
|
if (['view', 'edit'].includes(type)) {
|
|
|
- this.getDetail();
|
|
|
+ this.getDetail()
|
|
|
}
|
|
|
- done();
|
|
|
+ done()
|
|
|
},
|
|
|
refreshChange() {
|
|
|
- this.onLoad();
|
|
|
+ this.onLoad()
|
|
|
},
|
|
|
rowSave(row, done, loading) {
|
|
|
const data = {
|
|
|
- projectInfoId: this.info.id,
|
|
|
- };
|
|
|
+ projectInfoId: this.info.id
|
|
|
+ }
|
|
|
this.$api.projects.meeting.save(Object.assign(row, data)).then(
|
|
|
- (res) => {
|
|
|
+ res => {
|
|
|
if (res.code === 200) {
|
|
|
- this.$message.success(res.msg);
|
|
|
+ this.$message.success(res.msg)
|
|
|
} else {
|
|
|
- this.$message.error(res.msg);
|
|
|
+ this.$message.error(res.msg)
|
|
|
}
|
|
|
- done(row);
|
|
|
- this.onLoad();
|
|
|
+ done(row)
|
|
|
+ this.onLoad()
|
|
|
},
|
|
|
- (error) => {
|
|
|
- window.console.log(error);
|
|
|
- loading();
|
|
|
+ error => {
|
|
|
+ window.console.log(error)
|
|
|
+ loading()
|
|
|
}
|
|
|
- );
|
|
|
+ )
|
|
|
},
|
|
|
rowUpdate(row, index, done, loading) {
|
|
|
const data = {
|
|
|
- projectInfoId: this.info.id,
|
|
|
- };
|
|
|
+ projectInfoId: this.info.id
|
|
|
+ }
|
|
|
this.$api.projects.meeting.update(Object.assign(row, data)).then(
|
|
|
- (res) => {
|
|
|
+ res => {
|
|
|
if (res.code === 200) {
|
|
|
- this.$message.success(res.msg);
|
|
|
+ this.$message.success(res.msg)
|
|
|
} else {
|
|
|
- this.$message.error(res.msg);
|
|
|
+ this.$message.error(res.msg)
|
|
|
}
|
|
|
- done(row);
|
|
|
- this.onLoad();
|
|
|
+ done(row)
|
|
|
+ this.onLoad()
|
|
|
},
|
|
|
- (error) => {
|
|
|
- window.console.log(error);
|
|
|
- loading();
|
|
|
+ error => {
|
|
|
+ window.console.log(error)
|
|
|
+ loading()
|
|
|
}
|
|
|
- );
|
|
|
+ )
|
|
|
},
|
|
|
rowDel(row, index, done) {
|
|
|
this.$confirm('确定将选择数据删除?', {
|
|
|
confirmButtonText: '确定',
|
|
|
cancelButtonText: '取消',
|
|
|
- type: 'warning',
|
|
|
+ type: 'warning'
|
|
|
})
|
|
|
.then(() => {
|
|
|
- return this.$api.projects.meeting.removeList({ ids: row.id });
|
|
|
+ return this.$api.projects.meeting.removeList({ ids: row.id })
|
|
|
})
|
|
|
.then(() => {
|
|
|
this.$message({
|
|
|
type: 'success',
|
|
|
- message: '操作成功!',
|
|
|
- });
|
|
|
+ message: '操作成功!'
|
|
|
+ })
|
|
|
// 数据回调进行刷新
|
|
|
- done(row);
|
|
|
- this.onLoad();
|
|
|
+ done(row)
|
|
|
+ this.onLoad()
|
|
|
})
|
|
|
- .catch(() => {});
|
|
|
- },
|
|
|
- },
|
|
|
-};
|
|
|
+ .catch(() => {})
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|