Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
super_liu
2022-02-23 17:52:06 +08:00
12 changed files with 13 additions and 11 deletions
@@ -25,7 +25,7 @@
style="position:absolute;top: 10px;right: 0;" style="position:absolute;top: 10px;right: 0;"
@click="selectLaws" @click="selectLaws"
v-if="(processModel && !disabled) || !processModel" v-if="(processModel && !disabled) || !processModel"
>手动查找123</el-button> >手动查找</el-button>
</el-form-item> </el-form-item>
<el-dialog <el-dialog
:title="config.attrName" :title="config.attrName"
@@ -508,7 +508,7 @@
class="modular-content-p-val" class="modular-content-p-val"
:title="child.value || '-'" :title="child.value || '-'"
> >
<span v-if="child.value" @click="showReplaceStandInfo(item)" style="cursor: pointer;color: #0c91e5;margin-right: 5px;" <span v-if="child.value" @click="showReplaceStandInfo(child.value)" style="cursor: pointer;color: #0c91e5;margin-right: 5px;"
class="span-line">{{ child.value }}</span> class="span-line">{{ child.value }}</span>
<span v-else>-</span> <span v-else>-</span>
</span> </span>
-2
View File
@@ -689,13 +689,11 @@ export default {
this.$http.get('sys/EarlyWarning/ChangePermissions', { this.$http.get('sys/EarlyWarning/ChangePermissions', {
id: row.id, id: row.id,
}, {}, res => { }, {}, res => {
if (res.ok === true) {
this.pageConfig.page = 1 this.pageConfig.page = 1
this.pageConfig.newPolicyPage = 1 this.pageConfig.newPolicyPage = 1
this.pageConfig.oldPolicyPage = 1 this.pageConfig.oldPolicyPage = 1
this.searchBtnClick() this.searchBtnClick()
this.getEarlyDate() this.getEarlyDate()
}
} }
) )
}).catch(() => { }).catch(() => {
@@ -1104,7 +1104,6 @@ export default {
}).then(res => { }).then(res => {
if (res) { if (res) {
const processForm = JSON.parse(res.mesg) const processForm = JSON.parse(res.mesg)
this.xgdFileId = processForm.xgd this.xgdFileId = processForm.xgd
this.fbgbjbdFileId = processForm.fbgbjbd this.fbgbjbdFileId = processForm.fbgbjbd
this.bpgFileId = processForm.bpg this.bpgFileId = processForm.bpg
@@ -360,6 +360,7 @@
reason: '', reason: '',
cause: '', cause: '',
department: '', department: '',
responUser: '',
responUserName: '', responUserName: '',
state: '', state: '',
source: '', source: '',
@@ -469,6 +470,7 @@
cause: row.cause, cause: row.cause,
department: row.department, department: row.department,
responUserName: row.responUserName, responUserName: row.responUserName,
responUser: row.responUser,
state: row.state, state: row.state,
source: row.source, source: row.source,
id: row.id, id: row.id,
@@ -571,7 +573,7 @@
json.oldinfo = this.oldData; json.oldinfo = this.oldData;
json.commentText = this.commentText5; json.commentText = this.commentText5;
json.introduce = true; json.introduce = true;
this.$http.post("lawss/activiti/completeTask", { this.$http.post("lawss/activiti/completeTask", {
json: JSON.stringify(json), json: JSON.stringify(json),
taskId: this.taskIds, taskId: this.taskIds,
userId: this.$store.getters.userInfo.userId userId: this.$store.getters.userInfo.userId
@@ -590,6 +592,7 @@
pId: this.pId pId: this.pId
}).then(res => { }).then(res => {
let data = JSON.parse(res.mesg); let data = JSON.parse(res.mesg);
console.log(data);
this.commentText5 = data.commentText5 || '' this.commentText5 = data.commentText5 || ''
this.form.fjList = data.form ? data.form.fjList : (data.fjList ? data.fjList : [] ) this.form.fjList = data.form ? data.form.fjList : (data.fjList ? data.fjList : [] )
this.form.modelList = data.form ? data.form.modelList : (data.modelList ? data.modelList : [] ) this.form.modelList = data.form ? data.form.modelList : (data.modelList ? data.modelList : [] )
@@ -617,6 +620,7 @@
res.data.forEach(item => { res.data.forEach(item => {
item.chapterNumber = item.partCode; item.chapterNumber = item.partCode;
item.responUserName = item.userName; item.responUserName = item.userName;
item.responUser = item.userId
item.state = '1' item.state = '1'
item.source = '2' item.source = '2'
this.data.push(item); this.data.push(item);
@@ -425,7 +425,7 @@ export default {
this.standinfoList.push(item) this.standinfoList.push(item)
} }
}) })
this.total = res.data.count this.total = this.standinfoList.length
}) })
}, },
@@ -446,7 +446,7 @@ export default {
this.standinfoList.push(item) this.standinfoList.push(item)
} }
}) })
this.total = res.data.count this.total = this.standinfoList.length
}) })
}, },
@@ -1035,7 +1035,7 @@ export default {
this.standinfoList.push(item) this.standinfoList.push(item)
} }
}) })
this.total = res.data.count this.total = this.standinfoList.length
}) })
}, },
@@ -433,7 +433,7 @@ export default {
this.standinfoList.push(item) this.standinfoList.push(item)
} }
}) })
this.total = res.data.count this.total = this.standinfoList.length
}) })
}, },
@@ -459,6 +459,7 @@ export default {
this.$refs["roleForm"].validate((valid) => { this.$refs["roleForm"].validate((valid) => {
if (valid) { if (valid) {
this.isSubmit = true; this.isSubmit = true;
this.listForm.commentText = this.commentText;
let json = Object.assign(qbzxdFrom, this.roleForm); let json = Object.assign(qbzxdFrom, this.roleForm);
this.$http.post("lawss/activiti/startProcessRollBack", { this.$http.post("lawss/activiti/startProcessRollBack", {
createUser: this.$store.getters.userInfo.userId, createUser: this.$store.getters.userInfo.userId,
@@ -953,6 +953,7 @@
standCode: '', standCode: '',
standName: '', standName: '',
} }
this.QYBZmodal = false
}, },
QYBZenterDrawer () { QYBZenterDrawer () {
if (this.QYBZformSelect.length > 1) { if (this.QYBZformSelect.length > 1) {
@@ -436,7 +436,6 @@
}) })
}) })
}) })
let routeData = this.$router.resolve({ let routeData = this.$router.resolve({
name: "AddFileDetails", name: "AddFileDetails",
query: { query: {