Merge remote-tracking branch 'origin/dev-nx' into dev-nx
This commit is contained in:
commit
bdd8222eef
|
|
@ -142,6 +142,12 @@
|
||||||
<span v-if="scope.row.sltStatus == '3'">已审核</span>
|
<span v-if="scope.row.sltStatus == '3'">已审核</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="备注"
|
||||||
|
align="center"
|
||||||
|
prop="remark"
|
||||||
|
:show-overflow-tooltip="true"
|
||||||
|
/>
|
||||||
<!-- <el-table-column label="租赁期限(天)" align="center" prop="leaseDay" :show-overflow-tooltip="true" />
|
<!-- <el-table-column label="租赁期限(天)" align="center" prop="leaseDay" :show-overflow-tooltip="true" />
|
||||||
<el-table-column label="授权人" align="center" prop="authPerson" :show-overflow-tooltip="true" />
|
<el-table-column label="授权人" align="center" prop="authPerson" :show-overflow-tooltip="true" />
|
||||||
<el-table-column label="联系电话 " align="center" prop="phone" :show-overflow-tooltip="true" />
|
<el-table-column label="联系电话 " align="center" prop="phone" :show-overflow-tooltip="true" />
|
||||||
|
|
|
||||||
|
|
@ -509,11 +509,14 @@ export default {
|
||||||
deptName: undefined,
|
deptName: undefined,
|
||||||
applyVisible: false,
|
applyVisible: false,
|
||||||
applyList: [],
|
applyList: [],
|
||||||
|
rowData: [],
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
this.Id = this.$route.query.Id
|
this.Id = this.$route.query.Id
|
||||||
this.getDataAll()
|
this.getDataAll()
|
||||||
|
let arr = JSON.parse(this.$route.query.rowData)
|
||||||
|
this.rowData = arr
|
||||||
// this.getUnitList();
|
// this.getUnitList();
|
||||||
// this.getProjectList();
|
// this.getProjectList();
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -324,10 +324,12 @@ export default {
|
||||||
},
|
},
|
||||||
//结算审核
|
//结算审核
|
||||||
handleExame(row) {
|
handleExame(row) {
|
||||||
|
let arr = [row]
|
||||||
this.$tab.closeOpenPage({
|
this.$tab.closeOpenPage({
|
||||||
path: '/cost/cost/costExame',
|
path: '/cost/cost/costExame',
|
||||||
query: {
|
query: {
|
||||||
Id: row.id,
|
Id: row.id,
|
||||||
|
rowData: JSON.stringify(arr),
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -43,9 +43,9 @@ module.exports = {
|
||||||
// target: `https://test-cc.zhgkxt.com`,//线上环境-南网
|
// target: `https://test-cc.zhgkxt.com`,//线上环境-南网
|
||||||
// target: `https://z.csgmall.com.cn`,
|
// target: `https://z.csgmall.com.cn`,
|
||||||
|
|
||||||
// target: `http://192.168.2.134:28080`, //超
|
target: `http://192.168.2.154:28080`, //超
|
||||||
// target: `http://10.40.92.81:28080`, //韩/
|
// target: `http://10.40.92.81:28080`, //韩/
|
||||||
target: `http://192.168.2.82:28080`,//旭/
|
// target: `http://192.168.2.82:28080`,//旭/
|
||||||
// target: `http://192.168.2.248:28080`, //帅
|
// target: `http://192.168.2.248:28080`, //帅
|
||||||
// target: `http://192.168.2.209:28080`, //福
|
// target: `http://192.168.2.209:28080`, //福
|
||||||
// target: `http://192.168.2.114:39080`, //王
|
// target: `http://192.168.2.114:39080`, //王
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue