fix: BUG修改

This commit is contained in:
kun 2024-04-01 15:18:28 +08:00
parent 59c6164142
commit 60c49bdb57
5 changed files with 32 additions and 23 deletions

View File

@ -83,12 +83,12 @@ if (process.env.NODE_ENV == 'development') {
// axios.defaults.baseURL ='http://101.43.164.214:45001/' //上海张江 // axios.defaults.baseURL ='http://101.43.164.214:45001/' //上海张江
// axios.defaults.baseURL ='http://101.43.164.214:45011/' //上海优益(上海建工) // axios.defaults.baseURL ='http://101.43.164.214:45011/' //上海优益(上海建工)
// axios.defaults.baseURL = 'http://192.168.34.221:28889/' //郭圣雄本地 // axios.defaults.baseURL = 'http://192.168.34.221:28889/' //郭圣雄本地
axios.defaults.baseURL ='http://192.168.34.221:9111/' //郭圣雄本地 // axios.defaults.baseURL ='http://192.168.34.221:9111/' //郭圣雄本地
// axios.defaults.baseURL = 'http://192.168.34.155:19111/' //彭洁本地 // axios.defaults.baseURL = 'http://192.168.34.155:19111/' //彭洁本地
// axios.defaults.baseURL = 'http://182.90.224.237:51234' //郭圣雄远程 // axios.defaults.baseURL = 'http://182.90.224.237:51234' //郭圣雄远程
// axios.defaults.baseURL ='http://101.43.164.214:45020/' //沈阳和盈 // axios.defaults.baseURL ='http://101.43.164.214:45020/' //沈阳和盈
// axios.defaults.baseURL ='http://183.249.224.118:9000/' //嘉兴王江泾公用码头 // axios.defaults.baseURL ='http://183.249.224.118:9000/' //嘉兴王江泾公用码头
// axios.defaults.baseURL ='http://101.43.164.214:11111/' // 百色三标段项目 axios.defaults.baseURL ='http://101.43.164.214:11111/' // 百色三标段项目
// axios.defaults.baseURL = 'http://125.88.207.86:8088/'//中建四局线上(最新)地址 // axios.defaults.baseURL = 'http://125.88.207.86:8088/'//中建四局线上(最新)地址
// axios.defaults.baseURL = 'http://125.88.207.86:8099/'//中建四局(沙湖)线上(最新)地址 // axios.defaults.baseURL = 'http://125.88.207.86:8099/'//中建四局(沙湖)线上(最新)地址
// axios.defaults.baseURL = 'http://jxj.zhgdyun.com:15551/'//测试地址 // axios.defaults.baseURL = 'http://jxj.zhgdyun.com:15551/'//测试地址

View File

@ -271,6 +271,7 @@ export default {
}, },
// //
bindQRCode: function() { bindQRCode: function() {
console.log('人员录入二维码')
document.getElementById('qrCode').innerHTML = '' document.getElementById('qrCode').innerHTML = ''
let httpUrl = window.location.origin let httpUrl = window.location.origin
let userId = this.$store.state.userInfo.userId let userId = this.$store.state.userInfo.userId

View File

@ -3089,7 +3089,7 @@ export default {
getRelativeKeys(arr){ getRelativeKeys(arr){
let keysArr = []; let keysArr = [];
arr.map(item => { arr.map(item => {
if(item.isProjectSn && !item.hasSubList){ if(!item.hasSubList){
keysArr.push(item.sn) keysArr.push(item.sn)
} }
}) })

View File

@ -181,6 +181,9 @@ import {
updateFileDownloadReNameApi, updateFileDownloadReNameApi,
} from "@/assets/js/api/doc.js"; } from "@/assets/js/api/doc.js";
import {
getUserAuditListApi
} from "@/assets/js/api/account.js";
export default { export default {
name: "registerAudit", name: "registerAudit",
data() { data() {
@ -195,10 +198,6 @@ export default {
tableData: [], tableData: [],
authorizedDialog: false, authorizedDialog: false,
detail: {}, detail: {},
totalInfo: {
downloadNum: 0,
fileNum: 0,
},
fileList: [], fileList: [],
editForm: {}, editForm: {},
editDialog: false, editDialog: false,
@ -296,15 +295,11 @@ export default {
}, },
// //
getListData() { getListData() {
let data = this.searchForm; let data = this.treeSelectData;
data.pageNo = this.pageNo; let sn = this.$store.state.userInfo.sn;
data.pageSize = this.pageSize; getUserAuditListApi({ sn: sn, accountType: 2 }).then((res) => {
data.companySn = this.$store.state.userInfo.sn; this.userAuditList = res.result.records;
getCompanyFileListApi(data).then((res) => { this.total = res.result.total;
console.log(res);
this.tableData = res.result.page.records;
this.total = res.result.page.total;
this.totalInfo = res.result.totalNum;
}); });
}, },
resetForm() { resetForm() {

View File

@ -410,10 +410,10 @@
:placeholder="$t('message.companyDiagram.PleaseSelect')" :placeholder="$t('message.companyDiagram.PleaseSelect')"
> >
<el-option <el-option
v-for="item in $t('message.companyDiagram.PROJECTTYPE')" v-for="item in projectTypeList"
:key="item.id" :key="item.data"
:label="item.name" :label="item.name"
:value="item.id" :value="Number(item.data)"
></el-option> ></el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
@ -870,7 +870,8 @@ export default {
projectAuditStatus: '',// projectAuditStatus: '',//
company: '', company: '',
constructionStageList: [], constructionStageList: [],
structureTypeList: [] structureTypeList: [],
projectTypeList: []
}; };
}, },
created() { created() {
@ -878,12 +879,24 @@ export default {
this.company = COMPANY this.company = COMPANY
this.getDataDateils(); this.getDataDateils();
this.loadProvincesCityList(); this.loadProvincesCityList();
this.getProjectConfigList() this.getProjectConfigList();
this.getDictionaryList() this.getDictionaryList();
this.getDictionaryByStructure() this.getDictionaryByStructure();
this.getDicProjectTypeList();
}, },
methods: { methods: {
//
getDicProjectTypeList(){
getDictionaryItemApi({
dictionaryEncoding: 'project_type',
projectSn: this.projectSn
}).then(res => {
if (res.result.length > 0) {
this.projectTypeList = res.result
}
})
},
// //
getDictionaryList() { getDictionaryList() {
getDictionaryItemApi({ getDictionaryItemApi({