|
@@ -9,63 +9,53 @@
|
|
|
</div>
|
|
</div>
|
|
|
<div style="float: right;">
|
|
<div style="float: right;">
|
|
|
<router-link :to="'/login'">
|
|
<router-link :to="'/login'">
|
|
|
- <el-button type="info" size="small" round>登录系统</el-button>
|
|
|
|
|
|
|
+ <el-button type="primary" size="small" round>登录系统</el-button>
|
|
|
</router-link>
|
|
</router-link>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
</sticky>
|
|
</sticky>
|
|
|
|
|
|
|
|
- <div style="background-color: white;">
|
|
|
|
|
|
|
+ <el-card style="margin: 0 auto; ">
|
|
|
|
|
+ <el-table :data="fileList"
|
|
|
|
|
+ stripe
|
|
|
|
|
+ highlight-current-row
|
|
|
|
|
+ size="mini">
|
|
|
|
|
+ <el-table-column prop="Name"
|
|
|
|
|
+ align="center"
|
|
|
|
|
+ label="资料下载">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ <el-link :href="getDownloadFile(scope.row.FileURL)"
|
|
|
|
|
+ target="_blank"
|
|
|
|
|
+ type="primary">{{ scope.row.Name }}</el-link>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column prop="CreateOn"
|
|
|
|
|
+ label="发布时间"
|
|
|
|
|
+ width="141">
|
|
|
|
|
+ <template slot-scope="scope">{{ jstimehandle(scope.row.CreateOn+'') }}</template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ <el-table-column width="80">
|
|
|
|
|
+ <template slot-scope="scope"><span style="font-size: 15px; color: #f13f40">{{strnew(scope.row.CreateOn+'') }}</span></template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+ </el-table>
|
|
|
|
|
+ </el-card>
|
|
|
|
|
|
|
|
- <el-table :data="fileList"
|
|
|
|
|
- border
|
|
|
|
|
- size="mini"
|
|
|
|
|
- style="width: 1500px;margin-right: auto; margin-left: auto;">
|
|
|
|
|
- <el-table-column prop="Name"
|
|
|
|
|
- align="center"
|
|
|
|
|
- label="资料下载">
|
|
|
|
|
- <template slot-scope="scope">
|
|
|
|
|
- <el-link :href="getDownloadFile(scope.row.FileURL)"
|
|
|
|
|
- target="_blank"
|
|
|
|
|
- type="primary">{{ scope.row.Name }}</el-link>
|
|
|
|
|
- </template>
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column prop="CreateOn"
|
|
|
|
|
- label="发布时间"
|
|
|
|
|
- width="141">
|
|
|
|
|
- <template slot-scope="scope">{{ jstimehandle(scope.row.CreateOn+'') }}</template>
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- <el-table-column width="80">
|
|
|
|
|
- <template slot-scope="scope"><span style="font-size: 15px; color: #f13f40">{{strnew(scope.row.CreateOn+'') }}</span></template>
|
|
|
|
|
- </el-table-column>
|
|
|
|
|
- </el-table>
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
- <div>
|
|
|
|
|
- <footer class="login-footer1">
|
|
|
|
|
- <div class="foot-wrapper" style="height: 30px; background-color: transparent; color:#A9A9A9; padding-top: 10px; text-align: right">
|
|
|
|
|
- ©企管法规处 版权所有
|
|
|
|
|
- </div>
|
|
|
|
|
- </footer>
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
-
|
|
|
|
|
import Vue from 'vue'
|
|
import Vue from 'vue'
|
|
|
import Component from 'class-component'
|
|
import Component from 'class-component'
|
|
|
import Sticky from '@/components/Sticky'
|
|
import Sticky from '@/components/Sticky'
|
|
|
- import axios from 'axios'
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
@Component({
|
|
|
data () {
|
|
data () {
|
|
|
- var check = (rule, value, callback) => {
|
|
|
|
|
|
|
+ let check = (rule, value, callback) => {
|
|
|
if (value === '') {
|
|
if (value === '') {
|
|
|
- callback(new Error('请输入验证码'));
|
|
|
|
|
|
|
+ callback(new Error('请输入验证码'))
|
|
|
} else {
|
|
} else {
|
|
|
- this.isPass=false
|
|
|
|
|
|
|
+ this.isPass = false
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|
|
|
return {
|
|
return {
|
|
@@ -75,9 +65,9 @@
|
|
|
isPass:true,
|
|
isPass:true,
|
|
|
fileList: [], // 文档列表
|
|
fileList: [], // 文档列表
|
|
|
formData: {
|
|
formData: {
|
|
|
- UserName:'',
|
|
|
|
|
- Telephone: '', //用户手机号
|
|
|
|
|
- yzCode: '', //验证码
|
|
|
|
|
|
|
+ UserName: '',
|
|
|
|
|
+ Telephone: '', // 用户手机号
|
|
|
|
|
+ yzCode: '', // 验证码
|
|
|
UserPass: '',
|
|
UserPass: '',
|
|
|
UserPass2: ''
|
|
UserPass2: ''
|
|
|
},
|
|
},
|
|
@@ -202,8 +192,9 @@
|
|
|
.home-wrapper{
|
|
.home-wrapper{
|
|
|
margin:0px auto;
|
|
margin:0px auto;
|
|
|
width: 1004px;
|
|
width: 1004px;
|
|
|
- flex-direction: column;
|
|
|
|
|
|
|
+ left: -502;
|
|
|
margin-bottom: 45px;
|
|
margin-bottom: 45px;
|
|
|
|
|
+ flex-direction: column;
|
|
|
background-color: white;
|
|
background-color: white;
|
|
|
overflow: auto;
|
|
overflow: auto;
|
|
|
}
|
|
}
|