guhongwei 4 年之前
父節點
當前提交
9395445218
共有 2 個文件被更改,包括 576 次插入83 次删除
  1. 576 1
      src/views/market/index.vue
  2. 0 82
      src/views/notice/index copy.vue

+ 576 - 1
src/views/market/index.vue

@@ -144,6 +144,410 @@
         </el-col>
       </el-col>
     </el-row>
+    <el-col :span="24" class="createpro">
+      <el-button type="text" @click="dialog = true">我要<br />发布</el-button>
+    </el-col>
+    <el-dialog :visible.sync="dialog" class="releaseDialog" title="信息征集" @close="toClose" width="61%">
+      <el-tabs v-model="activeName" type="card">
+        <el-tab-pane label="技术需求" name="first">
+          <el-col :span="24" class="first">
+            <el-form ref="technologyForm" :model="technologyForm" :rules="technologyRules" label-width="140px">
+              <el-col :span="24" class="company">
+                <h1>企业信息</h1>
+                <el-col :span="24" class="compnayInfo">
+                  <el-col :span="24" class="txt">
+                    <el-form-item label="企业名称:" prop="company">
+                      <el-input v-model="technologyForm.company" placeholder="请输入企业名称"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="注册类型:">
+                      <el-input v-model="technologyForm.companytype" placeholder="请输入注册类型"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="组织机构代码:">
+                      <el-input v-model="technologyForm.companytype" placeholder="请输入组织机构代码"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="注册时间:">
+                      <el-date-picker v-model="technologyForm.companydate" type="date" placeholder="请选择时间" format="yyyy-MM-dd" value-format="yyyy-MM-dd">
+                      </el-date-picker>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="注册资金:">
+                      <el-input v-model="technologyForm.companycapital" placeholder="请输入注册资金"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="企业法人:">
+                      <el-input v-model="technologyForm.companyperson" placeholder="请输入企业法人"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="企业网址:">
+                      <el-input v-model="technologyForm.companyweb" placeholder="请输入企业网址"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="联系人:">
+                      <el-input v-model="technologyForm.contacts" placeholder="请输入联系人"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="联系电话:" prop="phone">
+                      <el-input v-model="technologyForm.phone" placeholder="请输入联系电话"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="QQ/微信:">
+                      <el-input v-model="technologyForm.qqwx" placeholder="请输入QQ/微信"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="电子邮箱:">
+                      <el-input v-model="technologyForm.email" placeholder="请输入电子邮箱"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="上年度企业总收入:">
+                      <el-input v-model="technologyForm.sndqyzsr" placeholder="请输入上年度企业总收入"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="上年度研发费用:">
+                      <el-input v-model="technologyForm.sndyffy" placeholder="请输入上年度研发费用"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="企业总人数:">
+                      <el-input v-model="technologyForm.companytotal" placeholder="请输入企业总人数"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="专(兼)职研发人数:">
+                      <el-input v-model="technologyForm.zjzyfrs" placeholder="请输入专(兼)职研发人数"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txtTwo">
+                    <el-form-item label="企业简介:">
+                      <el-input
+                        v-model="technologyForm.companybrief"
+                        type="textarea"
+                        maxlength="300"
+                        show-word-limit
+                        :autosize="{ minRows: 4, maxRows: 5 }"
+                        placeholder="请输入企业简介"
+                      ></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txtTwo">
+                    <el-form-item label="主要产品:">
+                      <el-input
+                        v-model="technologyForm.mainproduct"
+                        type="textarea"
+                        maxlength="300"
+                        show-word-limit
+                        :autosize="{ minRows: 4, maxRows: 5 }"
+                        placeholder="请输入主要产品"
+                      ></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txtTwo">
+                    <el-form-item label="企业资质(荣誉):">
+                      <el-input
+                        v-model="technologyForm.qualifications"
+                        type="textarea"
+                        maxlength="300"
+                        show-word-limit
+                        :autosize="{ minRows: 4, maxRows: 5 }"
+                        placeholder="请输入企业资质(荣誉)"
+                      ></el-input>
+                    </el-form-item>
+                  </el-col>
+                </el-col>
+              </el-col>
+              <el-col :span="24" class="product">
+                <h1>技术需求</h1>
+                <el-col :span="24" class="productInfo">
+                  <el-col :span="24" class="txt">
+                    <el-form-item label="名称:" prop="name">
+                      <el-input v-model="technologyForm.name" placeholder="请输入需求名称"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="需求紧急程度:">
+                      <el-select v-model="technologyForm.degreeurgency" placeholder="请选择需求紧急程度">
+                        <el-option label="特急" value="特急"></el-option>
+                        <el-option label="一般" value="一般"></el-option>
+                        <el-option label="储备" value="储备"></el-option>
+                      </el-select>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="所属领域:">
+                      <el-select v-model="technologyForm.field" filterable>
+                        <el-option v-for="(item, index) in fieldList" :key="index" :value="item.name" :label="item.name"></el-option>
+                      </el-select>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="投资预算:">
+                      <el-input v-model="technologyForm.budget" placeholder="请输入投资预算"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="合作方式:">
+                      <el-select v-model="technologyForm.cooperation" filterable>
+                        <el-option v-for="(item, index) in cooperationList" :key="index" :value="item.name" :label="item.name"></el-option>
+                      </el-select>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txtTwo">
+                    <el-form-item label="技术说明:">
+                      <el-input
+                        v-model="technologyForm.requirementdesc"
+                        type="textarea"
+                        maxlength="300"
+                        show-word-limit
+                        :autosize="{ minRows: 4, maxRows: 5 }"
+                        placeholder="请输入技术难题/需求说明"
+                      ></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txtTwo">
+                    <el-form-item label="预期目标:">
+                      <el-input
+                        v-model="technologyForm.expect"
+                        type="textarea"
+                        maxlength="300"
+                        show-word-limit
+                        :autosize="{ minRows: 4, maxRows: 5 }"
+                        placeholder="请输入预期技术目标描述"
+                      ></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txtTwo">
+                    <el-form-item label="需求现状:">
+                      <el-input
+                        v-model="technologyForm.present"
+                        type="textarea"
+                        maxlength="300"
+                        show-word-limit
+                        :autosize="{ minRows: 4, maxRows: 5 }"
+                        placeholder="请输入需求现状及应对措施"
+                      ></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txtTwo">
+                    <el-form-item label="合作条件及要求:">
+                      <el-input
+                        v-model="technologyForm.condition"
+                        type="textarea"
+                        maxlength="300"
+                        show-word-limit
+                        :autosize="{ minRows: 4, maxRows: 5 }"
+                        placeholder="请输入合作条件及要求"
+                      ></el-input>
+                    </el-form-item>
+                  </el-col>
+                </el-col>
+              </el-col>
+            </el-form>
+            <el-col :span="24" class="btn">
+              <el-button type="primary" size="mini" @click="technologyBtn">保存</el-button>
+            </el-col>
+          </el-col>
+        </el-tab-pane>
+        <el-tab-pane label="科技成果" name="second">
+          <el-col :span="24" class="first">
+            <el-form ref="achieveForm" :model="achieveForm" :rules="technologyRules" label-width="140px">
+              <el-col :span="24" class="company">
+                <h1>企业信息</h1>
+                <el-col :span="24" class="compnayInfo">
+                  <el-col :span="24" class="txt">
+                    <el-form-item label="企业名称:" prop="company">
+                      <el-input v-model="achieveForm.company" placeholder="请输入企业名称"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txt">
+                    <el-form-item label="企业网址:">
+                      <el-input v-model="achieveForm.companyweb" placeholder="请输入企业网址"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="联系人:">
+                      <el-input v-model="achieveForm.contacts" placeholder="请输入联系人"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="联系电话:" prop="phone">
+                      <el-input v-model="achieveForm.phone" placeholder="请输入联系电话"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="QQ/微信:">
+                      <el-input v-model="achieveForm.qqwx" placeholder="请输入QQ/微信"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="电子邮箱:">
+                      <el-input v-model="achieveForm.email" placeholder="请输入电子邮箱"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txtTwo">
+                    <el-form-item label="企业简介:">
+                      <el-input
+                        v-model="achieveForm.companybrief"
+                        type="textarea"
+                        maxlength="300"
+                        show-word-limit
+                        :autosize="{ minRows: 4, maxRows: 5 }"
+                        placeholder="请输入企业简介"
+                      ></el-input>
+                    </el-form-item>
+                  </el-col>
+                </el-col>
+              </el-col>
+              <el-col :span="24" class="product">
+                <h1>科技成果</h1>
+                <el-col :span="24" class="productInfo">
+                  <el-col :span="24" class="txt">
+                    <el-form-item label="成果名称:" prop="name">
+                      <el-input v-model="achieveForm.name" placeholder="请输入注册类型"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="所属领域:">
+                      <el-select v-model="achieveForm.field" filterable>
+                        <el-option v-for="(item, index) in fieldList" :key="index" :value="item.name" :label="item.name"></el-option>
+                      </el-select>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="合作方式:">
+                      <el-select v-model="achieveForm.cooperation" filterable>
+                        <el-option v-for="(item, index) in cooperationList" :key="index" :value="item.name" :label="item.name"></el-option>
+                      </el-select>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="12" class="txt">
+                    <el-form-item label="成果状态:">
+                      <el-select v-model="achieveForm.achievestatus" filterable>
+                        <el-option v-for="(item, index) in achievestatusList" :key="index" :value="item.name" :label="item.name"></el-option>
+                      </el-select>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txt">
+                    <el-form-item label="成果权属:">
+                      <el-input v-model="achieveForm.achieveown" placeholder="请输入成果权属"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txt">
+                    <el-form-item label="成果来源:">
+                      <el-select v-model="achieveForm.achievesource" placeholder="请选择成果来源">
+                        <el-option label="国家项目" value="国家项目"></el-option>
+                        <el-option label="省级项目" value="省级项目"></el-option>
+                        <el-option label="市级项目" value="市级项目"></el-option>
+                        <el-option label="自选项目" value="自选项目"></el-option>
+                      </el-select>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txt">
+                    <el-form-item label="意向价格:">
+                      <el-input v-model="achieveForm.intentionprice" placeholder="请输入意向价格"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txt">
+                    <el-form-item label="专利信息:">
+                      <el-input v-model="achieveForm.patentinfo" placeholder="请输入专利信息"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txt">
+                    <el-form-item label="专利状态:">
+                      <el-select v-model="achieveForm.patentstatus" placeholder="请选择专利状态">
+                        <el-option label="已申请" value="已申请"></el-option>
+                        <el-option label="已授权" value="已授权"></el-option>
+                      </el-select>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txt">
+                    <el-form-item label="项目路演:">
+                      <el-input v-model="achieveForm.roadshow" placeholder="请输入项目路演"></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txtTwo">
+                    <el-form-item label="成果简介:">
+                      <el-input
+                        v-model="achieveForm.achievebrief"
+                        type="textarea"
+                        maxlength="300"
+                        show-word-limit
+                        :autosize="{ minRows: 4, maxRows: 5 }"
+                        placeholder="请输入成果简介"
+                      ></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txtTwo">
+                    <el-form-item label="技术特点:">
+                      <el-input
+                        v-model="achieveForm.features"
+                        type="textarea"
+                        maxlength="300"
+                        show-word-limit
+                        :autosize="{ minRows: 4, maxRows: 5 }"
+                        placeholder="请输入技术特点"
+                      ></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txtTwo">
+                    <el-form-item label="技术团队:">
+                      <el-input
+                        v-model="achieveForm.team"
+                        type="textarea"
+                        maxlength="300"
+                        show-word-limit
+                        :autosize="{ minRows: 4, maxRows: 5 }"
+                        placeholder="请输入技术团队"
+                      ></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txtTwo">
+                    <el-form-item label="商业预期:">
+                      <el-input
+                        v-model="achieveForm.expectations"
+                        type="textarea"
+                        maxlength="300"
+                        show-word-limit
+                        :autosize="{ minRows: 4, maxRows: 5 }"
+                        placeholder="请输入商业预期"
+                      ></el-input>
+                    </el-form-item>
+                  </el-col>
+                  <el-col :span="24" class="txtTwo">
+                    <el-form-item label="合作条件及要求:">
+                      <el-input
+                        v-model="achieveForm.condition"
+                        type="textarea"
+                        maxlength="300"
+                        show-word-limit
+                        :autosize="{ minRows: 4, maxRows: 5 }"
+                        placeholder="请输入合作条件及要求"
+                      ></el-input>
+                    </el-form-item>
+                  </el-col>
+                </el-col>
+              </el-col>
+            </el-form>
+            <el-col :span="24" class="btn">
+              <el-button type="primary" size="mini" @click="achieveBtn">保存</el-button>
+            </el-col>
+          </el-col>
+        </el-tab-pane>
+      </el-tabs>
+    </el-dialog>
   </div>
 </template>
 
@@ -151,6 +555,7 @@
 import { mapState, createNamespacedHelpers } from 'vuex';
 const { mapActions: product } = createNamespacedHelpers('marketproduct');
 const { mapActions: expertsuser } = createNamespacedHelpers('expertsuser');
+const { mapActions: markettype } = createNamespacedHelpers('markettype');
 var moment = require('moment');
 export default {
   name: 'index',
@@ -170,13 +575,33 @@ export default {
       businessList: [],
       // 专家信息
       expertList: [],
+      // 未注册用户发布产品
+      dialog: false,
+      activeName: 'first',
+      // 所属领域
+      fieldList: [],
+      // 成果状态
+      achievestatusList: [],
+      // 合作方式
+      cooperationList: [],
+      // 技术
+      technologyForm: {},
+      // 成果
+      achieveForm: {},
+      technologyRules: {
+        company: [{ required: true, message: '请输入企业名称', trigger: 'blur' }],
+        phone: [{ required: true, message: '请输入联系电话', trigger: 'blur' }],
+        name: [{ required: true, message: '请输入需求名称', trigger: 'blur' }],
+      },
     };
   },
   created() {
     this.search();
+    this.searchtype();
   },
   methods: {
-    ...product(['newquery']),
+    ...markettype({ markettypeList: 'query' }),
+    ...product({ newquery: 'newquery', productCreate: 'create' }),
     ...expertsuser({ expertQuery: 'query' }),
     async search() {
       let res = await this.newquery({ skip: 0, limit: 4, type: '1', status: '1' });
@@ -188,6 +613,63 @@ export default {
       res = await this.expertQuery({ skip: 0, limit: 6 });
       if (this.$checkRes(res)) this.$set(this, `expertList`, res.data);
     },
+    // 未注册用户添加产品
+    // 查询字典表
+    async searchtype() {
+      // 所属领域;
+      let res = await this.markettypeList({ category: '01' });
+      if (this.$checkRes(res)) {
+        this.$set(this, `fieldList`, res.data);
+      }
+      // 成果状态;
+      res = await this.markettypeList({ category: '02' });
+      if (this.$checkRes(res)) {
+        this.$set(this, `achievestatusList`, res.data);
+      }
+      // 合作方式;
+      res = await this.markettypeList({ category: '03' });
+      if (this.$checkRes(res)) {
+        this.$set(this, `cooperationList`, res.data);
+      }
+    },
+    // 技术保存
+    async technologyBtn() {
+      let data = this.technologyForm;
+      data.type = '0';
+      data.status = '0';
+      let res = await this.productCreate(data);
+      if (this.$checkRes(res)) {
+        this.$message({
+          message: '信息创建成功',
+          type: 'success',
+        });
+        this.toClose();
+      } else {
+        this.$message.error('信息创建失败');
+      }
+    },
+    // 成果保存
+    async achieveBtn() {
+      let data = this.achieveForm;
+      data.type = '0';
+      data.status = '0';
+      let res = await this.productCreate(data);
+      if (this.$checkRes(res)) {
+        this.$message({
+          message: '信息创建成功',
+          type: 'success',
+        });
+        this.toClose();
+      } else {
+        this.$message.error('信息创建失败');
+      }
+    },
+    // 取消
+    toClose() {
+      this.technologyForm = {};
+      this.achieveForm = {};
+      this.dialog = false;
+    },
   },
   // 过滤时间
   filters: {
@@ -522,4 +1004,97 @@ export default {
     }
   }
 }
