Commit 13d54973 authored by 张冬's avatar 张冬

保证金,标书费查看编辑

parent 6b1656ac
......@@ -167,6 +167,7 @@ export default {
let form = this.form;
form.aduit = 2;
form.id = this.feeId;
form.projectId = localStorage.getItem("projectId")
const { code, msg } = await aduit(form);
if (code === 200) {
this.$message({
......@@ -191,6 +192,7 @@ export default {
let form = {};
form.aduit = 1;
form.id = this.feeId;
form.projectId = localStorage.getItem("projectId")
const { code, msg } = await aduit(form);
if (code === 200) {
this.$message({
......
......@@ -198,6 +198,7 @@ export default {
let form = this.form;
form.aduit = 2;
form.id = this.feeId;
form.projectId = localStorage.getItem("projectId")
const { code, msg } = await operationAduit(form);
if (code === 200) {
this.$message({
......@@ -222,6 +223,7 @@ export default {
let form = {};
form.aduit = 1;
form.id = this.feeId;
form.projectId = localStorage.getItem("projectId")
const { code, msg } = await operationAduit(form);
if (code === 200) {
this.$message({
......
......@@ -114,7 +114,7 @@ export default {
type: 'date',
required: true,
message: '请选择时间',
trigger: 'blur'
trigger: 'change'
},
{
validator: checkTime
......@@ -125,7 +125,7 @@ export default {
type: 'date',
required: true,
message: '请选择时间',
trigger: 'blur'
trigger: 'change'
},
{
validator: checkTime1
......@@ -136,7 +136,7 @@ export default {
type: 'date',
required: true,
message: '请选择时间',
trigger: 'blur'
trigger: 'change'
},
{
validator: checkTime2
......@@ -147,7 +147,7 @@ export default {
type: 'date',
required: true,
message: '请选择时间',
trigger: 'blur'
trigger: 'change'
},
{
validator: checkTime3
......@@ -158,7 +158,7 @@ export default {
type: 'date',
required: true,
message: '请选择时间',
trigger: 'blur'
trigger: 'change'
},
{
validator: checkTime4
......
......@@ -64,7 +64,7 @@ export default {
{
id: 3,
label: '项目信息',
url: '/purchaser/bid/bidStage/projectInformation',
url: '/purchaser/bid/seeProject',
bright: false
},
{
......
......@@ -2,8 +2,11 @@
<div>
<div class="content-head">
<dataBreadcrumb :breads="breads"></dataBreadcrumb>
<h3>提交</h3>
<h5>提交保证金缴纳信息</h5>
<h3>{{ type == 1 ? '编辑' : '提交' }}</h3>
<h5>{{ type == 1 ? '编辑' : '提交' }}保证金缴纳信息</h5>
<div class="abs">
<div v-if="type == 1">拒绝原因:{{ ruleForm.reason }}</div>
</div>
</div>
<div class="othercontent">
<el-form ref="ruleForm" :model="ruleForm" :rules="formrules" label-width="200px" class="demo-ruleForm">
......@@ -60,7 +63,7 @@
</div>
<div>
<el-form-item label="邮寄地址:">
<el-input v-model="ruleForm.recipientsAddress " placeholder="请输入" maxlength="30"></el-input>
<el-input v-model="ruleForm.recipientsAddress" placeholder="请输入" maxlength="30"></el-input>
</el-form-item>
</div>
</div>
......@@ -69,15 +72,14 @@
<div class="describe">缴费信息</div>
<div class="message-form">
<el-form-item label="付款方式:" prop="feeWay">
<el-input v-model="ruleForm.feeWay" placeholder="请输入" maxlength="30">
</el-input>
<el-input v-model="ruleForm.feeWay" placeholder="请输入" maxlength="30"> </el-input>
</el-form-item>
<el-form-item label="备注:" prop="remark">
<el-input :rows="5" v-model="ruleForm.remark" type="textarea" placeholder="请输入内容" maxlength="300">
</el-input>
</el-form-item>
<el-form-item label="上传缴费凭证:" prop="voucherList">
<Upload :limit="5" :max="5" tip="完成上传5份文件,每份不超过10M" @input="getfile"></Upload>
<Upload :limit="5" :max="5" tip="完成上传5份文件,每份不超过10M" @input="getfile" :fileList="ruleForm.voucherList"></Upload>
</el-form-item>
</div>
</div>
......@@ -89,16 +91,13 @@
<el-button type="primary" @click="submitData">提交</el-button>
</div>
</div>
</template>
<script>
import {
bidderEarnestpayment
} from '@api/supply/bid'
import dataBreadcrumb from '@components/dataBreadcrumb.vue'
import Upload from '@components/Upload/Upload.vue'
export default {
import { bidderEarnestpayment, earnestDetail, earnestEdit } from '@api/supply/bid';
import dataBreadcrumb from '@components/dataBreadcrumb.vue';
import Upload from '@components/Upload/Upload.vue';
export default {
components: {
dataBreadcrumb,
Upload
......@@ -108,7 +107,7 @@
if (!value) {
return callback(new Error('手机号不能为空'));
} else {
const reg = /^1[3|4|5|7|8][0-9]\d{8}$/
const reg = /^1[3|4|5|7|8][0-9]\d{8}$/;
console.log(reg.test(value));
if (reg.test(value)) {
callback();
......@@ -126,102 +125,137 @@
}
};
return {
type: '',
breads: ['招标管理', '招标项目管理', '工作台'],
ruleForm: {
companyName: '',
companyTel: '',
companyPhone: '',
companyFacsimile: '',
recipientsName: "",
recipientsCompany: "",
recipientsPhone: "",
recipientsMail: "",
recipientsAddress: "",
recipientsName: '',
recipientsCompany: '',
recipientsPhone: '',
recipientsMail: '',
recipientsAddress: '',
feeWay: '',
remark: "",
companyEmail: "",
remark: '',
companyEmail: '',
voucherList: [],
contacts:""
contacts: ''
},
formrules: {
companyName: [{
companyName: [
{
required: true,
message: '请输入',
trigger: 'blur'
}],
companyPhone: [{
}
],
companyPhone: [
{
required: true,
validator: checkPhone,
trigger: 'blur'
}],
}
],
feeWay: [{
feeWay: [
{
required: true,
message: '请输入',
trigger: 'blur'
}],
voucherList: [{
}
],
voucherList: [
{
required: true,
validator: checkimg,
trigger: 'blur'
}]
}
]
}
};
},
methods: {
getfile(val) {
this.ruleForm.voucherList= val
this.ruleForm.voucherList = val;
},
back(){
this.$router.go(-1)
back() {
this.$router.go(-1);
},
async submitData() {
try {
const valid = await this.$refs['ruleForm'].validate()
const valid = await this.$refs['ruleForm'].validate();
if (valid) {
let message = this.ruleForm
message.companyId =localStorage.getItem("companyId")
message.projectId =localStorage.getItem("projectId")
const {
code,
msg
} = await bidderEarnestpayment(message)
if (code ==200) {
let message = this.ruleForm;
message.companyId = localStorage.getItem('companyId');
message.projectId = localStorage.getItem('projectId');
let type = this.type;
if (type == 1) {
var { code, msg } = await earnestEdit(message);
} else {
var { code, msg } = await bidderEarnestpayment(message);
}
if (code == 200) {
this.$message({
message: msg,
type: 'success',
duration: 1500
})
});
setTimeout(() => {
this.$router.go(-1)
}, 1500)
}else{
this.$message.error(msg)
this.$router.go(-1);
}, 1500);
} else {
this.$message.error(msg);
}
}
} catch (e) {
console.log(e);
}
},
async getearnestDetail() {
let projectId = localStorage.getItem('projectId');
try {
const { data, code } = await earnestDetail(projectId);
if (code == 200) {
data.companyName = JSON.parse(localStorage.getItem('userInfo')).companyName;
for (let item of data.voucherList) {
item.name = item.fileName;
item.url = item.fileUrl;
}
this.ruleForm = data;
}
} catch (e) {
console.log(e)
console.log(e);
}
}
},
created() {
this.ruleForm.companyName = JSON.parse(localStorage.getItem("userInfo")).companyName
let type = this.$route.query.type;
this.type = type;
if (type == 1) {
this.getearnestDetail();
} else {
this.ruleForm.companyName = JSON.parse(localStorage.getItem('userInfo')).companyName;
}
}
};
</script>
<style scoped>
.message {}
.message {
}
.message>div {
.message > div {
background: #fff;
margin-bottom: 20px;
padding-bottom: 20px;
}
}
.message-form {
.message-form {
width: 70%;
margin: 0 auto
}
margin: 0 auto;
}
</style>
\ No newline at end of file
......@@ -2,12 +2,8 @@
<div>
<div class="content-head">
<dataBreadcrumb :breads="breads"></dataBreadcrumb>
<h3>{{ title }}</h3>
<h5>{{ title }}保证金缴费信息</h5>
<div class="flex state">
<div style="margin-right: 30px">状态:{{ state }}</div>
<div v-if="ruleForm.reason">拒绝原因:{{ ruleForm.reason }}</div>
</div>
<h3>查看</h3>
<h5>查看保证金缴费信息</h5>
</div>
<div class="othercontent">
<el-form ref="ruleForm" :model="ruleForm" label-width="200px" class="demo-ruleForm" :rules="formrules">
......@@ -80,16 +76,7 @@
</el-input>
</el-form-item>
<el-form-item label="上传缴费凭证:" prop="voucherList">
<div v-if="ruleForm.auditStatus == 2">
<Upload
:limit="5"
:max="10"
tip="完成上传5份文件,每份不超过10M"
:fileList="ruleForm.voucherList"
@input="getfile"
></Upload>
</div>
<ul v-else>
<ul>
<li v-for="(item, index) in ruleForm.voucherList" :key="index">
<a :href="item.fileUrl">{{ item.fileName }}</a>
</li>
......@@ -102,13 +89,12 @@
</div>
<div class="bottomButton">
<el-button @click="back">返回</el-button>
<el-button type="primary" v-if="ruleForm.auditStatus == 2" @click="submitData">提交</el-button>
</div>
</div>
</template>
<script>
import { earnestDetail, earnestEdit } from '@api/supply/bid';
import { earnestDetail } from '@api/supply/bid';
import dataBreadcrumb from '@components/dataBreadcrumb.vue';
import Upload from '@components/Upload/Upload.vue';
export default {
......@@ -140,7 +126,6 @@ export default {
};
return {
isdisabled: true,
title: '查看',
state: '',
breads: ['招标管理', '招标项目管理', '工作台'],
ruleForm: {},
......@@ -188,15 +173,8 @@ export default {
let projectId = localStorage.getItem('projectId');
try {
const { data, code } = await earnestDetail(projectId);
data.companyName = JSON.parse(localStorage.getItem('userInfo')).companyName;
if (code == 200) {
if (data.auditStatus == 2) {
this.isdisabled = false;
(this.title = '编辑'), (this.state = '审核拒绝');
} else if (data.auditStatus == 1) {
this.state = '审核通过';
} else {
this.state = '未审核';
}
for (let item of data.voucherList) {
item.name = item.fileName;
item.url = item.fileUrl;
......@@ -207,31 +185,6 @@ export default {
console.log(e);
}
},
async submitData() {
try {
const valid = await this.$refs['ruleForm'].validate();
if (valid) {
let message = this.ruleForm;
message.companyId = localStorage.getItem('companyId');
message.projectId = localStorage.getItem('projectId');
const { code, msg } = await earnestEdit(message);
if (code == 200) {
this.$message({
message: msg,
type: 'success',
duration: 1500
});
setTimeout(() => {
this.$router.go(-1);
}, 1500);
} else {
this.$message.error(msg);
}
}
} catch (e) {
console.log(e);
}
}
},
created() {
this.getearnestDetail();
......
......@@ -4,10 +4,6 @@
<dataBreadcrumb :breads="breads"></dataBreadcrumb>
<h3>{{ title }}</h3>
<h5>{{ title }}购标信息、邮寄信息、发票信息、缴费信息</h5>
<div class="flex state">
<div style="margin-right: 30px">状态:{{ state }}</div>
<div v-if="ruleForm.reason">拒绝原因:{{ ruleForm.reason }}</div>
</div>
</div>
<div class="othercontent">
<el-form ref="ruleForm" :model="ruleForm" label-width="200px" class="demo-ruleForm">
......@@ -111,16 +107,7 @@
<el-input :rows="5" v-model="ruleForm.remark" type="textarea" :disabled="isdisabled"> </el-input>
</el-form-item>
<el-form-item label="上传缴费凭证:" prop="voucherList">
<div v-if="ruleForm.auditStatus == 2">
<Upload
:limit="5"
:max="10"
tip="完成上传5份文件,每份不超过10M"
:fileList="ruleForm.voucherList"
@input="getfile"
></Upload>
</div>
<ul v-else>
<ul>
<li v-for="(item, index) in ruleForm.voucherList" :key="index">
<a :href="item.fileUrl">{{ item.fileName }}</a>
</li>
......@@ -134,13 +121,12 @@
<div class="bottomButton">
<el-button @click="back">返回</el-button>
<el-button type="primary" v-if="ruleForm.auditStatus == 2" @click="submitData">提交</el-button>
</div>
</div>
</template>
<script>
import { bidbookDetail, editBidBook } from '@api/supply/bid';
import { bidbookDetail} from '@api/supply/bid';
import dataBreadcrumb from '@components/dataBreadcrumb.vue';
import Upload from '@components/Upload/Upload.vue';
export default {
......@@ -221,14 +207,7 @@ export default {
try {
const { data, code } = await bidbookDetail(projectId);
if (code == 200) {
if (data.auditStatus == 2) {
this.isdisabled = false;
(this.title = '编辑'), (this.state = '审核拒绝');
} else if (data.auditStatus == 1) {
this.state = '审核通过';
} else {
this.state = '未审核';
}
data.companyName = JSON.parse(localStorage.getItem('userInfo')).companyName;
for (let item of data.voucherList) {
item.name = item.fileName;
item.url = item.fileUrl;
......@@ -239,31 +218,6 @@ export default {
console.log(e);
}
},
async submitData() {
try {
const valid = await this.$refs['ruleForm'].validate();
if (valid) {
let message = this.ruleForm;
message.companyId = localStorage.getItem('companyId');
message.projectId = localStorage.getItem('projectId');
const { code, msg } = await editBidBook(message);
if (code == 200) {
this.$message({
message: msg,
type: 'success',
duration: 1500
});
setTimeout(() => {
this.$router.go(-1);
}, 1500);
} else {
this.$message.error(msg);
}
}
} catch (e) {
console.log(e);
}
}
},
created() {
this.getbidbookDetail();
......
......@@ -3,8 +3,11 @@
<div>
<div class="content-head">
<dataBreadcrumb :breads="breads"></dataBreadcrumb>
<h3>提交</h3>
<h5>提交购标信息、邮寄信息、发票信息、缴费信息</h5>
<h3>{{ type == 1 ? '编辑' : '提交' }}</h3>
<h5>{{ type == 1 ? '编辑' : '提交' }}购标信息、邮寄信息、发票信息、缴费信息</h5>
<div class="abs">
<div v-if="type == 1">拒绝原因:{{ ruleForm.reason }}</div>
</div>
</div>
<div class="othercontent">
<el-form ref="ruleForm" :model="ruleForm" :rules="formrules" label-width="200px" class="demo-ruleForm">
......@@ -61,16 +64,14 @@
</div>
<div>
<el-form-item label="邮寄地址:">
<el-input v-model.trim="ruleForm.recipientsAddress " placeholder="请输入" maxlength="30"></el-input>
<el-input v-model.trim="ruleForm.recipientsAddress" placeholder="请输入" maxlength="30"></el-input>
</el-form-item>
</div>
</div>
</div>
<div>
<div class="describe">发票信息</div>
<div class="message-form">
<div class="flex-between">
<el-form-item label="发票类型:" prop="invoiceType">
<el-radio-group v-model="ruleForm.invoiceType">
......@@ -84,7 +85,7 @@
</div>
<div class="flex-between">
<el-form-item label="纳税人识别号:" prop="invoiceTaxNumber ">
<el-input v-model.trim="ruleForm.invoiceTaxNumber " placeholder="请输入" maxlength="30"></el-input>
<el-input v-model.trim="ruleForm.invoiceTaxNumber" placeholder="请输入" maxlength="30"></el-input>
</el-form-item>
<el-form-item label="地址:" prop="invoiceAddress">
<el-input v-model.trim="ruleForm.invoiceAddress" placeholder="请输入" maxlength="30"></el-input>
......@@ -104,15 +105,14 @@
<div class="describe">缴费信息</div>
<div class="message-form">
<el-form-item label="付款方式:" prop="feeWay">
<el-input v-model="ruleForm.feeWay" placeholder="请输入">
</el-input>
<el-input v-model="ruleForm.feeWay" placeholder="请输入"> </el-input>
</el-form-item>
<el-form-item label="备注:" prop="remark">
<el-input :rows="5" v-model.trim="ruleForm.remark" type="textarea" placeholder="请输入内容" maxlength="300">
</el-input>
</el-form-item>
<el-form-item label="上传缴费凭证:" prop="voucherList">
<Upload :limit="5" :max="10" tip="完成上传5份文件,每份不超过10M" @input="getfile"></Upload>
<Upload :limit="5" :max="10" tip="完成上传5份文件,每份不超过10M" @input="getfile" :fileList="ruleForm.voucherList"></Upload>
</el-form-item>
</div>
</div>
......@@ -124,16 +124,13 @@
<el-button type="primary" @click="submitData">提交</el-button>
</div>
</div>
</template>
<script>
import {
bidBookpayment
} from '@api/supply/bid'
import dataBreadcrumb from '@components/dataBreadcrumb.vue'
import Upload from '@components/Upload/Upload.vue'
export default {
import { bidBookpayment, bidbookDetail, editBidBook } from '@api/supply/bid';
import dataBreadcrumb from '@components/dataBreadcrumb.vue';
import Upload from '@components/Upload/Upload.vue';
export default {
components: {
dataBreadcrumb,
Upload
......@@ -143,7 +140,7 @@
if (!value) {
return callback(new Error('手机号不能为空'));
} else {
const reg = /^1[3|4|5|7|8][0-9]\d{8}$/
const reg = /^1[3|4|5|7|8][0-9]\d{8}$/;
console.log(reg.test(value));
if (reg.test(value)) {
callback();
......@@ -161,132 +158,175 @@
}
};
return {
type: '',
breads: ['招标管理', '招标项目管理', '工作台'],
ruleForm: {
companyName: '',
companyTel: '',
companyPhone: '',
companyFacsimile: '',
recipientsName: "",
recipientsCompany: "",
recipientsPhone: "",
recipientsMail: "",
recipientsAddress: "",
recipientsName: '',
recipientsCompany: '',
recipientsPhone: '',
recipientsMail: '',
recipientsAddress: '',
invoiceType: '',
invoiceHead: "",
invoiceTaxNumber: "",
invoiceAddress: "",
invoiceTel: "",
invoiceHead: '',
invoiceTaxNumber: '',
invoiceAddress: '',
invoiceTel: '',
invoiceAccount: '',
feeWay: '',
remark: "",
companyEmail: "",
contacts:"",
remark: '',
companyEmail: '',
contacts: '',
voucherList: []
},
formrules: {
companyName: [{
companyName: [
{
required: true,
message: '请输入',
trigger: 'blur'
}],
companyPhone: [{
}
],
companyPhone: [
{
required: true,
validator: checkPhone,
trigger: 'blur'
}],
invoiceType: [{
}
],
invoiceType: [
{
required: true,
message: '请输入',
trigger: 'blur'
}],
invoiceTaxNumber: [{
}
],
invoiceTaxNumber: [
{
required: true,
message: '请输入',
trigger: 'blur'
}],
invoiceAddress: [{
}
],
invoiceAddress: [
{
required: true,
message: '请输入',
trigger: 'blur'
}],
invoiceTel: [{
}
],
invoiceTel: [
{
required: true,
message: '请输入',
trigger: 'blur'
}],
invoiceAccount: [{
}
],
invoiceAccount: [
{
required: true,
message: '请输入',
trigger: 'blur'
}],
feeWay: [{
}
],
feeWay: [
{
required: true,
message: '请输入',
trigger: 'blur'
}],
voucherList: [{
}
],
voucherList: [
{
required: true,
validator: checkimg,
trigger: 'blur'
}]
}
]
}
};
},
methods: {
getfile(val) {
this.ruleForm.voucherList = val
this.ruleForm.voucherList = val;
},
back(){
this.$router.go(-1)
back() {
this.$router.go(-1);
},
async submitData() {
try {
const valid = await this.$refs['ruleForm'].validate()
const valid = await this.$refs['ruleForm'].validate();
if (valid) {
let message = this.ruleForm
message.companyId = localStorage.getItem("companyId")
message.projectId = localStorage.getItem("projectId")
const {
code,
msg
} = await bidBookpayment(message)
let message = this.ruleForm;
message.companyId = localStorage.getItem('companyId');
message.projectId = localStorage.getItem('projectId');
let type = this.type;
if (type == 1) {
var { code, msg } = await editBidBook(message);
}
var { code, msg } = await bidBookpayment(message);
if (code == 200) {
this.$message({
message: msg,
type: 'success',
duration: 1500
})
});
setTimeout(() => {
this.$router.go(-1)
}, 1500)
}else{
this.$message.error(msg)
this.$router.go(-1);
}, 1500);
} else {
this.$message.error(msg);
}
}
} catch (e) {
console.log(e)
console.log(e);
}
},
async getbidbookDetail() {
let projectId = localStorage.getItem('projectId');
try {
const { data, code } = await bidbookDetail(projectId);
if (code == 200) {
data.companyName = JSON.parse(localStorage.getItem('userInfo')).companyName;
for (let item of data.voucherList) {
item.name = item.fileName;
item.url = item.fileUrl;
}
this.ruleForm = data;
}
} catch (e) {
console.log(e);
}
}
},
created() {
this.ruleForm.companyName = JSON.parse(localStorage.getItem("userInfo")).companyName
let type = this.$route.query.type;
this.type = type;
if (type == 1) {
this.getbidbookDetail();
} else {
this.ruleForm.companyName = JSON.parse(localStorage.getItem('userInfo')).companyName;
}
}
};
</script>
<style scoped>
.message {}
.message {
}
.message>div {
.message > div {
background: #fff;
margin-bottom: 20px;
padding-bottom: 20px;
}
}
.message-form {
.message-form {
width: 70%;
margin: 0 auto
}
margin: 0 auto;
}
</style>
......@@ -179,14 +179,14 @@ export default {
modulars: [
{
id: 66,
label: '标书费缴纳',
url: '/supply/bid/joinProject/bidStage/tenderFee/detail',
label: '递交标书费',
url: '/supply/bid/joinProject/bidStage/tenderFee',
bright: false
},
{
id: 67,
label: '保证金缴纳',
url: '/supply/bid/joinProject/bidStage/bond/detail',
label: '递交保证金',
url: '/supply/bid/joinProject/bidStage/bond',
bright: false
}
]
......@@ -239,12 +239,20 @@ export default {
for (let item2 of data) {
if (item1.id == item2.buttonId) {
item1.bright = true;
if (item2.buttonId == 66 && item2.status == 2) {
item1.url = '/supply/bid/joinProject/bidStage/tenderFee/detail';
item1.label = '查看标书费缴纳';
} else if (item2.buttonId == 67 && item2.status == 2) {
item1.url = '/supply/bid/joinProject/bidStage/bond/detail';
item1.label = '查看保证金缴纳';
} else {
item1.url = this.geturl(item1.url, item2.status);
item1.label = this.getlabel(item1.label, item2.status);
}
}
}
}
}
this.remark = data[0].remark;
} else {
this.$message.error(msg);
......
......@@ -11,16 +11,15 @@
</li>
</ul>
<h2>项目信息</h2>
<dataTable :table-data="tabledata" :columns="columns">
</dataTable>
<h2 class="se-h2">待办事项</h2>
<dataTable :table-data="tabledata" :columns="columns"> </dataTable>
<!-- <h2 class="se-h2">待办事项</h2>
<ul class="project-list flex">
<li v-for="item in projectlist" :key="item.id">
<img :src="item.src" alt="" />
<div>{{ item.project }}</div>
<div>{{ item.account }}</div>
</li>
</ul>
</ul> -->
</div>
</div>
</template>
......@@ -190,7 +189,6 @@ export default {
};
},
methods: {
handlesee() {},
async gethome() {
const { data, code } = await home();
this.detail = data;
......@@ -203,18 +201,17 @@ export default {
}
},
created() {
this.gethome();
let token = getSearchString('token');
if (token !== 'undefined') {
localStorage.setItem('token', token);
}
this.gethome();
},
}
};
</script>
<style scoped>
.home {
padding: 30px;
box-sizing: border-box;
}
.home > .user {
......
......@@ -18,9 +18,8 @@ export function getSearchString(key) {
export function down(url) {
window.open(url)
}
// export let requestUrl = 'http://192.168.3.35:8085';
export let requestUrl = 'http://60.205.251.80:8082';
export let requestUrl = 'http://192.168.3.35:8085';
// export let requestUrl = 'http://60.205.251.80:8082';
// export let homeUrl = 'http://localhost:3000';
export let homeUrl = 'http://60.205.251.80:8081';
......
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