|
@@ -1,18 +1,142 @@
|
|
<template>
|
|
<template>
|
|
- <div>
|
|
|
|
- <router-link to='/user/pass'><el-button >调整到404</el-button></router-link>
|
|
|
|
|
|
+ <div class='full-width full-height flex flex-col flex-justify-start'>
|
|
|
|
+ <div>
|
|
|
|
+ <el-button @click='push'>设置</el-button>
|
|
|
|
+ </div>
|
|
|
|
+ <avue-crud
|
|
|
|
+ :option="option"
|
|
|
|
+ :data="list"
|
|
|
|
+ ref="crud"
|
|
|
|
+ v-model="form"
|
|
|
|
+ :before-open="beforeOpen"
|
|
|
|
+ @row-del="rowDel"
|
|
|
|
+ @row-save="rowSave"
|
|
|
|
+ @row-update="rowUpdate"
|
|
|
|
+ @on-load="onLoad">
|
|
|
|
+ </avue-crud>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
+
|
|
<route>
|
|
<route>
|
|
{
|
|
{
|
|
- name: '个人中心',
|
|
|
|
|
|
+ meta: { keepAlive: true }
|
|
}
|
|
}
|
|
</route>
|
|
</route>
|
|
|
|
+
|
|
<script>
|
|
<script>
|
|
|
|
+
|
|
export default {
|
|
export default {
|
|
- name: 'index.vue'
|
|
|
|
|
|
+ name: 'index',
|
|
|
|
+ data () {
|
|
|
|
+ return {
|
|
|
|
+ list: [],
|
|
|
|
+ form: {},
|
|
|
|
+ data: [],
|
|
|
|
+ option: {
|
|
|
|
+ align: 'center',
|
|
|
|
+ menuAlign: 'center',
|
|
|
|
+ menuWidth: 380,
|
|
|
|
+ size: 'mini',
|
|
|
|
+ addBtn: false,
|
|
|
|
+ refreshBtn: false,
|
|
|
|
+ columnBtn: false,
|
|
|
|
+ labelWidth: 140,
|
|
|
|
+ border: true,
|
|
|
|
+ column: [
|
|
|
|
+ {
|
|
|
|
+ label: '文章名称',
|
|
|
|
+ prop: 'title'
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ label: '标签名称',
|
|
|
|
+ prop: 'tagsName'
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ init () {
|
|
|
|
+ this.data = this.$route.query
|
|
|
|
+ this.$api.login.sendSMS({ current: 1, size: 200 }).then((res) => {
|
|
|
|
+ if (res.code === 200) {
|
|
|
|
+ this.list = res.data.records
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ push () {
|
|
|
|
+ this.$router.push({ path: '/user', query: { id: 12, type: 'test' } })
|
|
|
|
+ },
|
|
|
|
+ onLoad () {
|
|
|
|
+ this.$api.login.sendSMS({ current: 1, size: 10 }).then((res) => {
|
|
|
|
+ if (res.code === 200) {
|
|
|
|
+ this.list = res.data.records
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ beforeOpen (done, type) {
|
|
|
|
+ if (['view', 'edit'].includes(type)) {
|
|
|
|
+ this.getDetail()
|
|
|
|
+ }
|
|
|
|
+ done()
|
|
|
|
+ },
|
|
|
|
+ refreshChange () {
|
|
|
|
+ this.onLoad()
|
|
|
|
+ },
|
|
|
|
+ rowSave (row, done, loading) {
|
|
|
|
+ const data = {
|
|
|
|
+ projectInfoId: this.info.id
|
|
|
|
+ }
|
|
|
|
+ this.$api.projects.meeting.save(Object.assign(row, data)).then((res) => {
|
|
|
|
+ if (res.code === 200) {
|
|
|
|
+ this.$message.success(res.msg)
|
|
|
|
+ } else {
|
|
|
|
+ this.$message.error(res.msg)
|
|
|
|
+ }
|
|
|
|
+ done(row)
|
|
|
|
+ this.onLoad()
|
|
|
|
+ }, error => {
|
|
|
|
+ window.console.log(error)
|
|
|
|
+ loading()
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ rowUpdate (row, index, done, loading) {
|
|
|
|
+ const data = {
|
|
|
|
+ projectInfoId: this.info.id
|
|
|
|
+ }
|
|
|
|
+ this.$api.projects.meeting.update(Object.assign(row, data)).then((res) => {
|
|
|
|
+ if (res.code === 200) {
|
|
|
|
+ this.$message.success(res.msg)
|
|
|
|
+ } else {
|
|
|
|
+ this.$message.error(res.msg)
|
|
|
|
+ }
|
|
|
|
+ done(row)
|
|
|
|
+ this.onLoad()
|
|
|
|
+ }, error => {
|
|
|
|
+ window.console.log(error)
|
|
|
|
+ loading()
|
|
|
|
+ })
|
|
|
|
+ },
|
|
|
|
+ rowDel (row, index, done) {
|
|
|
|
+ this.$confirm('确定将选择数据删除?', {
|
|
|
|
+ confirmButtonText: '确定',
|
|
|
|
+ cancelButtonText: '取消',
|
|
|
|
+ type: 'warning'
|
|
|
|
+ }).then(() => {
|
|
|
|
+ return this.$api.projects.meeting.removeList({ ids: row.id })
|
|
|
|
+ }).then(() => {
|
|
|
|
+ this.$message({
|
|
|
|
+ type: 'success',
|
|
|
|
+ message: '操作成功!'
|
|
|
|
+ })
|
|
|
|
+ // 数据回调进行刷新
|
|
|
|
+ done(row)
|
|
|
|
+ this.onLoad()
|
|
|
|
+ }).catch(() => {
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
-
|
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
<style scoped>
|