|
@@ -0,0 +1,108 @@
|
|
|
|
+<template>
|
|
|
|
+ <div id="detail">
|
|
|
|
+ <el-row>
|
|
|
|
+ <el-col :span="24" class="debt">
|
|
|
|
+ <el-col :span="24" class="top">
|
|
|
|
+ <topInfo :topTitle="topTitle" :display="display"></topInfo>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="24" class="main">
|
|
|
|
+ <el-col :span="24" class="back">
|
|
|
|
+ <detailTop @goBack="goBack"></detailTop>
|
|
|
|
+ </el-col>
|
|
|
|
+ <el-col :span="24" class="info">
|
|
|
|
+ <zhidaoForm :ruleForm="ruleForm" @submitForm="submitForm" @resetForm="resetForm"></zhidaoForm>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-col>
|
|
|
|
+ </el-row>
|
|
|
|
+ </div>
|
|
|
|
+</template>
|
|
|
|
+
|
|
|
|
+<script>
|
|
|
|
+import topInfo from '@/layout/common/topInfo.vue';
|
|
|
|
+import detailTop from '@/layout/common/detailTop.vue';
|
|
|
|
+import zhidaoForm from '@/layout/zhidao/zhidaoForm.vue';
|
|
|
|
+import { createNamespacedHelpers, mapGetters } from 'vuex';
|
|
|
|
+
|
|
|
|
+export default {
|
|
|
|
+ name: 'detail',
|
|
|
|
+ props: {},
|
|
|
|
+ components: {
|
|
|
|
+ topInfo, //头部导航
|
|
|
|
+ detailTop, //头部返回
|
|
|
|
+ zhidaoForm, //添加其他用户
|
|
|
|
+ },
|
|
|
|
+ data: () => ({
|
|
|
|
+ display: 'none',
|
|
|
|
+ topTitle: '新闻中心内容管理',
|
|
|
|
+ ruleForm: {},
|
|
|
|
+ }),
|
|
|
|
+ created() {
|
|
|
|
+ this.searchInfo();
|
|
|
|
+ },
|
|
|
|
+ computed: {
|
|
|
|
+ id() {
|
|
|
|
+ return this.$route.query.id;
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+ methods: {
|
|
|
|
+ // ...otheruser(['query', 'fetch', 'update', 'create']),
|
|
|
|
+ // ...character({ charquery: 'query', charFetch: 'fetch' }),
|
|
|
|
+ async searchInfo() {
|
|
|
|
+ // if (this.id) {
|
|
|
|
+ // const res = await this.fetch(this.id);
|
|
|
|
+ // this.$set(this, `ruleForm`, res.data);
|
|
|
|
+ // }
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ // 提交
|
|
|
|
+ async submitForm({ data }) {
|
|
|
|
+ // let res;
|
|
|
|
+ // if (this.id) {
|
|
|
|
+ // res = await this.update(data);
|
|
|
|
+ // if (res.errcode === 0) {
|
|
|
|
+ // this.$message({
|
|
|
|
+ // message: '信息修改成功',
|
|
|
|
+ // type: 'success',
|
|
|
|
+ // });
|
|
|
|
+ // }
|
|
|
|
+ // } else {
|
|
|
|
+ // res = await this.create(data);
|
|
|
|
+ // if (res.errcode === 0) {
|
|
|
|
+ // this.$message({
|
|
|
|
+ // message: '信息创建成功',
|
|
|
|
+ // type: 'success',
|
|
|
|
+ // });
|
|
|
|
+ // }
|
|
|
|
+ // }
|
|
|
|
+ // if (this.$checkRes(res)) this.resetForm();
|
|
|
|
+ // console.log(res.data);
|
|
|
|
+ },
|
|
|
|
+ // 取消
|
|
|
|
+ resetForm() {
|
|
|
|
+ this.$router.push({ path: '/news/index' });
|
|
|
|
+ },
|
|
|
|
+ // 返回
|
|
|
|
+ goBack() {
|
|
|
|
+ this.$router.go(-1);
|
|
|
|
+ },
|
|
|
|
+ },
|
|
|
|
+};
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+<style lang="less" scoped>
|
|
|
|
+.debt {
|
|
|
|
+ padding: 20px;
|
|
|
|
+}
|
|
|
|
+.top {
|
|
|
|
+ border-bottom: 1px solid #ccc;
|
|
|
|
+}
|
|
|
|
+.main {
|
|
|
|
+ border-radius: 10px;
|
|
|
|
+ margin: 20px 0 0 0;
|
|
|
|
+ box-shadow: 0 0 3px #666;
|
|
|
|
+}
|
|
|
|
+.main .back {
|
|
|
|
+ padding: 10px 0 10px 15px;
|
|
|
|
+}
|
|
|
|
+</style>
|