style: 格式化代码

This commit is contained in:
zyn
2023-12-19 16:03:26 +08:00
parent 8578a9cd87
commit c4079c7413
10 changed files with 902 additions and 852 deletions
+53 -41
View File
@@ -1,53 +1,53 @@
<!-- 标准发布 --> <!-- 标准发布 -->
<template> <template>
<div class="release"> <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 <el-table
ref="selection" ref="selection"
:data="standardReleaseList" :data="standardReleaseList"
tooltip-effect="dark" tooltip-effect="dark"
border border
style="cursor:pointer;" style="cursor:pointer;"
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"> :header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"
>
<el-table-column <el-table-column
label="序号" label="序号"
type="index" type="index"
align="center" align="center"
width="55"> width="55"
>
<template slot-scope="{scope, column, $index}"> <template slot-scope="{scope, column, $index}">
{{ ($index + 1) + (page - 1) * pageSize }} {{ ($index + 1) + (page - 1) * pageSize }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
width="200" width="200"
label="标准编号"> label="标准编号"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span> <span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="standName" prop="standName"
label="标准名称"> label="标准名称"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span> <span style="display: flex;align-items: center" @click="handlePreview(scope.row)">
<span>{{ scope.row.standardName }}</span>
<img v-if="checkTime(scope.row.renewTime)" src="/static/images/new.png" style="width: 30px;margin-left: 5px">
</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
width="120" width="120"
label="发布时间"> label="发布时间"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span> <span>{{ scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="more" v-if="!pageVerify" @click="togo">更多 </div> <div v-if="!pageVerify" class="more" @click="togo">更多 </div>
<loading :loading="loading">加载中...</loading> <loading :loading="loading">加载中...</loading>
<pagination <pagination
v-if="pageVerify" v-if="pageVerify"
@@ -55,7 +55,8 @@
:page="page" :page="page"
:total="total" :total="total"
@pageChange="pageChange" @pageChange="pageChange"
@pageSizeChange="pageSizeChange"></pagination> @pageSizeChange="pageSizeChange"
/>
</div> </div>
</template> </template>
@@ -64,48 +65,52 @@ export default {
name: 'Release', name: 'Release',
components: {}, components: {},
mixins: [], mixins: [],
data() {
return {
loading: false,
pageVerify: false,
page: 1,
pageSize: this.$store.getters.userInfo.configContent,
total: 0,
putTime: '',
standardReleaseList: [], //标准发布数据
}
},
props: { props: {
messageType: { messageType: {
type: String, type: String,
required: true required: true
} }
}, },
data () {
return {
loading: false,
pageVerify: false,
page: 1,
pageSize: 10,
total: 0,
putTime: '',
standardReleaseList: [], // 标准发布数据
}
},
computed: {}, computed: {},
watch: {}, watch: {},
mounted() { mounted () {
this.getDate() this.getDate()
this.getAdvice() this.getAdvice()
// this.addDate()
}, },
methods: { methods: {
pageChange(page) { pageChange (page) {
this.page = page this.page = page
this.pageSize = this.$store.getters.userInfo.configContent this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice() this.getAdvice()
}, },
// 分页每页显示数改变后方法 // 分页每页显示数改变后方法
pageSizeChange(pageSize) { pageSizeChange (pageSize) {
this.pageSize = this.$store.getters.userInfo.configContent this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice() this.getAdvice()
// 此处需要调用接口,修改个人配置 // 此处需要调用接口,修改个人配置
}, },
togo () { togo () {
this.$router.push({path:'/release2'}) this.$router.push({
path: '/release2',
query: {
messageType: this.messageType
}
})
}, },
// 点击查看 // 点击查看
handlePreview (item) { handlePreview (item) {
let routeUrl = this.$router.resolve({ const routeUrl = this.$router.resolve({
name: 'OtherStandardDetails', name: 'OtherStandardDetails',
params: { params: {
id: item.standardId, id: item.standardId,
@@ -114,32 +119,39 @@ export default {
}) })
window.open(routeUrl.href, '_blank') window.open(routeUrl.href, '_blank')
}, },
//截取时间 // 截取时间
getDate (date) { getDate (date) {
return date != null ? date.substring(0, date.indexOf(' ')) : '' return date != null ? date.substring(0, date.indexOf(' ')) : ''
}, },
//获取数据 // 获取数据
getAdvice() { getAdvice () {
this.loading = true this.loading = true
this.$http.get("/lawss/NewsFeed/getNewsFeed", { this.$http.get('/lawss/NewsFeed/getNewsFeed', {
// messageType: 'GNWBZFG',
messageType: this.messageType, messageType: this.messageType,
page: this.page, page: this.page,
pageSize: this.pageSize pageSize: this.pageSize
}, { }, {
_this: this,loading: 'loading' _this: this, loading: 'loading'
}, res => { }, res => {
this.standardReleaseList = res.data.records this.standardReleaseList = res.data.records
this.total = res.data.total this.total = res.data.total
this.loading = false this.loading = false
if (res.data && res.data.records && res.data.records.length > 0) {
if (res.data.records[0].renewTime && res.data.records[0].renewTime !== '') {
const isNew = this.checkTime(res.data.records[0].renewTime)
this.$emit('isNew', isNew)
}
}
}, e => { }, e => {
this.loading = false this.loading = false
this.standardReleaseList = [] this.standardReleaseList = []
this.total = 0 this.total = 0
}) })
}, },
checkTime (time) {
return this.$moment(time.slice(0, 10)).diff(this.$moment(), 'day') > -3
},
}, },
} }
</script> </script>
+25 -28
View File
@@ -1,14 +1,6 @@
<!-- 标准发布 --> <!-- 标准发布 -->
<template> <template>
<div class="release"> <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 <el-table
ref="selection" ref="selection"
:data="standardReleaseList" :data="standardReleaseList"
@@ -18,35 +10,40 @@
style="width: 100%; flex: auto;" style="width: 100%; flex: auto;"
class="drag-table" class="drag-table"
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px', :header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
fontWeight: 'bold', height: '48px'}"> fontWeight: 'bold', height: '48px'}"
>
<el-table-column <el-table-column
label="序号" label="序号"
type="index" type="index"
align="center" align="center"
width="55"> width="55"
>
<template slot-scope="{scope, column, $index}"> <template slot-scope="{scope, column, $index}">
{{ ($index + 1) + (page - 1) * pageSize }} {{ ($index + 1) + (page - 1) * pageSize }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
width="200" width="200"
label="标准编号"> label="标准编号"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span> <span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="standName" prop="standName"
label="标准名称"> label="标准名称"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span> <span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
width="120" width="120"
label="发布时间"> label="发布时间"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span> <span>{{ scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@@ -56,7 +53,8 @@
:page="page" :page="page"
:total="total" :total="total"
@pageChange="pageChange" @pageChange="pageChange"
@pageSizeChange="pageSizeChange"></pagination> @pageSizeChange="pageSizeChange"
/>
</div> </div>
</template> </template>
@@ -65,7 +63,7 @@ export default {
name: 'Release', name: 'Release',
components: {}, components: {},
mixins: [], mixins: [],
data() { data () {
return { return {
loading: false, loading: false,
pageVerify: false, pageVerify: false,
@@ -73,30 +71,29 @@ export default {
pageSize: this.$store.getters.userInfo.configContent, pageSize: this.$store.getters.userInfo.configContent,
total: 0, total: 0,
putTime: '', putTime: '',
standardReleaseList: [], //标准发布数据 standardReleaseList: [], // 标准发布数据
} }
}, },
computed: {}, computed: {},
watch: {}, watch: {},
mounted() { mounted () {
this.getDate() this.getDate()
this.getAdvice() this.getAdvice()
// this.addDate()
}, },
methods: { methods: {
pageChange(page) { pageChange (page) {
this.page = page this.page = page
this.pageSize = this.$store.getters.userInfo.configContent this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice() this.getAdvice()
}, },
// 分页每页显示数改变后方法 // 分页每页显示数改变后方法
pageSizeChange(pageSize) { pageSizeChange (pageSize) {
this.pageSize = this.$store.getters.userInfo.configContent this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice() this.getAdvice()
// 此处需要调用接口,修改个人配置 // 此处需要调用接口,修改个人配置
}, },
togo () { togo () {
if(this.total && this.total > 10){ if(this.total && this.total > 10) {
this.pageVerify = true this.pageVerify = true
this.pageSize = this.$store.getters.userInfo.configContent this.pageSize = this.$store.getters.userInfo.configContent
}else { }else {
@@ -106,7 +103,7 @@ export default {
}, },
// 点击查看 // 点击查看
handlePreview (item) { handlePreview (item) {
let routeUrl = this.$router.resolve({ const routeUrl = this.$router.resolve({
name: 'OtherStandardDetails', name: 'OtherStandardDetails',
params: { params: {
id: item.standardId, id: item.standardId,
@@ -115,19 +112,19 @@ export default {
}) })
window.open(routeUrl.href, '_blank') window.open(routeUrl.href, '_blank')
}, },
//截取时间 // 截取时间
getDate (date) { getDate (date) {
return date != null ? date.substring(0, date.indexOf(' ')) : '' return date != null ? date.substring(0, date.indexOf(' ')) : ''
}, },
//获取数据 // 获取数据
getAdvice() { getAdvice () {
this.loading = true this.loading = true
this.$http.get("/lawss/NewsFeed/getNewsFeed", { this.$http.get('/lawss/NewsFeed/getNewsFeed', {
messageType: 'GNWBZFG', messageType: 'GNWBZFG',
page: this.page, page: this.page,
pageSize: this.pageSize pageSize: this.pageSize
}, { }, {
_this: this,loading: 'loading' _this: this, loading: 'loading'
}, res => { }, res => {
this.standardReleaseList = res.data.records this.standardReleaseList = res.data.records
this.total = res.data.total this.total = res.data.total
@@ -1,42 +1,38 @@
<!-- 企标发布 --> <!-- 企标发布 -->
<template> <template>
<div class="release"> <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 <el-table
ref="selection" ref="selection"
:data="standardReleaseList" :data="standardReleaseList"
tooltip-effect="dark" tooltip-effect="dark"
border border
style="cursor:pointer;" style="cursor:pointer;"
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"> :header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"
>
<el-table-column <el-table-column
label="序号" label="序号"
type="index" type="index"
align="center" align="center"
width="55"> width="55"
>
<template slot-scope="{scope, column, $index}"> <template slot-scope="{scope, column, $index}">
{{ ($index + 1) + (page - 1) * pageSize }} {{ ($index + 1) + (page - 1) * pageSize }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
width="200" width="200"
label="标准编号"> label="标准编号"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span> <span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="standName" prop="standName"
label="标准名称"> label="标准名称"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span @click="handlePreview(scope.row)" style="display: flex;align-items: center"> <span style="display: flex;align-items: center" @click="handlePreview(scope.row)">
<span>{{ scope.row.standardName }}</span> <span>{{ scope.row.standardName }}</span>
<img v-if="checkTime(scope.row.releaseDate)" src="/static/images/new.png" style="width: 30px;margin-left: 5px"> <img v-if="checkTime(scope.row.releaseDate)" src="/static/images/new.png" style="width: 30px;margin-left: 5px">
</span> </span>
@@ -44,13 +40,14 @@
</el-table-column> </el-table-column>
<el-table-column <el-table-column
width="120" width="120"
label="发布时间"> label="发布时间"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span> <span>{{ scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="more" v-if="!pageVerify" @click="togo">更多 </div> <div v-if="!pageVerify" class="more" @click="togo">更多 </div>
<loading :loading="loading">加载中...</loading> <loading :loading="loading">加载中...</loading>
<pagination <pagination
v-if="pageVerify" v-if="pageVerify"
@@ -58,7 +55,8 @@
:page="page" :page="page"
:total="total" :total="total"
@pageChange="pageChange" @pageChange="pageChange"
@pageSizeChange="pageSizeChange"></pagination> @pageSizeChange="pageSizeChange"
/>
</div> </div>
</template> </template>
@@ -68,7 +66,7 @@ export default {
name: 'ReleaseBuss', name: 'ReleaseBuss',
components: {}, components: {},
mixins: [], mixins: [],
data() { data () {
return { return {
loading: false, loading: false,
pageVerify: false, pageVerify: false,
@@ -76,37 +74,37 @@ export default {
pageSize: this.$store.getters.userInfo.configContent, pageSize: this.$store.getters.userInfo.configContent,
total: 0, total: 0,
putTime: '', putTime: '',
standardReleaseList: [], //标准发布数据 standardReleaseList: [], // 标准发布数据
} }
}, },
computed: {}, computed: {},
watch: {}, watch: {},
mounted() { mounted () {
this.getDate() this.getDate()
this.getAdvice() this.getAdvice()
// this.addDate() // this.addDate()
}, },
methods: { methods: {
checkTime (time) { checkTime (time) {
return moment(time.slice(0,10)).diff(moment(), 'day') > -3 return moment(time.slice(0, 10)).diff(moment(), 'day') > -3
}, },
pageChange(page) { pageChange (page) {
this.page = page this.page = page
this.pageSize = this.$store.getters.userInfo.configContent this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice() this.getAdvice()
}, },
// 分页每页显示数改变后方法 // 分页每页显示数改变后方法
pageSizeChange(pageSize) { pageSizeChange (pageSize) {
this.pageSize = this.$store.getters.userInfo.configContent this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice() this.getAdvice()
// 此处需要调用接口,修改个人配置 // 此处需要调用接口,修改个人配置
}, },
togo () { togo () {
this.$router.push({path:'/releaseBuss2'}) this.$router.push({ path: '/releaseBuss2' })
}, },
// 点击查看 // 点击查看
handlePreview (item) { handlePreview (item) {
let routeUrl = this.$router.resolve({ const routeUrl = this.$router.resolve({
name: 'OtherBussStandardDetails', name: 'OtherBussStandardDetails',
params: { params: {
id: item.standardId, id: item.standardId,
@@ -115,19 +113,19 @@ export default {
}) })
window.open(routeUrl.href, '_blank') window.open(routeUrl.href, '_blank')
}, },
//截取时间 // 截取时间
getDate (date) { getDate (date) {
return date != null ? date.substring(0, date.indexOf(' ')) : '' return date != null ? date.substring(0, date.indexOf(' ')) : ''
}, },
//获取数据 // 获取数据
getAdvice() { getAdvice () {
this.loading = true this.loading = true
this.$http.get("/lawss/NewsFeed/getNewsFeed", { this.$http.get('/lawss/NewsFeed/getNewsFeed', {
messageType: 'QYBZFB', messageType: 'QYBZFB',
page: this.page, page: this.page,
pageSize: this.pageSize pageSize: this.pageSize
}, { }, {
_this: this,loading: 'loading' _this: this, loading: 'loading'
}, res => { }, res => {
this.standardReleaseList = res.data.records this.standardReleaseList = res.data.records
this.total = res.data.total this.total = res.data.total
@@ -139,7 +137,6 @@ export default {
}) })
}, },
}, },
} }
</script> </script>
@@ -1,14 +1,14 @@
<!-- 企标发布 --> <!-- 企标发布 -->
<template> <template>
<div class="release"> <div class="release">
<!-- <ul>--> <!-- <ul>-->
<!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >--> <!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >-->
<!-- <div style="height: 18px;">--> <!-- <div style="height: 18px;">-->
<!-- <a @click="handlePreview(item)" style="color: #333333" class="table-jump">{{ item.standName }}</a>--> <!-- <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>--> <!-- <span class="time">{{item.issueTime ? $moment(item.issueTime).format('YYYY-MM-DD') : '' }}</span>-->
<!-- </div>--> <!-- </div>-->
<!-- </li>--> <!-- </li>-->
<!-- </ul>--> <!-- </ul>-->
<el-table <el-table
ref="selection" ref="selection"
:data="standardReleaseList" :data="standardReleaseList"
@@ -18,28 +18,32 @@
style="width: 100%; flex: auto;" style="width: 100%; flex: auto;"
class="drag-table" class="drag-table"
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px', :header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
fontWeight: 'bold', height: '48px'}"> fontWeight: 'bold', height: '48px'}"
>
<el-table-column <el-table-column
label="序号" label="序号"
type="index" type="index"
align="center" align="center"
width="55"> width="55"
>
<template slot-scope="{scope, column, $index}"> <template slot-scope="{scope, column, $index}">
{{ ($index + 1) + (page - 1) * pageSize }} {{ ($index + 1) + (page - 1) * pageSize }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
width="200" width="200"
label="标准编号"> label="标准编号"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span> <span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="standName" prop="standName"
label="标准名称"> label="标准名称"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span @click="handlePreview(scope.row)" style="display: flex;align-items: center"> <span style="display: flex;align-items: center" @click="handlePreview(scope.row)">
{{ scope.row.standardName }} {{ scope.row.standardName }}
<img v-if="checkTime(scope.row.releaseDate)" src="/static/images/new.png" style="width: 30px;margin-left: 5px"> <img v-if="checkTime(scope.row.releaseDate)" src="/static/images/new.png" style="width: 30px;margin-left: 5px">
</span> </span>
@@ -47,9 +51,10 @@
</el-table-column> </el-table-column>
<el-table-column <el-table-column
width="120" width="120"
label="发布时间"> label="发布时间"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span> <span>{{ scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@@ -59,7 +64,8 @@
:page="page" :page="page"
:total="total" :total="total"
@pageChange="pageChange" @pageChange="pageChange"
@pageSizeChange="pageSizeChange"></pagination> @pageSizeChange="pageSizeChange"
/>
</div> </div>
</template> </template>
@@ -69,7 +75,7 @@ export default {
name: 'ReleaseBuss2', name: 'ReleaseBuss2',
components: {}, components: {},
mixins: [], mixins: [],
data() { data () {
return { return {
loading: false, loading: false,
pageVerify: false, pageVerify: false,
@@ -77,33 +83,32 @@ export default {
pageSize: this.$store.getters.userInfo.configContent, pageSize: this.$store.getters.userInfo.configContent,
total: 0, total: 0,
putTime: '', putTime: '',
standardReleaseList: [], //标准发布数据 standardReleaseList: [], // 标准发布数据
} }
}, },
computed: {}, computed: {},
watch: {}, watch: {},
mounted() { mounted () {
this.getDate() this.getDate()
this.getAdvice() this.getAdvice()
// this.addDate()
}, },
methods: { methods: {
checkTime (time) { checkTime (time) {
return moment(time.slice(0,10)).diff(moment(), 'day') > -3 return moment(time.slice(0, 10)).diff(moment(), 'day') > -3
}, },
pageChange(page) { pageChange (page) {
this.page = page this.page = page
this.pageSize = this.$store.getters.userInfo.configContent this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice() this.getAdvice()
}, },
// 分页每页显示数改变后方法 // 分页每页显示数改变后方法
pageSizeChange(pageSize) { pageSizeChange (pageSize) {
this.pageSize = this.$store.getters.userInfo.configContent this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice() this.getAdvice()
// 此处需要调用接口,修改个人配置 // 此处需要调用接口,修改个人配置
}, },
togo () { togo () {
if(this.total && this.total > 10){ if(this.total && this.total > 10) {
this.pageVerify = true this.pageVerify = true
this.pageSize = this.$store.getters.userInfo.configContent this.pageSize = this.$store.getters.userInfo.configContent
}else { }else {
@@ -113,7 +118,7 @@ export default {
}, },
// 点击查看 // 点击查看
handlePreview (item) { handlePreview (item) {
let routeUrl = this.$router.resolve({ const routeUrl = this.$router.resolve({
name: 'OtherBussStandardDetails', name: 'OtherBussStandardDetails',
params: { params: {
id: item.standardId, id: item.standardId,
@@ -122,19 +127,19 @@ export default {
}) })
window.open(routeUrl.href, '_blank') window.open(routeUrl.href, '_blank')
}, },
//截取时间 // 截取时间
getDate (date) { getDate (date) {
return date != null ? date.substring(0, date.indexOf(' ')) : '' return date != null ? date.substring(0, date.indexOf(' ')) : ''
}, },
//获取数据 // 获取数据
getAdvice() { getAdvice () {
this.loading = true this.loading = true
this.$http.get("/lawss/NewsFeed/getNewsFeed", { this.$http.get('/lawss/NewsFeed/getNewsFeed', {
messageType: 'QYBZFB', messageType: 'QYBZFB',
page: this.page, page: this.page,
pageSize: this.pageSize pageSize: this.pageSize
}, { }, {
_this: this,loading: 'loading' _this: this, loading: 'loading'
}, res => { }, res => {
this.standardReleaseList = res.data.records this.standardReleaseList = res.data.records
this.total = res.data.total this.total = res.data.total
+30 -27
View File
@@ -1,33 +1,36 @@
<!-- 标准问答 --> <!-- 标准问答 -->
<template> <template>
<div class="release"> <div class="release">
<el-table ref="table" <el-table
ref="table"
:data="data" :data="data"
tooltip-effect = "dark" tooltip-effect="dark"
border border
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"> :header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"
>
<el-table-column <el-table-column
label="序号" label="序号"
type="index" type="index"
align="center" align="center"
width="55"> width="55"
</el-table-column> />
<el-table-column <el-table-column
prop="classification" prop="classification"
label="类型" label="类型"
width="150" width="150"
align="center"> align="center"
</el-table-column> />
<el-table-column <el-table-column
prop="standardEncdoing" prop="standardEncdoing"
label="标准编号" label="标准编号"
width="150" width="150"
align="center"> align="center"
</el-table-column> />
<el-table-column <el-table-column
prop="problemDescription" prop="problemDescription"
label="问题描述" label="问题描述"
align="center"> align="center"
>
<template slot-scope="scope"> <template slot-scope="scope">
<a class="table-jump" @click="handleClick(scope.row.id)">{{ scope.row.problemDescription }}</a> <a class="table-jump" @click="handleClick(scope.row.id)">{{ scope.row.problemDescription }}</a>
</template> </template>
@@ -36,16 +39,16 @@
prop="questioner" prop="questioner"
label="提问人" label="提问人"
width="150" width="150"
align="center"> align="center"
</el-table-column> />
<el-table-column <el-table-column
prop="questionTime" prop="questionTime"
label="提问时间" label="提问时间"
width="150" width="150"
align="center"> align="center"
</el-table-column> />
</el-table> </el-table>
<div class="more" v-if="!pageVerify" @click="togo">更多 </div> <div v-if="!pageVerify" class="more" @click="togo">更多 </div>
<loading :loading="loading">加载中...</loading> <loading :loading="loading">加载中...</loading>
</div> </div>
</template> </template>
@@ -55,7 +58,7 @@ export default {
name: 'ReleaseQA', name: 'ReleaseQA',
components: {}, components: {},
mixins: [], mixins: [],
data() { data () {
return { return {
loading: false, loading: false,
pageVerify: false, pageVerify: false,
@@ -63,36 +66,36 @@ export default {
total: 0, total: 0,
currentPage: 1, currentPage: 1,
data: [], data: [],
form:{ form: {
classification:"", // 类型 classification: '', // 类型
problemDescription: "", // 问题描述 problemDescription: '', // 问题描述
}, },
} }
}, },
computed: {}, computed: {},
watch: {}, watch: {},
mounted() { mounted () {
this.getDate() this.getDate()
}, },
methods: { methods: {
togo () { togo () {
this.$router.push({path:'/releaseQA2'}) this.$router.push({ path: '/releaseQA2' })
}, },
handleClick (id) { handleClick (id) {
this.$router.push({ this.$router.push({
path:'/standQA', path: '/standQA',
query: { id } query: { id }
}) })
}, },
getDate(){ getDate () {
this.loading = true this.loading = true
let form = this.form const form = this.form
form.userId = this.$store.getters.userInfo.account form.userId = this.$store.getters.userInfo.account
form.pageSize = this.pageSize form.pageSize = this.pageSize
form.page = this.currentPage form.page = this.currentPage
return new Promise((resolve,reject)=>{ return new Promise((resolve, reject) => {
this.$http.get('lawss/AskQuestions/getAskQuestionsPage', form, {_this: this }, res => { this.$http.get('lawss/AskQuestions/getAskQuestionsPage', form, { _this: this }, res => {
if(res.data){ if(res.data) {
const data = res.data const data = res.data
this.data = data.records this.data = data.records
this.total = data.total this.total = data.total
+35 -29
View File
@@ -1,26 +1,28 @@
<!-- 标准发布 --> <!-- 标准发布 -->
<template> <template>
<div class="release"> <div class="release">
<!-- <ul>--> <!-- <ul>-->
<!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >--> <!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >-->
<!-- <div style="height: 18px;">--> <!-- <div style="height: 18px;">-->
<!-- <a @click="handlePreview(item)" style="color: #333333" class="table-jump">{{ item.standName }}</a>--> <!-- <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>--> <!-- <span class="time">{{item.issueTime ? $moment(item.issueTime).format('YYYY-MM-DD') : '' }}</span>-->
<!-- </div>--> <!-- </div>-->
<!-- </li>--> <!-- </li>-->
<!-- </ul>--> <!-- </ul>-->
<el-table <el-table
ref="selection" ref="selection"
:data="standardReleaseList" :data="standardReleaseList"
tooltip-effect="dark" tooltip-effect="dark"
border border
style="cursor:pointer;" style="cursor:pointer;"
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"> :header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"
>
<el-table-column <el-table-column
label="序号" label="序号"
type="index" type="index"
align="center" align="center"
width="55"> width="55"
>
<template slot-scope="{scope, column, $index}"> <template slot-scope="{scope, column, $index}">
{{ ($index + 1) + (page - 1) * pageSize }} {{ ($index + 1) + (page - 1) * pageSize }}
</template> </template>
@@ -28,27 +30,30 @@
<el-table-column <el-table-column
width="200" width="200"
prop="standard" prop="standard"
label="标准编号"> label="标准编号"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span> <span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="standardName" prop="standardName"
label="标准名称"> label="标准名称"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span> <span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
width="120" width="120"
label="标准状态"> label="标准状态"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ textStatusMap[scope.row.textState] }}</span> <span>{{ textStatusMap[scope.row.textState] }}</span>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="more" v-if="!pageVerify" @click="togo">更多 </div> <div v-if="!pageVerify" class="more" @click="togo">更多 </div>
<loading :loading="loading">加载中...</loading> <loading :loading="loading">加载中...</loading>
<pagination <pagination
v-if="pageVerify" v-if="pageVerify"
@@ -56,7 +61,8 @@
:page="page" :page="page"
:total="total" :total="total"
@pageChange="pageChange" @pageChange="pageChange"
@pageSizeChange="pageSizeChange"></pagination> @pageSizeChange="pageSizeChange"
/>
</div> </div>
</template> </template>
@@ -65,7 +71,7 @@ export default {
name: 'ReleaseUs', name: 'ReleaseUs',
components: {}, components: {},
mixins: [], mixins: [],
data() { data () {
return { return {
loading: false, loading: false,
pageVerify: false, pageVerify: false,
@@ -73,17 +79,17 @@ export default {
pageSize: 10, pageSize: 10,
total: 0, total: 0,
putTime: '', putTime: '',
standardReleaseList: [], //标准发布数据 standardReleaseList: [], // 标准发布数据
textStatusMap: {} // 标准状态id与name对应 textStatusMap: {} // 标准状态id与name对应
} }
}, },
computed: {}, computed: {},
watch: {}, watch: {},
mounted() { mounted () {
this.$http.get('sys/dictype/getDicTypeListCode', '', { this.$http.get('sys/dictype/getDicTypeListCode', '', {
_this: this _this: this
}, res => { }, res => {
if (res.data.WBZTCLASS !== undefined && res.data.WBZTCLASS !== null){ if (res.data.WBZTCLASS !== undefined && res.data.WBZTCLASS !== null) {
this.setMap(res.data.WBZTCLASS) // 标准状态 this.setMap(res.data.WBZTCLASS) // 标准状态
} }
}, e => { }, e => {
@@ -93,29 +99,29 @@ export default {
// this.addDate() // this.addDate()
}, },
methods: { methods: {
pageChange(page) { pageChange (page) {
this.page = page this.page = page
this.pageSize = this.$store.getters.userInfo.configContent this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice() this.getAdvice()
}, },
// 分页每页显示数改变后方法 // 分页每页显示数改变后方法
pageSizeChange(pageSize) { pageSizeChange (pageSize) {
this.pageSize = this.$store.getters.userInfo.configContent this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice() this.getAdvice()
// 此处需要调用接口,修改个人配置 // 此处需要调用接口,修改个人配置
}, },
togo () { togo () {
this.$router.push({path:'/releaseUs2'}) this.$router.push({ path: '/releaseUs2' })
}, },
// 将标准状态的id与name对应 // 将标准状态的id与name对应
setMap(data) { setMap (data) {
data.forEach(item => { data.forEach(item => {
this.$set(this.textStatusMap, item.value, item.label) this.$set(this.textStatusMap, item.value, item.label)
}) })
}, },
// 点击查看 // 点击查看
handlePreview (item) { handlePreview (item) {
let routeUrl = this.$router.resolve({ const routeUrl = this.$router.resolve({
name: 'OtherStandardDetails', name: 'OtherStandardDetails',
params: { params: {
id: item.standardId, id: item.standardId,
@@ -124,19 +130,19 @@ export default {
}) })
window.open(routeUrl.href, '_blank') window.open(routeUrl.href, '_blank')
}, },
//截取时间 // 截取时间
getDate (date) { getDate (date) {
return date != null ? date.substring(0, date.indexOf(' ')) : '' return date != null ? date.substring(0, date.indexOf(' ')) : ''
}, },
//获取数据 // 获取数据
getAdvice() { getAdvice () {
this.loading = true this.loading = true
this.$http.get("/lawss/NewsFeed/getNewsFeed", { this.$http.get('/lawss/NewsFeed/getNewsFeed', {
messageType: 'ZYBZFG', messageType: 'ZYBZFG',
page: this.page, page: this.page,
pageSize: this.pageSize pageSize: this.pageSize
}, { }, {
_this: this,loading: 'loading' _this: this, loading: 'loading'
}, res => { }, res => {
this.standardReleaseList = res.data.records this.standardReleaseList = res.data.records
this.total = res.data.total this.total = res.data.total
+36 -31
View File
@@ -1,26 +1,28 @@
<!-- 企标发布 --> <!-- 企标发布 -->
<template> <template>
<div class="release"> <div class="release">
<!-- <ul>--> <!-- <ul>-->
<!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >--> <!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >-->
<!-- <div style="height: 18px;">--> <!-- <div style="height: 18px;">-->
<!-- <a @click="handlePreview(item)" style="color: #333333" class="table-jump">{{ item.standName }}</a>--> <!-- <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>--> <!-- <span class="time">{{item.issueTime ? $moment(item.issueTime).format('YYYY-MM-DD') : '' }}</span>-->
<!-- </div>--> <!-- </div>-->
<!-- </li>--> <!-- </li>-->
<!-- </ul>--> <!-- </ul>-->
<el-table <el-table
ref="selection" ref="selection"
:data="standardReleaseList" :data="standardReleaseList"
tooltip-effect="dark" tooltip-effect="dark"
border border
style="cursor:pointer;" style="cursor:pointer;"
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"> :header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"
>
<el-table-column <el-table-column
type="index" type="index"
width="55" width="55"
label="序号" label="序号"
align="center"> align="center"
>
<template slot-scope="{scope, column, $index}"> <template slot-scope="{scope, column, $index}">
{{ ($index + 1) + (page - 1) * pageSize }} {{ ($index + 1) + (page - 1) * pageSize }}
</template> </template>
@@ -30,29 +32,31 @@
width="250" width="250"
label="类型" label="类型"
:show-overflow-tooltip="true" :show-overflow-tooltip="true"
align="center"> align="center"
</el-table-column> />
<el-table-column <el-table-column
prop="dataTitle" prop="dataTitle"
min-width="250" min-width="250"
label="资料标题" label="资料标题"
:show-overflow-tooltip="true" :show-overflow-tooltip="true"
align="center"> align="center"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span @click.stop="toDetail(scope.row)" style="cursor:pointer;color: #409eff">{{ scope.row.dataTitle }}</span> <span style="cursor:pointer;color: #409eff" @click.stop="toDetail(scope.row)">{{ scope.row.dataTitle }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="dataUploadTime" prop="dataUploadTime"
width="250" width="250"
label="上传时间" label="上传时间"
align="center"> align="center"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ $moment(scope.row.dataUploadTime).format("YYYY-MM-DD") }}</span> <span>{{ $moment(scope.row.dataUploadTime).format("YYYY-MM-DD") }}</span>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
<div class="more" v-if="!pageVerify" @click="togo">更多 </div> <div v-if="!pageVerify" class="more" @click="togo">更多 </div>
<loading :loading="loading">加载中...</loading> <loading :loading="loading">加载中...</loading>
<pagination <pagination
v-if="pageVerify" v-if="pageVerify"
@@ -60,7 +64,8 @@
:page="page" :page="page"
:total="total" :total="total"
@pageChange="pageChange" @pageChange="pageChange"
@pageSizeChange="pageSizeChange"></pagination> @pageSizeChange="pageSizeChange"
/>
</div> </div>
</template> </template>
@@ -69,7 +74,7 @@ export default {
name: 'ReleaseQA', name: 'ReleaseQA',
components: {}, components: {},
mixins: [], mixins: [],
data() { data () {
return { return {
loading: false, loading: false,
pageVerify: false, pageVerify: false,
@@ -77,30 +82,30 @@ export default {
pageSize: this.$store.getters.userInfo.configContent, pageSize: this.$store.getters.userInfo.configContent,
total: 0, total: 0,
putTime: '', putTime: '',
standardReleaseList: [], //标准问答数据 standardReleaseList: [], // 标准问答数据
} }
}, },
computed: {}, computed: {},
watch: {}, watch: {},
mounted() { mounted () {
this.getDate() this.getDate()
this.getAdvice() this.getAdvice()
// this.addDate() // this.addDate()
}, },
methods: { methods: {
pageChange(page) { pageChange (page) {
this.page = page this.page = page
this.pageSize = this.$store.getters.userInfo.configContent this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice() this.getAdvice()
}, },
// 分页每页显示数改变后方法 // 分页每页显示数改变后方法
pageSizeChange(pageSize) { pageSizeChange (pageSize) {
this.pageSize = this.$store.getters.userInfo.configContent this.pageSize = this.$store.getters.userInfo.configContent
this.getAdvice() this.getAdvice()
// 此处需要调用接口,修改个人配置 // 此处需要调用接口,修改个人配置
}, },
togo () { togo () {
this.$router.push({path:'/dataCenter'}) this.$router.push({ path: '/dataCenter' })
}, },
// 点击查看 // 点击查看
handlePreview (item) { handlePreview (item) {
@@ -113,31 +118,31 @@ export default {
// }) // })
// window.open(routeUrl.href, '_blank') // window.open(routeUrl.href, '_blank')
}, },
//截取时间 // 截取时间
getDate (date) { getDate (date) {
return date != null ? date.substring(0, date.indexOf(' ')) : '' return date != null ? date.substring(0, date.indexOf(' ')) : ''
}, },
toDetail(row){ toDetail (row) {
this.$router.push({ this.$router.push({
name: "dataCenterDetail", name: 'dataCenterDetail',
query: { query: {
id: row.id id: row.id
} }
}); });
}, },
//获取数据 // 获取数据
getAdvice() { getAdvice () {
this.loading = true this.loading = true
// 模拟加载 // 模拟加载
const timer = setInterval(() => { const timer = setInterval(() => {
this.loading = false this.loading = false
}, 2000) }, 2000)
console.log(timer) console.log(timer)
let userInfo = JSON.parse(localStorage.getItem('userInfo')); const userInfo = JSON.parse(localStorage.getItem('userInfo'));
this.$http.get("fileMaterialCenter/file-material/getFileMaterialIndex", { this.$http.get('fileMaterialCenter/file-material/getFileMaterialIndex', {
userId: userInfo.userId, userId: userInfo.userId,
}, { }, {
_this: this,loading: 'loading' _this: this, loading: 'loading'
}, res => { }, res => {
this.standardReleaseList = res.data this.standardReleaseList = res.data
this.total = res.data.total this.total = res.data.total
@@ -1,32 +1,34 @@
<!-- 标准征求意见 --> <!-- 标准征求意见 -->
<template> <template>
<div class="solicitopinions"> <div class="solicitopinions">
<!-- <ul>--> <!-- <ul>-->
<!-- <li v-for="item in domesticDynamics" :key="item.id" class="time-title">--> <!-- <li v-for="item in domesticDynamics" :key="item.id" class="time-title">-->
<!-- <div style="height: 18px; border-bottom: dashed 1px #cccccc">--> <!-- <div style="height: 18px; border-bottom: dashed 1px #cccccc">-->
<!-- <a class="title" style="color: #333333;" :title="item.cname" @click="standForComments(item)">{{ item.cid }}</a>--> <!-- <a class="title" style="color: #333333;" :title="item.cname" @click="standForComments(item)">{{ item.cid }}</a>-->
<!-- <span class="time">{{ item.endTime }}</span>--> <!-- <span class="time">{{ item.endTime }}</span>-->
<!-- </div>--> <!-- </div>-->
<!-- </li>--> <!-- </li>-->
<!-- </ul>--> <!-- </ul>-->
<el-table <el-table
ref="selection" ref="selection"
:data="domesticDynamics" :data="domesticDynamics"
tooltip-effect="dark" tooltip-effect="dark"
border border
style="cursor:pointer;" style="cursor:pointer;"
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"> :header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"
>
style="width: 100%"> style="width: 100%">
<el-table-column <el-table-column
label="序号" label="序号"
type="index" type="index"
align="center" align="center"
width="55"> width="55"
</el-table-column> />
<el-table-column <el-table-column
prop="cid" prop="cid"
show-overflow-tooltip show-overflow-tooltip
label="标准名称"> label="标准名称"
>
<template slot-scope="scope"> <template slot-scope="scope">
<span @click="standForComments(scope.row)">{{ scope.row.cid }}</span> <span @click="standForComments(scope.row)">{{ scope.row.cid }}</span>
</template> </template>
@@ -34,8 +36,8 @@
<el-table-column <el-table-column
prop="endTime" prop="endTime"
width="120" width="120"
label="结束时间"> label="结束时间"
</el-table-column> />
</el-table> </el-table>
<div class="more" @click="$router.push('standardForComments')">更多 </div> <div class="more" @click="$router.push('standardForComments')">更多 </div>
</div> </div>
@@ -43,31 +45,31 @@
<script> <script>
export default { export default {
name: "Solicitopinions", name: 'Solicitopinions',
components: {}, components: {},
mixins: [], mixins: [],
data() { data () {
return { return {
updateTime: "", updateTime: '',
putTime: "", putTime: '',
domesticDynamics: [] //标准征求意见数据 domesticDynamics: [] // 标准征求意见数据
}; };
}, },
computed: {}, computed: {},
watch: {}, watch: {},
mounted() { mounted () {
this.getDate(); this.getDate();
this.getAdvice(); this.getAdvice();
// this.addDate(); // this.addDate();
}, },
methods: { methods: {
//截取时间 // 截取时间
getDate(date) { getDate (date) {
return date != null ? date.substring(0, date.indexOf(" ")) : ""; return date != null ? date.substring(0, date.indexOf(' ')) : '';
}, },
//获取数据 // 获取数据
getAdvice() { getAdvice () {
this.$http.get("slrs/sar-public-idea/SelectAllPage", { this.$http.get('slrs/sar-public-idea/SelectAllPage', {
page: 1, page: 1,
size: 10 size: 10
}, { }, {
@@ -78,10 +80,10 @@ export default {
}); });
}, },
standForComments(item) { standForComments (item) {
this.$store.commit("setDetailMap", this.$router.path); this.$store.commit('setDetailMap', this.$router.path);
this.$router.push({ this.$router.push({
name: "consultationDetails", name: 'consultationDetails',
query: { query: {
item: JSON.stringify(item) item: JSON.stringify(item)
} }
+39 -39
View File
@@ -1,61 +1,61 @@
<template> <template>
<div class="home"> <div class="home">
<div class="home_main"> <div class="home_main">
<div class="left_wrapper"> <div class="left_wrapper">
<search-group></search-group> <search-group />
<div class="main-tabs" style="box-shadow:1px 1px 10px rgba(0,0,0,0.1);border-radius: 3px;" > <div class="main-tabs" style="box-shadow:1px 1px 10px rgba(0,0,0,0.1);border-radius: 3px;">
<div class="main-left-wrap" > <div class="main-left-wrap">
<!-- <el-button type="text" style="font-size: 14px" class="more" @click="MORE">MORE</el-button>--> <!-- <el-button type="text" style="font-size: 14px" class="more" @click="MORE">MORE</el-button>-->
<el-tabs <el-tabs
v-model="activeName" v-model="activeName"
class="home-tabs" class="home-tabs"
@tab-click="handleTabClick" @tab-click="handleTabClick"
> >
<el-tab-pane name="solicitOpinions"> <el-tab-pane name="solicitOpinions">
<span slot="label"><i class="el-icon-s-order"></i> 标准征求意见</span> <span slot="label"><i class="el-icon-s-order" /> 标准征求意见</span>
<solicitOpinions></solicitOpinions> <solicitOpinions />
</el-tab-pane> </el-tab-pane>
<el-tab-pane name="releaseZL" style="overflow-y: auto;height: 100%"> <el-tab-pane name="releaseZL" style="overflow-y: auto;height: 100%">
<span slot="label"><i class="el-icon-chat-line-round"></i> 标准化动态</span> <span slot="label"><i class="el-icon-chat-line-round" /> 标准化动态</span>
<releaseZL></releaseZL> <releaseZL />
</el-tab-pane> </el-tab-pane>
<el-tab-pane name="releaseUs" style="overflow-y: auto;height: 100%"> <el-tab-pane name="releaseUs" style="overflow-y: auto;height: 100%">
<span slot="label"><i class="el-icon-s-operation"></i> 在研标准法规动态</span> <span slot="label"><i class="el-icon-s-operation" /> 在研标准法规动态</span>
<releaseUs></releaseUs> <releaseUs />
</el-tab-pane> </el-tab-pane>
<el-tab-pane name="releaseCn" style="overflow-y: auto;height: 100%"> <el-tab-pane name="releaseCn" style="overflow-y: auto;height: 100%">
<span slot="label"><i class="el-icon-s-promotion"></i> 国内标准法规动态</span> <span slot="label"><i class="el-icon-s-promotion" /> 国内标准法规动态</span>
<release messageType="GNBZFG"></release> <release messageType="GNBZFG" />
</el-tab-pane> </el-tab-pane>
<el-tab-pane name="release" style="overflow-y: auto;height: 100%"> <el-tab-pane name="release" style="overflow-y: auto;height: 100%">
<span slot="label"><i class="el-icon-s-promotion"></i> 国外标准法规动态</span> <span slot="label"><i class="el-icon-s-promotion" /> 国外标准法规动态</span>
<release messageType="GWBZFG"></release> <release messageType="GWBZFG" />
</el-tab-pane> </el-tab-pane>
<el-tab-pane name="releaseBuss" style="overflow-y: auto;height: 100%"> <el-tab-pane name="releaseBuss" style="overflow-y: auto;height: 100%">
<span slot="label" style="position: relative"><i class="el-icon-s-promotion"></i> <span slot="label" style="position: relative"><i class="el-icon-s-promotion" />
企业标准发布 企业标准发布
<span v-if="isNew" class="more-doc"></span> <span v-if="isNew" class="more-doc" />
<!--<img v-if="isNew" src="/static/images/new.png" style="width: 30px;margin-left: 5px">--> <!--<img v-if="isNew" src="/static/images/new.png" style="width: 30px;margin-left: 5px">-->
</span> </span>
<releaseBuss></releaseBuss> <releaseBuss />
</el-tab-pane> </el-tab-pane>
<el-tab-pane name="releaseQA" style="overflow-y: auto;height: 100%"> <el-tab-pane name="releaseQA" style="overflow-y: auto;height: 100%">
<span slot="label"><i class="el-icon-chat-line-round"></i> 标准问答</span> <span slot="label"><i class="el-icon-chat-line-round" /> 标准问答</span>
<releaseQA></releaseQA> <releaseQA />
</el-tab-pane> </el-tab-pane>
</el-tabs> </el-tabs>
</div> </div>
</div> </div>
</div> </div>
<div class="right_wrapper"> <div class="right_wrapper">
<nav-menu></nav-menu> <nav-menu />
<todo-list></todo-list> <todo-list />
</div> </div>
</div> </div>
<div calss="home_footer" style="padding: 0"> <div calss="home_footer" style="padding: 0">
<Empennage></Empennage> <Empennage />
</div>
</div> </div>
</div>
</template> </template>
<script> <script>
@@ -70,9 +70,9 @@ import releaseZL from './components/releaseZL'
import solicitOpinions from './components/solicitopinions' import solicitOpinions from './components/solicitopinions'
import navMenu from './components/navMenu' import navMenu from './components/navMenu'
import todoList from './components/todoList' import todoList from './components/todoList'
import Empennage from "./components/empennage" import Empennage from './components/empennage'
export default { export default {
name: "Home2", name: 'Home2',
components: { components: {
searchGroup, searchGroup,
solicitOpinions, solicitOpinions,
@@ -85,18 +85,18 @@ export default {
todoList, todoList,
Empennage, Empennage,
}, },
data() { data () {
return { return {
activeName: 'solicitOpinions', activeName: 'solicitOpinions',
isNew: false isNew: false
} }
}, },
created() { created () {
this.getAdvice() this.getAdvice()
}, },
methods: { methods: {
getAdvice() { getAdvice () {
this.$http.get("/lawss/NewsFeed/getNewsFeed", { this.$http.get('/lawss/NewsFeed/getNewsFeed', {
messageType: 'QYBZFB', messageType: 'QYBZFB',
page: 1, page: 1,
pageSize: 1 pageSize: 1
@@ -104,7 +104,7 @@ export default {
_this: this _this: this
}, res => { }, res => {
if (res.data && res.data.records && res.data.records.length > 0) { if (res.data && res.data.records && res.data.records.length > 0) {
if (res.data.records[0].releaseDate && res.data.records[0].releaseDate!== '') { if (res.data.records[0].releaseDate && res.data.records[0].releaseDate !== '') {
this.isNew = this.checkTime(res.data.records[0].releaseDate) this.isNew = this.checkTime(res.data.records[0].releaseDate)
} }
} }
@@ -113,11 +113,11 @@ export default {
}) })
}, },
checkTime (time) { checkTime (time) {
return moment(time.slice(0,10)).diff(moment(), 'day') > -3 return moment(time.slice(0, 10)).diff(moment(), 'day') > -3
}, },
handleTabClick(tab, event) {}, handleTabClick (tab, event) {},
//退出登录 // 退出登录
logout(){ logout () {
this.$confirm('您确认要退出吗?', '提示', { this.$confirm('您确认要退出吗?', '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
cancelButtonText: '取消', cancelButtonText: '取消',
@@ -135,10 +135,10 @@ export default {
}).catch(() => { }).catch(() => {
}) })
}, },
MORE() { MORE () {
switch (this.activeName) { switch (this.activeName) {
case 'solicitOpinions': case 'solicitOpinions':
this.$router.push({name: 'standardForComments'}) this.$router.push({ name: 'standardForComments' })
break break
case 'release': case 'release':
this.$confirm('请选择国内/海外标准', { this.$confirm('请选择国内/海外标准', {
@@ -147,9 +147,9 @@ export default {
type: 'warning', type: 'warning',
center: true center: true
}).then(() => { }).then(() => {
this.$router.push({name: 'domesticStandardsAndRegulations'}) this.$router.push({ name: 'domesticStandardsAndRegulations' })
}).catch(() => { }).catch(() => {
this.$router.push({name: 'foreignStandardsAndRegulations'}) this.$router.push({ name: 'foreignStandardsAndRegulations' })
}); });
break break
default: default:
@@ -9,46 +9,60 @@
<div class="search-area"> <div class="search-area">
<el-form :model="standCommonlySearch" inline class="label-input-form"> <el-form :model="standCommonlySearch" inline class="label-input-form">
<el-formItem label="类别" class="search-item"> <el-formItem label="类别" class="search-item">
<el-input v-model="standCommonlySearch.categorg" class="s-c-input" placeholder="标准/政策" clearable <el-input
:maxlength="100"></el-input> v-model="standCommonlySearch.categorg"
class="s-c-input"
placeholder="标准/政策"
clearable
:maxlength="100"
/>
</el-formItem> </el-formItem>
<el-formItem label="关键字" class="search-item"> <el-formItem label="关键字" class="search-item">
<el-input v-model="standCommonlySearch.cname" class="s-c-input" placeholder="请输入关键字" clearable <el-input
:maxlength="100"></el-input> v-model="standCommonlySearch.cname"
class="s-c-input"
placeholder="请输入关键字"
clearable
:maxlength="100"
/>
</el-formItem> </el-formItem>
<el-form-item label="开始日期" > <el-form-item label="开始日期">
<el-date-picker <el-date-picker
v-model="standCommonlySearch.start" v-model="standCommonlySearch.start"
type="date" type="date"
:editable="false" :editable="false"
placeholder="请选择开始日期" placeholder="请选择开始日期"
size="small" size="small"
value-format="yyyy-MM-dd"> value-format="yyyy-MM-dd"
</el-date-picker> />
</el-form-item> </el-form-item>
<el-form-item label="结束日期" > <el-form-item label="结束日期">
<el-date-picker <el-date-picker
v-model="standCommonlySearch.end" v-model="standCommonlySearch.end"
type="date" type="date"
:editable="false" :editable="false"
placeholder="请选择结束日期" placeholder="请选择结束日期"
size="small" size="small"
value-format="yyyy-MM-dd"> value-format="yyyy-MM-dd"
</el-date-picker> />
</el-form-item> </el-form-item>
<el-formItem class="search-item btn-box"> <el-formItem class="search-item btn-box">
<el-button <el-button
v-btn-permission="'0514cd2c6b0e6311a7632f8bef87aecb'"
type="primary" type="primary"
size="mini" size="mini"
class="common-button-primary" class="common-button-primary"
v-btn-permission="'0514cd2c6b0e6311a7632f8bef87aecb'" @click="sarStandCompareHisInfo"
@click="sarStandCompareHisInfo">查询 >
查询
</el-button> </el-button>
<el-button <el-button
v-btn-permission="'bb7386429dabf20b8006e03efacc0673'"
class="common-button-default" class="common-button-default"
size="mini" size="mini"
v-btn-permission="'bb7386429dabf20b8006e03efacc0673'" @click="clearSearchStand"
@click="clearSearchStand">清空 >
清空
</el-button> </el-button>
</el-formItem> </el-formItem>
</el-form> </el-form>
@@ -65,13 +79,15 @@
style="width: 100%;padding:0 0 20px 0;" style="width: 100%;padding:0 0 20px 0;"
height="100%" height="100%"
border border
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"> :header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"
>
<el-table-column <el-table-column
type="index" type="index"
fixed="left" fixed="left"
width="55" width="55"
label="序号" label="序号"
align="center"> align="center"
>
<template slot-scope="{scope, column, $index}"> <template slot-scope="{scope, column, $index}">
{{ ($index + 1) + (standCommonlySearch.page - 1) * standCommonlySearch.size }} {{ ($index + 1) + (standCommonlySearch.page - 1) * standCommonlySearch.size }}
</template> </template>
@@ -80,7 +96,8 @@
prop="category" prop="category"
label="标准/政策" label="标准/政策"
width="150" width="150"
align="center"> align="center"
>
<template slot-scope="scope"> <template slot-scope="scope">
<a class="table-jump" @click.stop="handlePreview(scope.row)">{{ scope.row.category }}</a> <a class="table-jump" @click.stop="handlePreview(scope.row)">{{ scope.row.category }}</a>
</template> </template>
@@ -88,16 +105,18 @@
<el-table-column <el-table-column
prop="cid" prop="cid"
label="标准名称/政策名称" label="标准名称/政策名称"
align="center"> align="center"
>
<template slot-scope="scope"> <template slot-scope="scope">
<a @click="handlePreview(scope.row)" class="table-jump">{{ scope.row.cid }}</a> <a class="table-jump" @click="handlePreview(scope.row)">{{ scope.row.cid }}</a>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="endTime" prop="endTime"
label="征求意见周期" label="征求意见周期"
width="200" width="200"
align="center"> align="center"
>
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.startTime + ' ~ ' + scope.row.endTime }} {{ scope.row.startTime + ' ~ ' + scope.row.endTime }}
</template> </template>
@@ -106,29 +125,34 @@
prop="startTime" prop="startTime"
label="上传时间" label="上传时间"
width="200" width="200"
align="center"> align="center"
</el-table-column> />
</el-table> </el-table>
</div> </div>
</div> </div>
</div> </div>
<pagination :page="standCommonlySearch.page" :total="total" @pageChange="pageChange" <pagination
@pageSizeChange="pageSizeChange"></pagination> :page="standCommonlySearch.page"
:total="total"
@pageChange="pageChange"
@pageSizeChange="pageSizeChange"
/>
<loading :loading="spinShow">数据加载中</loading> <loading :loading="spinShow">数据加载中</loading>
</div> </div>
</template> </template>
<script> <script>
export default { export default {
name: "standardForComments", name: 'StandardForComments',
components: {}, components: {},
data() { props: {},
data () {
return { return {
standCommonlySearch: { standCommonlySearch: {
categorg: "", categorg: '',
cname: "", cname: '',
start: "", start: '',
end: "", end: '',
page: 1, page: 1,
size: this.$store.getters.userInfo.configContent size: this.$store.getters.userInfo.configContent
}, },
@@ -138,39 +162,46 @@ export default {
total: 0 total: 0
}; };
}, },
props: {}, computed: {},
watch: {}, watch: {},
mounted () {
this.sarStandCompareHis();
this.tableHeight = $('.content').height() - 44;
window.onresize = () => {
this.tableHeight = $('.content').height() - 44;
};
},
methods: { methods: {
// 点击查看 // 点击查看
handlePreview(item) { handlePreview (item) {
this.$store.commit("setDetailMap", this.$router.path); this.$store.commit('setDetailMap', this.$router.path);
this.$router.push({ this.$router.push({
name: "consultationDetails", name: 'consultationDetails',
query: { query: {
item: JSON.stringify(item) item: JSON.stringify(item)
} }
}); });
}, },
// 清空 // 清空
clearSearchStand() { clearSearchStand () {
this.standCommonlySearch.page = 1; this.standCommonlySearch.page = 1;
this.standCommonlySearch.start = ""; this.standCommonlySearch.start = '';
this.standCommonlySearch.end = ""; this.standCommonlySearch.end = '';
this.standCommonlySearch.categorg = ""; this.standCommonlySearch.categorg = '';
this.standCommonlySearch.cname = ""; this.standCommonlySearch.cname = '';
this.sarStandCompareHis(); this.sarStandCompareHis();
}, },
// 搜索 // 搜索
sarStandCompareHisInfo() { sarStandCompareHisInfo () {
this.splitInfoPage = 1; this.splitInfoPage = 1;
this.sarStandCompareHis(); this.sarStandCompareHis();
}, },
// 查询表格 // 查询表格
sarStandCompareHis() { sarStandCompareHis () {
this.spinShow = true; this.spinShow = true;
this.standCommonlySearch.type = 1; this.standCommonlySearch.type = 1;
var form = this.standCommonlySearch; const form = this.standCommonlySearch;
this.$http.get("slrs/sar-public-idea/SelectAllPage", form, { this.$http.get('slrs/sar-public-idea/SelectAllPage', form, {
_this: this _this: this
}, res => { }, res => {
this.standInfoList = res.data.records; this.standInfoList = res.data.records;
@@ -179,24 +210,16 @@ export default {
}, e => { }, e => {
}); });
}, },
pageChange(page) { pageChange (page) {
this.standCommonlySearch.page = page; this.standCommonlySearch.page = page;
this.sarStandCompareHis(); this.sarStandCompareHis();
}, },
// 分页每页显示数改变后方法 // 分页每页显示数改变后方法
pageSizeChange(pageSize) { pageSizeChange (pageSize) {
this.$store.getters.userInfo.configContent = pageSize; this.$store.getters.userInfo.configContent = pageSize;
this.standCommonlySearch.size = pageSize; this.standCommonlySearch.size = pageSize;
this.sarStandCompareHis(); this.sarStandCompareHis();
} }
},
computed: {},
mounted() {
this.sarStandCompareHis();
this.tableHeight = $(".content").height() - 44;
window.onresize = () => {
this.tableHeight = $(".content").height() - 44;
};
} }
}; };
</script> </script>