Merge branch 'develop' into 'FOTON'
Develop See merge request LAWS/laws-system-front-FOTON!240
This commit is contained in:
@@ -33,8 +33,8 @@
|
|||||||
</span>
|
</span>
|
||||||
<!-- 获取当前登录人的会议并表示出来-->
|
<!-- 获取当前登录人的会议并表示出来-->
|
||||||
<span v-for="item in dealMyDate(data.day)" :value="item.fillPeopleId">
|
<span v-for="item in dealMyDate(data.day)" :value="item.fillPeopleId">
|
||||||
<el-tag class="tagOne"/>
|
|
||||||
<el-tag v-if="userId === item.fillPeopleId" class="tagTwo"/>
|
<el-tag v-if="userId === item.fillPeopleId" class="tagTwo"/>
|
||||||
|
<el-tag v-else class="tagOne"/>
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
@@ -58,7 +58,7 @@
|
|||||||
</span>
|
</span>
|
||||||
<el-card class="card_info" v-else v-for="(item, index) in todayData" :value="item" :key="index">
|
<el-card class="card_info" v-else v-for="(item, index) in todayData" :value="item" :key="index">
|
||||||
<span v-for="res in item.attend" :key="res.fillPeopleId">
|
<span v-for="res in item.attend" :key="res.fillPeopleId">
|
||||||
<el-tag v-if="userId === res.fillPeopleId" type="success" size="mini">会议</el-tag>
|
<el-tag v-if="userId === res.fillPeopleId" type="success" size="mini">会议</el-tag>
|
||||||
<el-tag v-else type="warning" size="mini">会议</el-tag>
|
<el-tag v-else type="warning" size="mini">会议</el-tag>
|
||||||
</span>
|
</span>
|
||||||
<i style="margin-left: 10px;font-weight: bold">{{ item.title }}</i>
|
<i style="margin-left: 10px;font-weight: bold">{{ item.title }}</i>
|
||||||
@@ -71,6 +71,9 @@
|
|||||||
<div class="content_text2">
|
<div class="content_text2">
|
||||||
<span>会议内容 : {{ item.content }}</span>
|
<span>会议内容 : {{ item.content }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="content_text2">
|
||||||
|
<span>会议地点 : {{ item.place }}</span>
|
||||||
|
</div>
|
||||||
<div class="content_text">
|
<div class="content_text">
|
||||||
<span>会议附件 :
|
<span>会议附件 :
|
||||||
<span v-if="item.files.length === 0">{{ '-' }}</span>
|
<span v-if="item.files.length === 0">{{ '-' }}</span>
|
||||||
|
|||||||
@@ -562,7 +562,7 @@
|
|||||||
this.$refs['Form'].validate((valid) => {
|
this.$refs['Form'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.isSubmit = true
|
this.isSubmit = true
|
||||||
this.$http.get('lawss/activiti/startProcess', {
|
this.$http.post('lawss/activiti/startProcessRollBack', {
|
||||||
type: '2'
|
type: '2'
|
||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.ok) {
|
if (res.ok) {
|
||||||
|
|||||||
@@ -559,7 +559,7 @@ export default {
|
|||||||
this.$refs['Form'].validate((valid) => {
|
this.$refs['Form'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.isSubmit = true
|
this.isSubmit = true
|
||||||
this.$http.get('lawss/activiti/startProcessRollBack', {
|
this.$http.post('lawss/activiti/startProcessRollBack', {
|
||||||
id: this.bpnId || '',
|
id: this.bpnId || '',
|
||||||
createUser: this.$store.getters.userInfo.userId,
|
createUser: this.$store.getters.userInfo.userId,
|
||||||
createUserName: this.$store.getters.userInfo.userName,
|
createUserName: this.$store.getters.userInfo.userName,
|
||||||
|
|||||||
@@ -299,7 +299,7 @@
|
|||||||
:visible.sync="editFlag"
|
:visible.sync="editFlag"
|
||||||
size="500px"
|
size="500px"
|
||||||
>
|
>
|
||||||
<div class="content_form">
|
<div class="content_form" style="height: 100%">
|
||||||
<el-form class="label-input-form" ref="editForm" :model="editForm" label-width="80px">
|
<el-form class="label-input-form" ref="editForm" :model="editForm" label-width="80px">
|
||||||
<el-form-item class="add-form-item" label="参与人员:">
|
<el-form-item class="add-form-item" label="参与人员:">
|
||||||
<el-input v-model="editForm.fillPeopleId" style="display: none;"></el-input>
|
<el-input v-model="editForm.fillPeopleId" style="display: none;"></el-input>
|
||||||
|
|||||||
@@ -260,8 +260,9 @@
|
|||||||
title="编辑人员信息"
|
title="编辑人员信息"
|
||||||
:visible.sync="editFlag"
|
:visible.sync="editFlag"
|
||||||
size="500px"
|
size="500px"
|
||||||
|
custom-class="demo-drawer"
|
||||||
>
|
>
|
||||||
<div class="content_form">
|
<div class="content_form" style="height: 100%">
|
||||||
<el-form class="label-input-form" ref="editForm" :model="editForm" label-width="80px">
|
<el-form class="label-input-form" ref="editForm" :model="editForm" label-width="80px">
|
||||||
<el-form-item class="add-form-item" label="参与人员:">
|
<el-form-item class="add-form-item" label="参与人员:">
|
||||||
<el-input v-model="editForm.fillPeopleId" style="display: none;"></el-input>
|
<el-input v-model="editForm.fillPeopleId" style="display: none;"></el-input>
|
||||||
@@ -300,6 +301,13 @@
|
|||||||
@submit="handleSubmit"
|
@submit="handleSubmit"
|
||||||
>
|
>
|
||||||
</ProcessFooter>
|
</ProcessFooter>
|
||||||
|
<Role-tree
|
||||||
|
check-box
|
||||||
|
is-title="选择入会人员"
|
||||||
|
:is-visible.sync="roleShowflag"
|
||||||
|
:nodeList="nodeList"
|
||||||
|
@checkedRole="drawerCheck"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -338,6 +346,8 @@ export default {
|
|||||||
|
|
||||||
uploadFileLength: '',
|
uploadFileLength: '',
|
||||||
commentText: '',
|
commentText: '',
|
||||||
|
roleShowflag: false,
|
||||||
|
nodeList: [],
|
||||||
// 人员编辑
|
// 人员编辑
|
||||||
editFlag: false,
|
editFlag: false,
|
||||||
editForm: {
|
editForm: {
|
||||||
@@ -424,6 +434,7 @@ export default {
|
|||||||
edit_partForm(row) {
|
edit_partForm(row) {
|
||||||
// 用来储存取消时原来的数据,防止取消时修改
|
// 用来储存取消时原来的数据,防止取消时修改
|
||||||
localStorage.setItem('obj', JSON.stringify(row))
|
localStorage.setItem('obj', JSON.stringify(row))
|
||||||
|
this.fileListData = row
|
||||||
this.editForm = row
|
this.editForm = row
|
||||||
this.editFlag = true
|
this.editFlag = true
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -1181,7 +1181,7 @@
|
|||||||
this.$message.warning('请选择责任人')
|
this.$message.warning('请选择责任人')
|
||||||
} else {
|
} else {
|
||||||
this.isSubmit = true
|
this.isSubmit = true
|
||||||
this.$http.get('lawss/activiti/startProcess', {
|
this.$http.post('lawss/activiti/startProcessRollBack', {
|
||||||
type: '9'
|
type: '9'
|
||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.ok) {
|
if (res.ok) {
|
||||||
|
|||||||
@@ -813,7 +813,7 @@ export default {
|
|||||||
this.$refs['Form'].validate((valid) => {
|
this.$refs['Form'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.isSubmit = true
|
this.isSubmit = true
|
||||||
this.$http.get('lawss/activiti/startProcess', {
|
this.$http.post('lawss/activiti/startProcessRollBack', {
|
||||||
type: '3'
|
type: '3'
|
||||||
}, {}, res => {
|
}, {}, res => {
|
||||||
if (res.ok) {
|
if (res.ok) {
|
||||||
|
|||||||
@@ -829,7 +829,7 @@ export default {
|
|||||||
this.$refs['Form'].validate((valid) => {
|
this.$refs['Form'].validate((valid) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
this.isSubmit = true
|
this.isSubmit = true
|
||||||
this.$http.get('lawss/activiti/startProcess', {
|
this.$http.post('lawss/activiti/startProcessRollBack', {
|
||||||
id: this.bpnId || '',
|
id: this.bpnId || '',
|
||||||
createUser: this.$store.getters.userInfo.userId,
|
createUser: this.$store.getters.userInfo.userId,
|
||||||
createUserName: this.$store.getters.userInfo.userName,
|
createUserName: this.$store.getters.userInfo.userName,
|
||||||
|
|||||||
@@ -48,6 +48,7 @@
|
|||||||
multiple
|
multiple
|
||||||
ref="uploadFile"
|
ref="uploadFile"
|
||||||
:action="uploadPath"
|
:action="uploadPath"
|
||||||
|
name="file"
|
||||||
:file-list="fileTextList"
|
:file-list="fileTextList"
|
||||||
accept=".ZIP, .zip, .docx, .DOCX, .xls, .xlsx"
|
accept=".ZIP, .zip, .docx, .DOCX, .xls, .xlsx"
|
||||||
:before-upload="handleBeforeUpload"
|
:before-upload="handleBeforeUpload"
|
||||||
|
|||||||
Reference in New Issue
Block a user