+.createpro {
+  position: fixed;
+  bottom: 100px;
+  left: 100px;
+  width: 80px;
+  height: 80px;
+  border: 1px solid #ccc;
+  border-radius: 10px;
+  text-align: center;
+  .el-button {
+    font-size: 25px;
+  }
+}
+.createpro:hover {
+  -webkit-transform: translateY(-3px);
+  -ms-transform: translateY(-3px);
+  transform: translateY(-3px);
+  -webkit-box-shadow: 0 0 6px #0085d2;
+  box-shadow: 0 0 6px #0085d2;
+  -webkit-transition: all 0.5s ease-out;
+  transition: all 0.5s ease-out;
+  cursor: pointer;
+  .el-button {
+    font-weight: bold;
+  }
+}
+.releaseDialog {
+  margin: 15px 0;
+  .first {
+    .company {
+      border: 1px solid #ccc;
+      padding: 0 15px 15px 15px;
+      h1 {
+        margin: 10px 10px;
+        border-bottom: 1px solid red;
+        height: 40px;
+        line-height: 40px;
+      }
+      .compnayInfo {
+        .txt {
+          margin: 0 0 5px 0;
+          border-bottom: 1px dashed #ccc;
+          padding: 10px 0;
+          .left {
+            text-align: center;
+            height: 40px;
+            line-height: 40px;
+            font-size: 15px;
+          }
+        }
+        .txtTwo {
+          p {
+            font-size: 15px;
+            padding: 10px;
+          }
+        }
+      }
+    }
+    .product {
+      border: 1px solid #ccc;
+      padding: 0 15px 15px 15px;
+      h1 {
+        margin: 10px 10px;
+        border-bottom: 1px solid red;
+        height: 40px;
+        line-height: 40px;
+      }
+      .productInfo {
+        .txt {
+          margin: 0 0 5px 0;
+          border-bottom: 1px dashed #ccc;
+          padding: 10px 0;
+          .left {
+            text-align: center;
+            height: 40px;
+            line-height: 40px;
+            font-size: 15px;
+          }
+        }
+        .txtTwo {
+          p {
+            font-size: 15px;
+            padding: 10px;
+          }
+        }
+      }
+    }
+    .btn {
+      text-align: center;
+      margin: 15px 0;
+    }
+  }
+}
 </style>

