@@ -341,6 +342,8 @@
name: "phoneBzjdStep4",
data() {
return {
+ tableIndex: 0,
+ itemLists: [],
dialogMadal: false,
drawerModal: false,
//折叠的标志,true为折叠,false为不折叠
@@ -374,6 +377,16 @@
ProcessTitle
},
methods: {
+ tableLoading () {
+ this.tableIndex++
+ let index = this.tableIndex * 20
+ let endIndex = index + 20
+ if (this.tableIndex * 20 > this.itemLists.length) {
+ this.$message.warning('没有更多了')
+ }
+ let newData = this.itemLists.slice(index, endIndex)
+ this.itemList = this.itemList.concat(newData)
+ },
dialogOk () {
this.dialogMadal = false
},
@@ -488,7 +501,8 @@
}
this.sarType = data.standInData || data.sarType
this.json = data
- this.itemList = data.itemList
+ this.itemLists = data.itemList
+ this.itemList = this.itemLists.slice(this.tableIndex, 20)
this.loading = false
}).catch(e => {
})
@@ -507,6 +521,8 @@
.phoneBzjdStep4 {
/deep/.van-dialog__content {
min-height: 300px;
+ max-height: 500px;
+ overflow: auto;
padding: 10px;
}
.prc-content-border {
diff --git a/src/pages/processCenter/pages/phone/bzjd/step5.vue b/src/pages/processCenter/pages/phone/bzjd/step5.vue
new file mode 100644
index 000000000..477e00964
--- /dev/null
+++ b/src/pages/processCenter/pages/phone/bzjd/step5.vue
@@ -0,0 +1,577 @@
+
+
+
+ 标准解读流程
+ 工程师审核
+
+
+
+
+
+
+ 基础信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 隐藏基础信息
+ 展开基础信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 拆分信息
+
+
+
+
+
+
+
+
+ 查看条款内容
+
+
+
+
+
+
+
+
+
+
+ 符合
+ 不符合
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.applyArctic.toString() }}
+
+
+
+
+
+
+
+
加载更多...
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.createTime ? $moment(scope.row.createTime).format('YYYY-MM-DD') : '' }}
+
+
+
+
+ {{ scope.row.endTime ? $moment(scope.row.endTime).format('YYYY-MM-DD') : '' }}
+
+
+
+
+ {{ scope.row.commentText }}
+
+
+
+
+ {{ scope.row.endTime ? '已完成' : '未完成'}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/pages/processCenter/pages/phone/bzjd/step6.vue b/src/pages/processCenter/pages/phone/bzjd/step6.vue
new file mode 100644
index 000000000..1abf42dab
--- /dev/null
+++ b/src/pages/processCenter/pages/phone/bzjd/step6.vue
@@ -0,0 +1,577 @@
+
+
+
+ 标准解读流程
+ 部长审批
+
+
+
+
+
+
+ 基础信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 隐藏基础信息
+ 展开基础信息
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 拆分信息
+
+
+
+
+
+
+
+
+ 查看条款内容
+
+
+
+
+
+
+
+
+
+
+ 符合
+ 不符合
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.applyArctic.toString() }}
+
+
+
+
+
+
+
+
加载更多...
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ scope.row.createTime ? $moment(scope.row.createTime).format('YYYY-MM-DD') : '' }}
+
+
+
+
+ {{ scope.row.endTime ? $moment(scope.row.endTime).format('YYYY-MM-DD') : '' }}
+
+
+
+
+ {{ scope.row.commentText }}
+
+
+
+
+ {{ scope.row.endTime ? '已完成' : '未完成'}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/router/index.js b/src/router/index.js
index 0da39dace..3d1818917 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -1984,6 +1984,26 @@ const routes = [
title: '标准解读流程'
}
},
+ {
+ path: '/phoneBzjdStep5',
+ name: 'phoneBzjdStep5',
+ component: () => import('@/pages/processCenter/pages/phone/bzjd/step5.vue'),
+ meta: {
+ isBoolean: true,
+ requireAuth: true,
+ title: '标准解读流程'
+ }
+ },
+ {
+ path: '/phoneBzjdStep6',
+ name: 'phoneBzjdStep6',
+ component: () => import('@/pages/processCenter/pages/phone/bzjd/step6.vue'),
+ meta: {
+ isBoolean: true,
+ requireAuth: true,
+ title: '标准解读流程'
+ }
+ },
{
path: '/phoneBzqdfbStep4',
name: 'phoneBzqdfbStep4',