修改测试bug
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
import axios from "@/utils/request";
|
||||
// let baseUrlZc = 'https://api.xayunmei.com/zhongcaiapi';
|
||||
let baseUrl = 'https://api.xayunmei.com/tiaojieapitest';
|
||||
// let baseUrl = 'https://api.xayunmei.com/tiaojieapitest';
|
||||
// let baseUrl = 'http://172.16.1.4:6001';
|
||||
// 获取usersig
|
||||
export function getUsersig(userId) {
|
||||
|
||||
@@ -38,6 +38,12 @@ const routes = [
|
||||
name: "testRoom",
|
||||
component: () => import("../views/testRoom.vue"),
|
||||
meta: { title: "testRoom" }
|
||||
},
|
||||
{
|
||||
path: "/sign",
|
||||
name: "signFor",
|
||||
component: () => import("../views/signFor.vue"),
|
||||
meta: { title: "signFor" }
|
||||
}
|
||||
]
|
||||
|
||||
|
||||
+5
-4
@@ -289,7 +289,7 @@
|
||||
</el-form>
|
||||
</div>
|
||||
<div>
|
||||
<el-button style="width:100%;" type="primary" @click="determineMeeting">确定</el-button>
|
||||
<el-button style="width:100%;" type="primary" @click="determineMeeting" :disabled="!updataFlag">确定</el-button>
|
||||
</div>
|
||||
</el-drawer>
|
||||
</div>
|
||||
@@ -583,8 +583,8 @@ export default {
|
||||
// setInterval(() => {
|
||||
// this.selectByIdFn(this.caseId);
|
||||
// }, 8000);
|
||||
this.selectRoleMenuByCaseIdFn(this.caseId);
|
||||
this.getMenuPermsByUserFn();
|
||||
// this.selectRoleMenuByCaseIdFn(this.caseId);
|
||||
// this.getMenuPermsByUserFn();
|
||||
},
|
||||
/** 获取证据列表 */
|
||||
selectByIdFn(id) {
|
||||
@@ -755,7 +755,8 @@ export default {
|
||||
setInterval(() => {
|
||||
this.selectByIdFn(this.caseId);
|
||||
}, 8000);
|
||||
console.log("iiiiiiiiiiiiiiiiiiiiiiiiiiii");
|
||||
this.selectRoleMenuByCaseIdFn(this.caseId);
|
||||
this.getMenuPermsByUserFn();
|
||||
},
|
||||
// 确定会议结果
|
||||
determineMeeting(){
|
||||
|
||||
@@ -43,12 +43,14 @@
|
||||
<hr>
|
||||
<el-row style="height: 40px;line-height: 40px;text-align: center;">
|
||||
<el-col :span="7"><div>调解书</div></el-col>
|
||||
<el-col :span="15"><div v-for="(item,index) in fileList" :key="index" style="color: blue; cursor: pointer" @click="toPreview(item.annexPath)">{{ item.annexName }}</div></el-col>
|
||||
<el-col :span="15"><div v-for="(item,index) in fileList" :key="index" style="color: blue; cursor: pointer" @click="toPreview(item.annexPath)">
|
||||
<span v-if="item.annexType==13">{{ item.annexName }}</span>
|
||||
</div></el-col>
|
||||
</el-row>
|
||||
<hr>
|
||||
<el-row>
|
||||
<el-col :span="24">
|
||||
<div style="width: 90px; margin: 30px auto;">
|
||||
<div style="width: 90px; margin: 30px auto;" v-if="dataList.signFlag==1">
|
||||
<el-button type="primary" @click="getMsCaseSign(caseId)" v-if="showSign" icon="el-icon-edit">签收</el-button>
|
||||
</div>
|
||||
</el-col>
|
||||
@@ -91,7 +93,9 @@ export default {
|
||||
await caseApplicationList(params).then(res =>{
|
||||
res.rows.forEach(item => {
|
||||
this.dataList = item;
|
||||
|
||||
});
|
||||
console.log( this.dataList.signFlag)
|
||||
})
|
||||
},
|
||||
// 案件签收
|
||||
|
||||
Reference in New Issue
Block a user