+ 0 - 82
src/views/notice/index copy.vue

@@ -1,82 +0,0 @@
-<template>
-  <div id="index">
-    <el-row>
-      <el-col :span="24" class="main">
-        <div class="w_1200">
-          <el-col :span="24" class="bt">{{ noticeInfo.title }}</el-col>
-          <el-col :span="24" class="date">
-            <span>来源:{{ noticeInfo.source }}</span>
-            <span>发布时间:{{ noticeInfo.create_time }}</span>
-          </el-col>
-          <el-col :span="24" class="content" v-html="noticeInfo.content"></el-col>
-          <el-col :span="24" class="sb">
-            <el-button type="primary" size="mini" @click="click(noticeInfo.id)">技术需求%科技成果信息征集填报</el-button>
-          </el-col>
-        </div>
-      </el-col>
-    </el-row>
-  </div>
-</template>
-
-<script>
-import { mapState, createNamespacedHelpers } from 'vuex';
-const { mapActions: notice } = createNamespacedHelpers('notice');
-export default {
-  name: 'index',
-  props: {},
-  components: {},
-  data: function() {
-    return {
-      noticeInfo: {},
-    };
-  },
-  created() {
-    this.search();
-  },
-  methods: {
-    ...notice(['query']),
-    // 列表
-    async search({ skip = 0, limit = 10, ...info } = {}) {
-      let arr = await this.query({ skip, limit, ...info });
-      this.$set(this, `noticeInfo`, arr.data[0]);
-    },
-    click(id) {
-      this.$router.push({ path: '/notice/productForm', query: { id: id } });
-    },
-  },
-  computed: {
-    ...mapState(['user']),
-    pageTitle() {
-      return `${this.$route.meta.title}`;
-    },
-  },
-  metaInfo() {
-    return { title: this.$route.meta.title };
-  },
-};
-</script>
-
-<style lang="less" scoped>
-.w_1200 {
-  width: 80%;
-  margin: 0 auto;
-}
-.main {
-  margin: 0 0 30px 0;
-}
-.bt {
-  font-size: 30px;
-  text-align: center;
-  padding: 60px 0 20px 0;
-}
-.date {
-  text-align: center;
-  font-size: 18px;
-  span {
-    margin: 0 10px;
-  }
-}
-.content {
-  margin: 15px 0;
-}
-</style>