fix: 定金可退配置问题
This commit is contained in:
parent
eb0cb2a0a6
commit
7a9f8ca0d4
|
@ -12,7 +12,7 @@
|
||||||
(function () {
|
(function () {
|
||||||
window.SITE_CONFIG = {};
|
window.SITE_CONFIG = {};
|
||||||
// api接口请求地址
|
// api接口请求地址
|
||||||
window.SITE_CONFIG["baseUrl"] = "https://admin-test.damajishi.cn/";
|
window.SITE_CONFIG["baseUrl"] = "https://admin.damajishi.cn/";
|
||||||
// 在线api接口请求地址
|
// 在线api接口请求地址
|
||||||
// window.SITE_CONFIG['baseUrl'] = 'http://119.29.103.250:8082/red-memory';
|
// window.SITE_CONFIG['baseUrl'] = 'http://119.29.103.250:8082/red-memory';
|
||||||
// 在线api接口请求地址
|
// 在线api接口请求地址
|
||||||
|
|
|
@ -539,13 +539,13 @@ export default {
|
||||||
this.$set(this, 'ruleForm', {
|
this.$set(this, 'ruleForm', {
|
||||||
productId: row.id,
|
productId: row.id,
|
||||||
advanceSellId: row.advanceSellId,
|
advanceSellId: row.advanceSellId,
|
||||||
startTime: row.startTime,
|
startTime: this.orderTime[0],
|
||||||
name: row.name,
|
name: row.name,
|
||||||
endTime: row.endTime,
|
endTime: this.orderTime[1],
|
||||||
balancePaymentStartTime: row.balancePaymentStartTime,
|
balancePaymentStartTime: this.arrears[0],
|
||||||
balancePaymentEndTime: row.balancePaymentEndTime,
|
balancePaymentEndTime: this.arrears[1],
|
||||||
estimatedStartDeliveryTime: row.estimatedStartDeliveryTime,
|
estimatedStartDeliveryTime: this.delivery[0],
|
||||||
estimatedEndDeliveryTime: row.estimatedEndDeliveryTime,
|
estimatedEndDeliveryTime: this.delivery[1],
|
||||||
isRefundEarnestMoney: Number(row.isRefundEarnestMoney),
|
isRefundEarnestMoney: Number(row.isRefundEarnestMoney),
|
||||||
productSpecificationList: row.productSpecificationList
|
productSpecificationList: row.productSpecificationList
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue