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
+113 -101
View File
@@ -1,61 +1,62 @@
<!-- 标准发布 --> <!-- 标准发布 -->
<template> <template>
<div class="release"> <div class="release">
<!-- <ul>--> <el-table
<!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >--> ref="selection"
<!-- <div style="height: 18px;">--> :data="standardReleaseList"
<!-- <a @click="handlePreview(item)" style="color: #333333" class="table-jump">{{ item.standName }}</a>--> tooltip-effect="dark"
<!-- <span class="time">{{item.issueTime ? $moment(item.issueTime).format('YYYY-MM-DD') : '' }}</span>--> border
<!-- </div>--> style="cursor:pointer;"
<!-- </li>--> :header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"
<!-- </ul>--> >
<el-table <el-table-column
ref="selection" label="序号"
:data="standardReleaseList" type="index"
tooltip-effect="dark" align="center"
border width="55"
style="cursor:pointer;" >
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"> <template slot-scope="{scope, column, $index}">
<el-table-column {{ ($index + 1) + (page - 1) * pageSize }}
label="序号" </template>
type="index" </el-table-column>
align="center" <el-table-column
width="55"> width="200"
<template slot-scope="{scope, column, $index}"> label="标准编号"
{{ ($index + 1) + (page - 1) * pageSize }} >
</template> <template slot-scope="scope">
</el-table-column> <span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
<el-table-column </template>
width="200" </el-table-column>
label="标准编号"> <el-table-column
<template slot-scope="scope"> prop="standName"
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span> label="标准名称"
</template> >
</el-table-column> <template slot-scope="scope">
<el-table-column <span style="display: flex;align-items: center" @click="handlePreview(scope.row)">
prop="standName" <span>{{ scope.row.standardName }}</span>
label="标准名称"> <img v-if="checkTime(scope.row.renewTime)" src="/static/images/new.png" style="width: 30px;margin-left: 5px">
<template slot-scope="scope"> </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>
<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"
style="position: static;" style="position: static;"
: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>
+100 -103
View File
@@ -1,62 +1,60 @@
<!-- 标准发布 --> <!-- 标准发布 -->
<template> <template>
<div class="release"> <div class="release">
<!-- <ul>--> <el-table
<!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >--> ref="selection"
<!-- <div style="height: 18px;">--> :data="standardReleaseList"
<!-- <a @click="handlePreview(item)" style="color: #333333" class="table-jump">{{ item.standName }}</a>--> tooltip-effect="dark"
<!-- <span class="time">{{item.issueTime ? $moment(item.issueTime).format('YYYY-MM-DD') : '' }}</span>--> border
<!-- </div>--> height="90%"
<!-- </li>--> style="width: 100%; flex: auto;"
<!-- </ul>--> class="drag-table"
<el-table :header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px',
ref="selection" fontWeight: 'bold', height: '48px'}"
:data="standardReleaseList" >
tooltip-effect="dark" <el-table-column
border label="序号"
height="90%" type="index"
style="width: 100%; flex: auto;" align="center"
class="drag-table" width="55"
:header-cell-style="{background: '#e8e8e8', color: '#333333', fontSize: '16px', >
fontWeight: 'bold', height: '48px'}"> <template slot-scope="{scope, column, $index}">
<el-table-column {{ ($index + 1) + (page - 1) * pageSize }}
label="序号" </template>
type="index" </el-table-column>
align="center" <el-table-column
width="55"> width="200"
<template slot-scope="{scope, column, $index}"> label="标准编号"
{{ ($index + 1) + (page - 1) * pageSize }} >
</template> <template slot-scope="scope">
</el-table-column> <span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
<el-table-column </template>
width="200" </el-table-column>
label="标准编号"> <el-table-column
<template slot-scope="scope"> prop="standName"
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span> label="标准名称"
</template> >
</el-table-column> <template slot-scope="scope">
<el-table-column <span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span>
prop="standName" </template>
label="标准名称"> </el-table-column>
<template slot-scope="scope"> <el-table-column
<span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span> width="120"
</template> label="发布时间"
</el-table-column> >
<el-table-column <template slot-scope="scope">
width="120" <span>{{ scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span>
label="发布时间"> </template>
<template slot-scope="scope"> </el-table-column>
<span>{{scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span> </el-table>
</template> <loading :loading="loading">加载中...</loading>
</el-table-column> <pagination
</el-table> style="position: static;"
<loading :loading="loading">加载中...</loading> :page="page"
<pagination :total="total"
style="position: static;" @pageChange="pageChange"
:page="page" @pageSizeChange="pageSizeChange"
:total="total" />
@pageChange="pageChange"
@pageSizeChange="pageSizeChange"></pagination>
</div> </div>
</template> </template>
@@ -65,48 +63,47 @@ export default {
name: 'Release', name: 'Release',
components: {}, components: {},
mixins: [], mixins: [],
data() { data () {
return { return {
loading: false, loading: false,
pageVerify: false, pageVerify: false,
page: 1, page: 1,
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 {
this.pageVerify = false this.pageVerify = false
} }
this.getAdvice() this.getAdvice()
}, },
// 点击查看 // 点击查看
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,27 +112,27 @@ 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
this.loading = false this.loading = false
}, e => { }, e => {
this.loading = false this.loading = false
this.standardReleaseList = [] this.standardReleaseList = []
this.total = 0 this.total = 0
}) })
}, },
}, },
+103 -106
View File
@@ -1,64 +1,62 @@
<!-- 企标发布 --> <!-- 企标发布 -->
<template> <template>
<div class="release"> <div class="release">
<!-- <ul>--> <el-table
<!-- <li v-for="item in standardReleaseList" :key="item.id" class="time-title" >--> ref="selection"
<!-- <div style="height: 18px;">--> :data="standardReleaseList"
<!-- <a @click="handlePreview(item)" style="color: #333333" class="table-jump">{{ item.standName }}</a>--> tooltip-effect="dark"
<!-- <span class="time">{{item.issueTime ? $moment(item.issueTime).format('YYYY-MM-DD') : '' }}</span>--> border
<!-- </div>--> style="cursor:pointer;"
<!-- </li>--> :header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"
<!-- </ul>--> >
<el-table <el-table-column
ref="selection" label="序号"
:data="standardReleaseList" type="index"
tooltip-effect="dark" align="center"
border width="55"
style="cursor:pointer;" >
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"> <template slot-scope="{scope, column, $index}">
<el-table-column {{ ($index + 1) + (page - 1) * pageSize }}
label="序号" </template>
type="index" </el-table-column>
align="center" <el-table-column
width="55"> width="200"
<template slot-scope="{scope, column, $index}"> label="标准编号"
{{ ($index + 1) + (page - 1) * pageSize }} >
</template> <template slot-scope="scope">
</el-table-column> <span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
<el-table-column </template>
width="200" </el-table-column>
label="标准编号"> <el-table-column
<template slot-scope="scope"> prop="standName"
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span> label="标准名称"
</template> >
</el-table-column> <template slot-scope="scope">
<el-table-column <span style="display: flex;align-items: center" @click="handlePreview(scope.row)">
prop="standName" <span>{{ scope.row.standardName }}</span>
label="标准名称"> <img v-if="checkTime(scope.row.releaseDate)" src="/static/images/new.png" style="width: 30px;margin-left: 5px">
<template slot-scope="scope"> </span>
<span @click="handlePreview(scope.row)" style="display: flex;align-items: center"> </template>
<span>{{ scope.row.standardName }}</span> </el-table-column>
<img v-if="checkTime(scope.row.releaseDate)" src="/static/images/new.png" style="width: 30px;margin-left: 5px"> <el-table-column
</span> width="120"
</template> label="发布时间"
</el-table-column> >
<el-table-column <template slot-scope="scope">
width="120" <span>{{ scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span>
label="发布时间"> </template>
<template slot-scope="scope"> </el-table-column>
<span>{{scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span> </el-table>
</template> <div v-if="!pageVerify" class="more" @click="togo">更多 </div>
</el-table-column> <loading :loading="loading">加载中...</loading>
</el-table> <pagination
<div class="more" v-if="!pageVerify" @click="togo">更多 </div> v-if="pageVerify"
<loading :loading="loading">加载中...</loading> style="position: static;"
<pagination :page="page"
v-if="pageVerify" :total="total"
style="position: static;" @pageChange="pageChange"
:page="page" @pageSizeChange="pageSizeChange"
:total="total" />
@pageChange="pageChange"
@pageSizeChange="pageSizeChange"></pagination>
</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,70 +74,69 @@ 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,
pageType: 'BUSINESS_STAND' pageType: 'BUSINESS_STAND'
} }
}) })
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
this.loading = false this.loading = false
}, e => { }, e => {
this.loading = false this.loading = false
this.standardReleaseList = [] this.standardReleaseList = []
this.total = 0 this.total = 0
}) })
}, },
}, },
} }
</script> </script>
+118 -113
View File
@@ -1,65 +1,71 @@
<!-- 企标发布 --> <!-- 企标发布 -->
<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
height="90%" height="90%"
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 >
label="序号" <el-table-column
type="index" label="序号"
align="center" type="index"
width="55"> align="center"
<template slot-scope="{scope, column, $index}"> width="55"
{{ ($index + 1) + (page - 1) * pageSize }} >
</template> <template slot-scope="{scope, column, $index}">
</el-table-column> {{ ($index + 1) + (page - 1) * pageSize }}
<el-table-column </template>
width="200" </el-table-column>
label="标准编号"> <el-table-column
<template slot-scope="scope"> width="200"
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span> label="标准编号"
</template> >
</el-table-column> <template slot-scope="scope">
<el-table-column <span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
prop="standName" </template>
label="标准名称"> </el-table-column>
<template slot-scope="scope"> <el-table-column
<span @click="handlePreview(scope.row)" style="display: flex;align-items: center"> prop="standName"
{{ scope.row.standardName }} label="标准名称"
<img v-if="checkTime(scope.row.releaseDate)" src="/static/images/new.png" style="width: 30px;margin-left: 5px"> >
</span> <template slot-scope="scope">
</template> <span style="display: flex;align-items: center" @click="handlePreview(scope.row)">
</el-table-column> {{ scope.row.standardName }}
<el-table-column <img v-if="checkTime(scope.row.releaseDate)" src="/static/images/new.png" style="width: 30px;margin-left: 5px">
width="120" </span>
label="发布时间"> </template>
<template slot-scope="scope"> </el-table-column>
<span>{{scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span> <el-table-column
</template> width="120"
</el-table-column> label="发布时间"
</el-table> >
<loading :loading="loading">加载中...</loading> <template slot-scope="scope">
<pagination <span>{{ scope.row.releaseDate ? $moment(scope.row.releaseDate).format('YYYY-MM-DD') : '' }}</span>
style="position: static;" </template>
:page="page" </el-table-column>
:total="total" </el-table>
@pageChange="pageChange" <loading :loading="loading">加载中...</loading>
@pageSizeChange="pageSizeChange"></pagination> <pagination
style="position: static;"
:page="page"
:total="total"
@pageChange="pageChange"
@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,73 +83,72 @@ 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 {
this.pageVerify = false this.pageVerify = false
} }
this.getAdvice() this.getAdvice()
}, },
// 点击查看 // 点击查看
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,
pageType: 'BUSINESS_STAND' pageType: 'BUSINESS_STAND'
} }
}) })
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
this.loading = false this.loading = false
}, e => { }, e => {
this.loading = false this.loading = false
this.standardReleaseList = [] this.standardReleaseList = []
this.total = 0 this.total = 0
}) })
}, },
}, },
+49 -46
View File
@@ -1,51 +1,54 @@
<!-- 标准问答 --> <!-- 标准问答 -->
<template> <template>
<div class="release"> <div class="release">
<el-table ref="table" <el-table
:data="data" ref="table"
tooltip-effect = "dark" :data="data"
border tooltip-effect="dark"
:header-cell-style="{background: '#f8f8f9', color: '#515a6e'}"> border
: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>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
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
+113 -107
View File
@@ -1,62 +1,68 @@
<!-- 标准发布 --> <!-- 标准发布 -->
<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 >
label="序号" <el-table-column
type="index" label="序号"
align="center" type="index"
width="55"> align="center"
<template slot-scope="{scope, column, $index}"> width="55"
{{ ($index + 1) + (page - 1) * pageSize }} >
</template> <template slot-scope="{scope, column, $index}">
</el-table-column> {{ ($index + 1) + (page - 1) * pageSize }}
<el-table-column </template>
width="200" </el-table-column>
prop="standard" <el-table-column
label="标准编号"> width="200"
<template slot-scope="scope"> prop="standard"
<span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span> label="标准编号"
</template> >
</el-table-column> <template slot-scope="scope">
<el-table-column <span @click="handlePreview(scope.row)">{{ scope.row.standard }}</span>
prop="standardName" </template>
label="标准名称"> </el-table-column>
<template slot-scope="scope"> <el-table-column
<span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span> prop="standardName"
</template> label="标准名称"
</el-table-column> >
<el-table-column <template slot-scope="scope">
width="120" <span @click="handlePreview(scope.row)">{{ scope.row.standardName }}</span>
label="标准状态"> </template>
<template slot-scope="scope"> </el-table-column>
<span>{{ textStatusMap[scope.row.textState] }}</span> <el-table-column
</template> width="120"
</el-table-column> label="标准状态"
</el-table> >
<div class="more" v-if="!pageVerify" @click="togo">更多 </div> <template slot-scope="scope">
<loading :loading="loading">加载中...</loading> <span>{{ textStatusMap[scope.row.textState] }}</span>
<pagination </template>
v-if="pageVerify" </el-table-column>
style="position: static;" </el-table>
:page="page" <div v-if="!pageVerify" class="more" @click="togo">更多 </div>
:total="total" <loading :loading="loading">加载中...</loading>
@pageChange="pageChange" <pagination
@pageSizeChange="pageSizeChange"></pagination> v-if="pageVerify"
style="position: static;"
:page="page"
:total="total"
@pageChange="pageChange"
@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,49 +79,49 @@ 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 => {
}) })
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:'/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,28 +130,28 @@ 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
this.loading = false this.loading = false
}, e => { }, e => {
this.loading = false this.loading = false
this.standardReleaseList = [] this.standardReleaseList = []
this.total = 0 this.total = 0
}) })
}, },
}, },
+115 -110
View File
@@ -1,66 +1,71 @@
<!-- 企标发布 --> <!-- 企标发布 -->
<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 >
type="index" <el-table-column
width="55" type="index"
label="序号" width="55"
align="center"> label="序号"
<template slot-scope="{scope, column, $index}"> align="center"
{{ ($index + 1) + (page - 1) * pageSize }} >
</template> <template slot-scope="{scope, column, $index}">
</el-table-column> {{ ($index + 1) + (page - 1) * pageSize }}
<el-table-column </template>
prop="dataType" </el-table-column>
width="250" <el-table-column
label="类型" prop="dataType"
:show-overflow-tooltip="true" width="250"
align="center"> label="类型"
</el-table-column> :show-overflow-tooltip="true"
<el-table-column align="center"
prop="dataTitle" />
min-width="250" <el-table-column
label="资料标题" prop="dataTitle"
:show-overflow-tooltip="true" min-width="250"
align="center"> label="资料标题"
<template slot-scope="scope"> :show-overflow-tooltip="true"
<span @click.stop="toDetail(scope.row)" style="cursor:pointer;color: #409eff">{{ scope.row.dataTitle }}</span> align="center"
</template> >
</el-table-column> <template slot-scope="scope">
<el-table-column <span style="cursor:pointer;color: #409eff" @click.stop="toDetail(scope.row)">{{ scope.row.dataTitle }}</span>
prop="dataUploadTime" </template>
width="250" </el-table-column>
label="上传时间" <el-table-column
align="center"> prop="dataUploadTime"
<template slot-scope="scope"> width="250"
<span>{{ $moment(scope.row.dataUploadTime).format("YYYY-MM-DD") }}</span> label="上传时间"
</template> align="center"
</el-table-column> >
</el-table> <template slot-scope="scope">
<div class="more" v-if="!pageVerify" @click="togo">更多 </div> <span>{{ $moment(scope.row.dataUploadTime).format("YYYY-MM-DD") }}</span>
<loading :loading="loading">加载中...</loading> </template>
<pagination </el-table-column>
v-if="pageVerify" </el-table>
style="position: static;" <div v-if="!pageVerify" class="more" @click="togo">更多 </div>
:page="page" <loading :loading="loading">加载中...</loading>
:total="total" <pagination
@pageChange="pageChange" v-if="pageVerify"
@pageSizeChange="pageSizeChange"></pagination> style="position: static;"
:page="page"
:total="total"
@pageChange="pageChange"
@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,76 +82,76 @@ 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) {
// let routeUrl = this.$router.resolve({ // let routeUrl = this.$router.resolve({
// name: 'OtherBussStandardDetails', // name: 'OtherBussStandardDetails',
// params: { // params: {
// id: item.standardId, // id: item.standardId,
// pageType: 'BUSINESS_STAND' // pageType: 'BUSINESS_STAND'
// } // }
// }) // })
// 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
this.loading = false this.loading = false
}, e => { }, e => {
this.loading = false this.loading = false
this.standardReleaseList = [] this.standardReleaseList = []
this.total = 0 this.total = 0
}) })
}, },
}, },
@@ -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)
} }
+70 -70
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 calss="home_footer" style="padding: 0">
<Empennage />
</div> </div>
</div> </div>
<div calss="home_footer" style="padding: 0">
<Empennage></Empennage>
</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>