-
- 批量驳回
- 批量通过
- 列表导出
-
-
-
标准/译文获取申请
+
+
+ 批量驳回
+
+ 批量通过
+
+ 列表导出
+
+
+
+ 标准/译文获取申请
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 查看
+ 通过
+
+ 驳回
+
+
+ 撤回
+
+
+ 编辑
+
+
+ 重新提交
+
+
+ 删除
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
- 查看
- 通过
- 驳回
-
- 撤回
-
-
- 编辑
-
-
- 重新提交
-
-
- 删除
-
-
-
-
-
+
-
-
-
-
-
+ />
+
+
+
+
@@ -226,7 +245,7 @@ export default {
exportDialog,
addModal
},
- data () {
+ data() {
return {
moduleAdmin: false,
applyForUnitName: '',
@@ -280,17 +299,17 @@ export default {
nodeListDep: []
}
},
- mounted () {
+ mounted() {
this.account = JSON.parse(window.localStorage.getItem('userInfo')).account
if (this.$route.query && this.$route.query.tag === 'fromSearchCenter') {
this.standardsAndTranslationRequestShowModal()
- this.$router.replace({ query: { ...this.$route.query, tag: undefined } })
+ this.$router.replace({query: {...this.$route.query, tag: undefined}})
}
this.getList()
this.getDicTypeListCode()
},
methods: {
- batchDelete (id) {
+ batchDelete(id) {
let ids = ''
let tipsText = ''
if (id) {
@@ -304,17 +323,17 @@ export default {
type: 'warning',
roundButton: false
}).then(() => {
- this.$http.postData(this.url.deleteUrl, { ids: ids }, { _this: this }, res => {
+ this.$http.postData(this.url.deleteUrl, {ids: ids}, {_this: this}, res => {
if (res.ok) {
this.$message.success('操作成功')
this.getList()
- }else{
+ } else {
this.$message.warning(res.message)
}
})
})
},
- drawerCheckDep (data) {
+ drawerCheckDep(data) {
let idList = ''
let nameList = ''
data.forEach(item => {
@@ -328,7 +347,7 @@ export default {
this.StandardApplyForEOPage.applyForUnitIds = idList;
this.applyForUnitName = nameList;
},
- choiceZRBM (type, title, id = '') {
+ choiceZRBM(type, title, id = '') {
this.nodeListDep = []
if (id) {
this.$set(this, 'nodeListDep', id.split(','))
@@ -336,24 +355,24 @@ export default {
this.choiceTitle = title
this.modalShowDepFlag = true
},
- ResubmitOrWithdraw (id, status) {
+ ResubmitOrWithdraw(id, status) {
const query = {
status: status ? status : '',
ids: id
}
- this.$http.postData('/lawss/standardApplyFor/batchUpdateStatus', query, { _this: this }, res => {
+ this.$http.postData('/lawss/standardApplyFor/batchUpdateStatus', query, {_this: this}, res => {
if (res.ok) {
this.$message.success('操作成功')
this.getList()
- }else{
+ } else {
this.$message.warning(res.message)
}
})
},
- edit (item) {
+ edit(item) {
this.$refs.addModalRef.showModal(item)
},
- checkedRole (data) {
+ checkedRole(data) {
let idList = ''
let nameList = ''
data.forEach(item => {
@@ -367,9 +386,9 @@ export default {
this.StandardApplyForEOPage.applyForUserIds = idList
this.applyForUserName = nameList
},
- choiceWSSMR (type, title, id) {
+ choiceWSSMR(type, title, id) {
this.nodeList = []
- if(id) {
+ if (id) {
const nameId = id.split(',')
let idList = []
nameId.forEach(item => {
@@ -382,7 +401,7 @@ export default {
this.drawerTitle = title
this.modalShowRoleFlag = true
},
- getDicTypeListCode () {
+ getDicTypeListCode() {
this.$http.get('sys/dictype/getDicTypeListCode', '', {
_this: this
}, res => {
@@ -391,11 +410,11 @@ export default {
}, e => {
})
},
- searchData () {
+ searchData() {
this.StandardApplyForEOPage.page = 1
this.getList()
},
- clearSerach () {
+ clearSerach() {
this.applyForUnitName = ''
this.applyForUserName = ''
this.StandardApplyForEOPage = {
@@ -404,7 +423,7 @@ export default {
}
this.getList()
},
- getList () {
+ getList() {
this.tableLoading = true
this.$http.get(this.url.getList, {
...this.StandardApplyForEOPage
@@ -414,14 +433,14 @@ export default {
if (res.ok) {
this.StandardApplyForEO = res.data.records
this.total = res.data.total
- }else {
+ } else {
this.StandardApplyForEO = []
this.total = 0
}
this.selectedList = []
this.$refs.selections.clearSelection()
this.tableLoading = false
- this.$http.get('/lawss/standardApplyFor/queryPendingApprovalCount', '', { _this: this }, res => {
+ this.$http.get('/lawss/standardApplyFor/queryPendingApprovalCount', '', {_this: this}, res => {
if (res.ok) {
this.$store.commit('SET_STANDARD_TRANSLATION_TODO', res.data.pendingApprovalCount)
this.moduleAdmin = res.data.isStandardApplyForAdministrator
@@ -429,7 +448,7 @@ export default {
})
})
},
- batchPass (id) {
+ batchPass(id) {
if (id.length === 0) {
this.$message({
message: '请选择至少一条数据',
@@ -454,7 +473,7 @@ export default {
type: 'warning',
roundButton: false
}).then(() => {
- this.$http.postData(this.url.updateState, { status: 'pass', ids: ids }, { _this: this }, res => {
+ this.$http.postData(this.url.updateState, {status: 'pass', ids: ids}, {_this: this}, res => {
if (res.ok) {
this.$message.success('操作成功')
this.getList()
@@ -467,7 +486,7 @@ export default {
this.$refs.selections.clearSelection()
})
},
- batchOverrule (id) {
+ batchOverrule(id) {
if (id.length === 0) {
this.$message({
message: '请选择至少一条数据',
@@ -503,8 +522,8 @@ export default {
}
},
inputErrorMessage: ''
- }).then(({ value }) => {
- this.$http.postData(this.url.updateState, { status: 'refuse', refuseCause: value, ids }, { _this: this }, res => {
+ }).then(({value}) => {
+ this.$http.postData(this.url.updateState, {status: 'refuse', refuseCause: value, ids}, {_this: this}, res => {
if (res.ok) {
this.$message.success('操作成功')
this.getList()
@@ -517,7 +536,7 @@ export default {
this.$refs.selections.clearSelection()
})
},
- exportName (name) {
+ exportName(name) {
const params = {
...this.StandardApplyForEOPage,
exportFileName: name ? name : '标准及译文获取申请',
@@ -529,7 +548,7 @@ export default {
responseType: 'blob',
params: params
}).then(res => {
- const blob = new Blob([ res ], { type: 'application/vnd.ms-excel' });
+ const blob = new Blob([res], {type: 'application/vnd.ms-excel'});
// 浏览器兼容,Google和火狐支持a标签的download,IE不支持
if (window.navigator && window.navigator.msSaveBlob) {
// IE浏览器、微软浏览器
@@ -548,24 +567,24 @@ export default {
}
})
},
- exportList () {
+ exportList() {
this.$refs.exportDialogRef.openModel()
},
- toView (id) {
+ toView(id) {
this.$refs.detailModalRef.showModal(id)
},
- standardsAndTranslationRequestShowModal () {
+ standardsAndTranslationRequestShowModal() {
this.$refs.standardsAndTranslationModalRef.showModal()
},
- pageChange (page) {
+ pageChange(page) {
this.StandardApplyForEOPage.page = page
this.getList()
},
- pageSizeChange (pageSize) {
+ pageSizeChange(pageSize) {
this.StandardApplyForEOPage.pageSize = pageSize
this.getList()
},
- handleSelectionChange (value) {
+ handleSelectionChange(value) {
const ids = []
value.forEach(item => {
ids.push(item.id)
@@ -574,7 +593,7 @@ export default {
this.selectedTag = false
}
})
- this.selectedList = [ ...ids ]
+ this.selectedList = [...ids]
}
},
}
@@ -585,23 +604,25 @@ export default {
height: 100%;
display: flex;
flex-direction: column;
+ background-color: white;
- .table-container {
- background-color: white;
- padding: 0 10px;
- flex-grow: 1;
+ .operate-options {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+ padding: 10px;
+ }
+
+ .content {
+ flex: auto;
+ overflow: hidden;
display: flex;
flex-direction: column;
- .drag-table {
- flex-grow: 1;
- }
-
- .operate-options {
- display: flex;
- align-items: center;
- justify-content: space-between;
- padding-bottom: 10px;
+ .table-wrap {
+ flex: auto;
+ overflow: hidden;
+ position: relative;
}
}
From 7eb89d9d7a35be2b383ddbd0e0421f652a79aa96 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E8=8C=83=E5=BC=BA=E5=BC=BA?= <787203167>
Date: Tue, 2 Apr 2024 09:25:07 +0800
Subject: [PATCH 4/4] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20=E4=BC=81=E6=A0=87?=
=?UTF-8?q?=E5=88=B6=E4=BF=AE=E8=AE=A2-=E6=8A=80=E6=9C=AF=E6=A0=87?=
=?UTF-8?q?=E5=87=86?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../pages/creatProcess/qbrk/common/formList.vue | 8 ++++++--
src/pages/processCenter/pages/creatProcess/qbrk/step2.vue | 1 +
2 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/src/pages/processCenter/pages/creatProcess/qbrk/common/formList.vue b/src/pages/processCenter/pages/creatProcess/qbrk/common/formList.vue
index ab0ef45f4..8617dbcaa 100644
--- a/src/pages/processCenter/pages/creatProcess/qbrk/common/formList.vue
+++ b/src/pages/processCenter/pages/creatProcess/qbrk/common/formList.vue
@@ -173,7 +173,7 @@
-