Commit 26a99df3 authored by danfuman's avatar danfuman

修改

parent a6e19278
......@@ -8,7 +8,7 @@ ENV = 'production'
VUE_APP_BASE_API = 'http://172.17.0.75:9099/prod-api'
# 子系统地址
#VUE_APP_SUB_SYSTEM_ADDRESS = "https://plug.jiansheku.com"
VUE_APP_SUB_SYSTEM_ADDRESS = "https://plug.jiansheku.com"
# Bi大屏系统地址
#VUE_APP_BI_SYSTEM_ADDRESS = "https://192.168.60.104:8001"
......@@ -36,6 +36,7 @@ export default {
},
created() {
this.domain = process.env.VUE_APP_SUB_SYSTEM_ADDRESS;
this.gettokens();
this.iframeObserver();
let that = this;
......
......@@ -89,7 +89,10 @@
<el-table-column label="发包人名称" min-width="170" prop="ownerName">
<template slot-scope="scope">
<!--<span v-if="scope.row.ownerUnitCid" class="no-line-feed" @click="viewOwnerUnit(scope.row)">{{scope.row.ownerName}}</span>-->
<span v-if="scope.row.ownerUnitCid" class="no-line-feed" @click="viewOwnerUnit(scope.row)">{{scope.row.ownerName}}</span>
<div v-if="scope.row.ownerName">
<span v-if="scope.row.ownerUnitCid" class="no-line-feed" @click="viewOwnerUnit(scope.row)">{{scope.row.ownerName}}</span>
<span v-else>{{scope.row.ownerName}}</span>
</div>
<span v-else>-</span>
</template>
</el-table-column>
......
......@@ -208,7 +208,7 @@ export default {
//可访问data属性
created() {
this.initDetail();
this.formData[2].options=this.engineeringCategoryDetailOptions
// this.formData[2].options=this.engineeringCategoryDetailOptions
},
//计算集
computed: {
......@@ -230,7 +230,7 @@ export default {
try {
const result = await getProjectUndertakingTypesApi();
if (result.code == 200 && result?.data?.length) {
this.formData[1].options = result.data.map(item => ({ value: item, label: item }));
// this.formData[1].options = result.data.map(item => ({ value: item, label: item }));
}
} catch (error) {
......@@ -241,7 +241,7 @@ export default {
const area = await getAllAreaApi();
if (area.code == 200) {
this.areaList = area.data;
this.$set(this.formData[0], "options", this.areaList);
// this.$set(this.formData[0], "options", this.areaList);
console.log();
}
} catch (error) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment