feat: There is no way the, bug #56137 首页
This commit is contained in:
@@ -91,13 +91,7 @@ export default {
|
|||||||
// 此处需要调用接口,修改个人配置
|
// 此处需要调用接口,修改个人配置
|
||||||
},
|
},
|
||||||
togo () {
|
togo () {
|
||||||
if(this.total && this.total > 10){
|
this.$router.push({path:'/release2'})
|
||||||
this.pageVerify = true
|
|
||||||
this.pageSize = this.$store.getters.userInfo.configContent
|
|
||||||
}else {
|
|
||||||
this.pageVerify = false
|
|
||||||
}
|
|
||||||
this.getAdvice()
|
|
||||||
},
|
},
|
||||||
// 点击查看
|
// 点击查看
|
||||||
handlePreview (item) {
|
handlePreview (item) {
|
||||||
|
|||||||
@@ -0,0 +1,180 @@
|
|||||||
|
<!-- 标准发布 -->
|
||||||
|
<template>
|
||||||
|
<div class="release">
|
||||||
|
<!-- <ul>-->
|
||||||
|
<!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >-->
|
||||||
|
<!-- <div style="height: 18px;">-->
|
||||||
|
<!-- <a @click="handlePreview(item)" style="color: #333333" class="table-jump">{{ item.standName }}</a>-->
|
||||||
|
<!-- <span class="time">{{item.issueTime ? $moment(item.issueTime).format('YYYY-MM-DD') : '' }}</span>-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- </li>-->
|
||||||
|
<!-- </ul>-->
|
||||||
|
<el-table
|
||||||
|
ref="selection"
|
||||||
|
:data="standardReleaseList"
|
||||||
|
tooltip-effect="dark"
|
||||||
|
border
|
||||||
|
style="cursor:pointer;"
|
||||||
|
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}">
|
||||||
|
<el-table-column
|
||||||
|
label="序号"
|
||||||
|
type="index"
|
||||||
|
align="center"
|
||||||
|
width="55">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="标准编号">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="standName"
|
||||||
|
label="标准名称">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
width="120"
|
||||||
|
label="发布时间">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<loading :loading="loading">加载中...</loading>
|
||||||
|
<pagination
|
||||||
|
style="position: static;"
|
||||||
|
:page="page"
|
||||||
|
:total="total"
|
||||||
|
@pageChange="pageChange"
|
||||||
|
@pageSizeChange="pageSizeChange"></pagination>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'Release',
|
||||||
|
components: {},
|
||||||
|
mixins: [],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
loading: false,
|
||||||
|
pageVerify: false,
|
||||||
|
page: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
total: 0,
|
||||||
|
putTime: '',
|
||||||
|
standardReleaseList: [], //标准发布数据
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
watch: {},
|
||||||
|
mounted() {
|
||||||
|
this.getDate()
|
||||||
|
this.getAdvice()
|
||||||
|
// this.addDate()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
pageChange(page) {
|
||||||
|
this.page = page
|
||||||
|
this.pageSize = this.$store.getters.userInfo.configContent
|
||||||
|
this.getAdvice()
|
||||||
|
},
|
||||||
|
// 分页每页显示数改变后方法
|
||||||
|
pageSizeChange(pageSize) {
|
||||||
|
this.pageSize = this.$store.getters.userInfo.configContent
|
||||||
|
this.getAdvice()
|
||||||
|
// 此处需要调用接口,修改个人配置
|
||||||
|
},
|
||||||
|
togo () {
|
||||||
|
if(this.total && this.total > 10){
|
||||||
|
this.pageVerify = true
|
||||||
|
this.pageSize = this.$store.getters.userInfo.configContent
|
||||||
|
}else {
|
||||||
|
this.pageVerify = false
|
||||||
|
}
|
||||||
|
this.getAdvice()
|
||||||
|
},
|
||||||
|
// 点击查看
|
||||||
|
handlePreview (item) {
|
||||||
|
let routeUrl = this.$router.resolve({
|
||||||
|
name: 'OtherStandardDetails',
|
||||||
|
params: {
|
||||||
|
id: item.standardId,
|
||||||
|
pageType: item.resourceType + '_STAND'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
window.open(routeUrl.href, '_blank')
|
||||||
|
},
|
||||||
|
//截取时间
|
||||||
|
getDate (date) {
|
||||||
|
return date != null ? date.substring(0, date.indexOf(' ')) : ''
|
||||||
|
},
|
||||||
|
//获取数据
|
||||||
|
getAdvice() {
|
||||||
|
this.loading = true
|
||||||
|
this.$http.get("/lawss/NewsFeed/getNewsFeed", {
|
||||||
|
messageType: 'GNWBZFG',
|
||||||
|
page: this.page,
|
||||||
|
pageSize: this.pageSize
|
||||||
|
}, {
|
||||||
|
_this: this,loading: 'loading'
|
||||||
|
}, res => {
|
||||||
|
this.standardReleaseList = res.data.records
|
||||||
|
this.total = res.data.total
|
||||||
|
this.loading = false
|
||||||
|
}, e => {
|
||||||
|
this.loading = false
|
||||||
|
this.standardReleaseList = []
|
||||||
|
this.total = 0
|
||||||
|
})
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.release {
|
||||||
|
/deep/.el-table th > .cell {
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
/deep/.el-table td > .cell{
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
/deep/.more {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
bottom: 2px;
|
||||||
|
font-size: 15px;
|
||||||
|
float: right;
|
||||||
|
color: #4788c0;
|
||||||
|
&:hover {
|
||||||
|
color: #3a8ee6;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: relative;
|
||||||
|
background-color: #FFF;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
.time-title {
|
||||||
|
margin: 15px;
|
||||||
|
.time {
|
||||||
|
float: right;
|
||||||
|
color:#333333;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #ffffff;
|
||||||
|
&:hover {
|
||||||
|
color: #e9c851;
|
||||||
|
cursor:pointer;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -91,13 +91,7 @@ export default {
|
|||||||
// 此处需要调用接口,修改个人配置
|
// 此处需要调用接口,修改个人配置
|
||||||
},
|
},
|
||||||
togo () {
|
togo () {
|
||||||
if(this.total && this.total > 10){
|
this.$router.push({path:'/releaseBuss2'})
|
||||||
this.pageVerify = true
|
|
||||||
this.pageSize = this.$store.getters.userInfo.configContent
|
|
||||||
}else {
|
|
||||||
this.pageVerify = false
|
|
||||||
}
|
|
||||||
this.getAdvice()
|
|
||||||
},
|
},
|
||||||
// 点击查看
|
// 点击查看
|
||||||
handlePreview (item) {
|
handlePreview (item) {
|
||||||
|
|||||||
@@ -0,0 +1,180 @@
|
|||||||
|
<!-- 企标发布 -->
|
||||||
|
<template>
|
||||||
|
<div class="release">
|
||||||
|
<!-- <ul>-->
|
||||||
|
<!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >-->
|
||||||
|
<!-- <div style="height: 18px;">-->
|
||||||
|
<!-- <a @click="handlePreview(item)" style="color: #333333" class="table-jump">{{ item.standName }}</a>-->
|
||||||
|
<!-- <span class="time">{{item.issueTime ? $moment(item.issueTime).format('YYYY-MM-DD') : '' }}</span>-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- </li>-->
|
||||||
|
<!-- </ul>-->
|
||||||
|
<el-table
|
||||||
|
ref="selection"
|
||||||
|
:data="standardReleaseList"
|
||||||
|
tooltip-effect="dark"
|
||||||
|
border
|
||||||
|
style="cursor:pointer;"
|
||||||
|
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}">
|
||||||
|
<el-table-column
|
||||||
|
label="序号"
|
||||||
|
type="index"
|
||||||
|
align="center"
|
||||||
|
width="55">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="标准编号">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="standName"
|
||||||
|
label="标准名称">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
width="120"
|
||||||
|
label="发布时间">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<loading :loading="loading">加载中...</loading>
|
||||||
|
<pagination
|
||||||
|
style="position: static;"
|
||||||
|
:page="page"
|
||||||
|
:total="total"
|
||||||
|
@pageChange="pageChange"
|
||||||
|
@pageSizeChange="pageSizeChange"></pagination>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'ReleaseBuss2',
|
||||||
|
components: {},
|
||||||
|
mixins: [],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
loading: false,
|
||||||
|
pageVerify: false,
|
||||||
|
page: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
total: 0,
|
||||||
|
putTime: '',
|
||||||
|
standardReleaseList: [], //标准发布数据
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
watch: {},
|
||||||
|
mounted() {
|
||||||
|
this.getDate()
|
||||||
|
this.getAdvice()
|
||||||
|
// this.addDate()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
pageChange(page) {
|
||||||
|
this.page = page
|
||||||
|
this.pageSize = this.$store.getters.userInfo.configContent
|
||||||
|
this.getAdvice()
|
||||||
|
},
|
||||||
|
// 分页每页显示数改变后方法
|
||||||
|
pageSizeChange(pageSize) {
|
||||||
|
this.pageSize = this.$store.getters.userInfo.configContent
|
||||||
|
this.getAdvice()
|
||||||
|
// 此处需要调用接口,修改个人配置
|
||||||
|
},
|
||||||
|
togo () {
|
||||||
|
if(this.total && this.total > 10){
|
||||||
|
this.pageVerify = true
|
||||||
|
this.pageSize = this.$store.getters.userInfo.configContent
|
||||||
|
}else {
|
||||||
|
this.pageVerify = false
|
||||||
|
}
|
||||||
|
this.getAdvice()
|
||||||
|
},
|
||||||
|
// 点击查看
|
||||||
|
handlePreview (item) {
|
||||||
|
let routeUrl = this.$router.resolve({
|
||||||
|
name: 'OtherBussStandardDetails',
|
||||||
|
params: {
|
||||||
|
id: item.standardId,
|
||||||
|
pageType: 'BUSINESS_STAND'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
window.open(routeUrl.href, '_blank')
|
||||||
|
},
|
||||||
|
//截取时间
|
||||||
|
getDate (date) {
|
||||||
|
return date != null ? date.substring(0, date.indexOf(' ')) : ''
|
||||||
|
},
|
||||||
|
//获取数据
|
||||||
|
getAdvice() {
|
||||||
|
this.loading = true
|
||||||
|
this.$http.get("/lawss/NewsFeed/getNewsFeed", {
|
||||||
|
messageType: 'QYBZFB',
|
||||||
|
page: this.page,
|
||||||
|
pageSize: this.pageSize
|
||||||
|
}, {
|
||||||
|
_this: this,loading: 'loading'
|
||||||
|
}, res => {
|
||||||
|
this.standardReleaseList = res.data.records
|
||||||
|
this.total = res.data.total
|
||||||
|
this.loading = false
|
||||||
|
}, e => {
|
||||||
|
this.loading = false
|
||||||
|
this.standardReleaseList = []
|
||||||
|
this.total = 0
|
||||||
|
})
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.release {
|
||||||
|
/deep/.el-table th > .cell {
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
/deep/.el-table td > .cell{
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
/deep/.more {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
bottom: 2px;
|
||||||
|
font-size: 15px;
|
||||||
|
float: right;
|
||||||
|
color: #4788c0;
|
||||||
|
&:hover {
|
||||||
|
color: #3a8ee6;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: relative;
|
||||||
|
background-color: #FFF;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
.time-title {
|
||||||
|
margin: 15px;
|
||||||
|
.time {
|
||||||
|
float: right;
|
||||||
|
color:#333333;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #ffffff;
|
||||||
|
&:hover {
|
||||||
|
color: #e9c851;
|
||||||
|
cursor:pointer;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -91,13 +91,7 @@ export default {
|
|||||||
// 此处需要调用接口,修改个人配置
|
// 此处需要调用接口,修改个人配置
|
||||||
},
|
},
|
||||||
togo () {
|
togo () {
|
||||||
if(this.total && this.total > 10){
|
this.$router.push({path:'/releaseQA2'})
|
||||||
this.pageVerify = true
|
|
||||||
this.pageSize = this.$store.getters.userInfo.configContent
|
|
||||||
}else {
|
|
||||||
this.pageVerify = false
|
|
||||||
}
|
|
||||||
this.getAdvice()
|
|
||||||
},
|
},
|
||||||
// 点击查看
|
// 点击查看
|
||||||
handlePreview (item) {
|
handlePreview (item) {
|
||||||
|
|||||||
@@ -0,0 +1,185 @@
|
|||||||
|
<!-- 企标发布 -->
|
||||||
|
<template>
|
||||||
|
<div class="release">
|
||||||
|
<!-- <ul>-->
|
||||||
|
<!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >-->
|
||||||
|
<!-- <div style="height: 18px;">-->
|
||||||
|
<!-- <a @click="handlePreview(item)" style="color: #333333" class="table-jump">{{ item.standName }}</a>-->
|
||||||
|
<!-- <span class="time">{{item.issueTime ? $moment(item.issueTime).format('YYYY-MM-DD') : '' }}</span>-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- </li>-->
|
||||||
|
<!-- </ul>-->
|
||||||
|
<el-table
|
||||||
|
ref="selection"
|
||||||
|
:data="standardReleaseList"
|
||||||
|
tooltip-effect="dark"
|
||||||
|
border
|
||||||
|
style="cursor:pointer;"
|
||||||
|
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}">
|
||||||
|
<el-table-column
|
||||||
|
label="分类"
|
||||||
|
align="center"
|
||||||
|
width="80">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="问题描述">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<!-- <span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>-->
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="standName"
|
||||||
|
label="提问人"
|
||||||
|
width="100">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<!-- <span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span>-->
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
width="120"
|
||||||
|
label="提问时间">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<!-- <span>{{scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span>-->
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<loading :loading="loading">加载中...</loading>
|
||||||
|
<pagination
|
||||||
|
style="position: static;"
|
||||||
|
:page="page"
|
||||||
|
:total="total"
|
||||||
|
@pageChange="pageChange"
|
||||||
|
@pageSizeChange="pageSizeChange"></pagination>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'ReleaseQA2',
|
||||||
|
components: {},
|
||||||
|
mixins: [],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
loading: false,
|
||||||
|
pageVerify: false,
|
||||||
|
page: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
total: 0,
|
||||||
|
putTime: '',
|
||||||
|
standardReleaseList: [], //标准问答数据
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
watch: {},
|
||||||
|
mounted() {
|
||||||
|
this.getDate()
|
||||||
|
this.getAdvice()
|
||||||
|
// this.addDate()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
pageChange(page) {
|
||||||
|
this.page = page
|
||||||
|
this.pageSize = this.$store.getters.userInfo.configContent
|
||||||
|
this.getAdvice()
|
||||||
|
},
|
||||||
|
// 分页每页显示数改变后方法
|
||||||
|
pageSizeChange(pageSize) {
|
||||||
|
this.pageSize = this.$store.getters.userInfo.configContent
|
||||||
|
this.getAdvice()
|
||||||
|
// 此处需要调用接口,修改个人配置
|
||||||
|
},
|
||||||
|
togo () {
|
||||||
|
if(this.total && this.total > 10){
|
||||||
|
this.pageVerify = true
|
||||||
|
this.pageSize = this.$store.getters.userInfo.configContent
|
||||||
|
}else {
|
||||||
|
this.pageVerify = false
|
||||||
|
}
|
||||||
|
this.getAdvice()
|
||||||
|
},
|
||||||
|
// 点击查看
|
||||||
|
handlePreview (item) {
|
||||||
|
// let routeUrl = this.$router.resolve({
|
||||||
|
// name: 'OtherBussStandardDetails',
|
||||||
|
// params: {
|
||||||
|
// id: item.standardId,
|
||||||
|
// pageType: 'BUSINESS_STAND'
|
||||||
|
// }
|
||||||
|
// })
|
||||||
|
// window.open(routeUrl.href, '_blank')
|
||||||
|
},
|
||||||
|
//截取时间
|
||||||
|
getDate (date) {
|
||||||
|
return date != null ? date.substring(0, date.indexOf(' ')) : ''
|
||||||
|
},
|
||||||
|
//获取数据
|
||||||
|
getAdvice() {
|
||||||
|
this.loading = true
|
||||||
|
// 模拟加载
|
||||||
|
const timer = setInterval(() => {
|
||||||
|
this.loading = false
|
||||||
|
}, 2000)
|
||||||
|
console.log(timer)
|
||||||
|
// this.$http.get("/lawss/NewsFeed/getNewsFeed", {
|
||||||
|
// messageType: 'QYBZFB',
|
||||||
|
// page: this.page,
|
||||||
|
// pageSize: this.pageSize
|
||||||
|
// }, {
|
||||||
|
// _this: this,loading: 'loading'
|
||||||
|
// }, res => {
|
||||||
|
// this.standardReleaseList = res.data.records
|
||||||
|
// this.total = res.data.total
|
||||||
|
// this.loading = false
|
||||||
|
// }, e => {
|
||||||
|
// this.loading = false
|
||||||
|
// this.standardReleaseList = []
|
||||||
|
// this.total = 0
|
||||||
|
// })
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.release {
|
||||||
|
/deep/.el-table th > .cell {
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
/deep/.el-table td > .cell{
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
/deep/.more {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
bottom: 2px;
|
||||||
|
font-size: 15px;
|
||||||
|
float: right;
|
||||||
|
color: #4788c0;
|
||||||
|
&:hover {
|
||||||
|
color: #3a8ee6;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: relative;
|
||||||
|
background-color: #FFF;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
.time-title {
|
||||||
|
margin: 15px;
|
||||||
|
.time {
|
||||||
|
float: right;
|
||||||
|
color:#333333;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #ffffff;
|
||||||
|
&:hover {
|
||||||
|
color: #e9c851;
|
||||||
|
cursor:pointer;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -101,13 +101,7 @@ export default {
|
|||||||
// 此处需要调用接口,修改个人配置
|
// 此处需要调用接口,修改个人配置
|
||||||
},
|
},
|
||||||
togo () {
|
togo () {
|
||||||
if(this.total && this.total > 10){
|
this.$router.push({path:'/releaseUs2'})
|
||||||
this.pageVerify = true
|
|
||||||
this.pageSize = this.$store.getters.userInfo.configContent
|
|
||||||
}else {
|
|
||||||
this.pageVerify = false
|
|
||||||
}
|
|
||||||
this.getAdvice()
|
|
||||||
},
|
},
|
||||||
// 将文本状态的id与name对应
|
// 将文本状态的id与name对应
|
||||||
setMap(data) {
|
setMap(data) {
|
||||||
|
|||||||
@@ -0,0 +1,196 @@
|
|||||||
|
<!-- 标准发布 -->
|
||||||
|
<template>
|
||||||
|
<div class="release">
|
||||||
|
<!-- <ul>-->
|
||||||
|
<!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >-->
|
||||||
|
<!-- <div style="height: 18px;">-->
|
||||||
|
<!-- <a @click="handlePreview(item)" style="color: #333333" class="table-jump">{{ item.standName }}</a>-->
|
||||||
|
<!-- <span class="time">{{item.issueTime ? $moment(item.issueTime).format('YYYY-MM-DD') : '' }}</span>-->
|
||||||
|
<!-- </div>-->
|
||||||
|
<!-- </li>-->
|
||||||
|
<!-- </ul>-->
|
||||||
|
<el-table
|
||||||
|
ref="selection"
|
||||||
|
:data="standardReleaseList"
|
||||||
|
tooltip-effect="dark"
|
||||||
|
border
|
||||||
|
style="cursor:pointer;"
|
||||||
|
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}">
|
||||||
|
<el-table-column
|
||||||
|
label="序号"
|
||||||
|
type="index"
|
||||||
|
align="center"
|
||||||
|
width="55">
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="standard"
|
||||||
|
label="标准编号">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
prop="standardName"
|
||||||
|
label="标准名称">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
width="120"
|
||||||
|
label="文本状态">
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<span>{{ textStatusMap[scope.row.textState] }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<loading :loading="loading">加载中...</loading>
|
||||||
|
<pagination
|
||||||
|
style="position: static;"
|
||||||
|
:page="page"
|
||||||
|
:total="total"
|
||||||
|
@pageChange="pageChange"
|
||||||
|
@pageSizeChange="pageSizeChange"></pagination>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'ReleaseUs2',
|
||||||
|
components: {},
|
||||||
|
mixins: [],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
loading: false,
|
||||||
|
pageVerify: false,
|
||||||
|
page: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
total: 0,
|
||||||
|
putTime: '',
|
||||||
|
standardReleaseList: [], //标准发布数据
|
||||||
|
textStatusMap: {} // 文本状态id与name对应
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {},
|
||||||
|
watch: {},
|
||||||
|
mounted() {
|
||||||
|
this.$http.get('sys/dictype/getDicTypeListCode', '', {
|
||||||
|
_this: this
|
||||||
|
}, res => {
|
||||||
|
if (res.data.WBZTCLASS !== undefined && res.data.WBZTCLASS !== null){
|
||||||
|
this.setMap(res.data.WBZTCLASS) // 文本状态
|
||||||
|
}
|
||||||
|
}, e => {
|
||||||
|
})
|
||||||
|
this.getDate()
|
||||||
|
this.getAdvice()
|
||||||
|
// this.addDate()
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
pageChange(page) {
|
||||||
|
this.page = page
|
||||||
|
this.pageSize = this.$store.getters.userInfo.configContent
|
||||||
|
this.getAdvice()
|
||||||
|
},
|
||||||
|
// 分页每页显示数改变后方法
|
||||||
|
pageSizeChange(pageSize) {
|
||||||
|
this.pageSize = this.$store.getters.userInfo.configContent
|
||||||
|
this.getAdvice()
|
||||||
|
// 此处需要调用接口,修改个人配置
|
||||||
|
},
|
||||||
|
togo () {
|
||||||
|
if(this.total && this.total > 10){
|
||||||
|
this.pageVerify = true
|
||||||
|
this.pageSize = this.$store.getters.userInfo.configContent
|
||||||
|
}else {
|
||||||
|
this.pageVerify = false
|
||||||
|
}
|
||||||
|
this.getAdvice()
|
||||||
|
},
|
||||||
|
// 将文本状态的id与name对应
|
||||||
|
setMap(data) {
|
||||||
|
data.forEach(item => {
|
||||||
|
this.$set(this.textStatusMap, item.value, item.label)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
// 点击查看
|
||||||
|
handlePreview (item) {
|
||||||
|
let routeUrl = this.$router.resolve({
|
||||||
|
name: 'OtherStandardDetails',
|
||||||
|
params: {
|
||||||
|
id: item.standardId,
|
||||||
|
pageType: item.resourceType + '_STAND'
|
||||||
|
}
|
||||||
|
})
|
||||||
|
window.open(routeUrl.href, '_blank')
|
||||||
|
},
|
||||||
|
//截取时间
|
||||||
|
getDate (date) {
|
||||||
|
return date != null ? date.substring(0, date.indexOf(' ')) : ''
|
||||||
|
},
|
||||||
|
//获取数据
|
||||||
|
getAdvice() {
|
||||||
|
this.loading = true
|
||||||
|
this.$http.get("/lawss/NewsFeed/getNewsFeed", {
|
||||||
|
messageType: 'ZYBZFG',
|
||||||
|
page: this.page,
|
||||||
|
pageSize: this.pageSize
|
||||||
|
}, {
|
||||||
|
_this: this,loading: 'loading'
|
||||||
|
}, res => {
|
||||||
|
this.standardReleaseList = res.data.records
|
||||||
|
this.total = res.data.total
|
||||||
|
this.loading = false
|
||||||
|
}, e => {
|
||||||
|
this.loading = false
|
||||||
|
this.standardReleaseList = []
|
||||||
|
this.total = 0
|
||||||
|
})
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less" scoped>
|
||||||
|
.release {
|
||||||
|
/deep/.el-table th > .cell {
|
||||||
|
font-size: 15px;
|
||||||
|
}
|
||||||
|
/deep/.el-table td > .cell{
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
/deep/.more {
|
||||||
|
position: absolute;
|
||||||
|
right: 0;
|
||||||
|
bottom: 2px;
|
||||||
|
font-size: 15px;
|
||||||
|
float: right;
|
||||||
|
color: #4788c0;
|
||||||
|
&:hover {
|
||||||
|
color: #3a8ee6;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: relative;
|
||||||
|
background-color: #FFF;
|
||||||
|
background-size: 100% 100%;
|
||||||
|
.time-title {
|
||||||
|
margin: 15px;
|
||||||
|
.time {
|
||||||
|
float: right;
|
||||||
|
color:#333333;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
color: #ffffff;
|
||||||
|
&:hover {
|
||||||
|
color: #e9c851;
|
||||||
|
cursor:pointer;
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -14,6 +14,42 @@ const routes = [
|
|||||||
title: '动态跳转',
|
title: '动态跳转',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/release2',
|
||||||
|
name: 'Release2',
|
||||||
|
component: resolve => require(['@/pages/home2/components/release2/index.vue'], resolve),
|
||||||
|
meta: {
|
||||||
|
requireAuth: true,
|
||||||
|
title: '国内外标准法规入库',
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/releaseUs2',
|
||||||
|
name: 'ReleaseUs2',
|
||||||
|
component: resolve => require(['@/pages/home2/components/releaseUs2/index.vue'], resolve),
|
||||||
|
meta: {
|
||||||
|
requireAuth: true,
|
||||||
|
title: '在研标准法规入库',
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/releaseBuss2',
|
||||||
|
name: 'ReleaseBuss2',
|
||||||
|
component: resolve => require(['@/pages/home2/components/releaseBuss2/index.vue'], resolve),
|
||||||
|
meta: {
|
||||||
|
requireAuth: true,
|
||||||
|
title: '企业标准发布',
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/releaseQA2',
|
||||||
|
name: 'ReleaseQA2',
|
||||||
|
component: resolve => require(['@/pages/home2/components/releaseQA2/index.vue'], resolve),
|
||||||
|
meta: {
|
||||||
|
requireAuth: true,
|
||||||
|
title: '标准问答',
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/blankPage',
|
path: '/blankPage',
|
||||||
name: 'blankPage',
|
name: 'blankPage',
|
||||||
|
|||||||
Reference in New Issue
Block a user