|
@@ -9,7 +9,7 @@
|
|
class="bg-bottom"
|
|
class="bg-bottom"
|
|
type="primary"
|
|
type="primary"
|
|
size="small"
|
|
size="small"
|
|
- @click="returnsales()"
|
|
|
|
|
|
+ @click="returnsales(item)"
|
|
><img
|
|
><img
|
|
width="6"
|
|
width="6"
|
|
height="10"
|
|
height="10"
|
|
@@ -36,8 +36,6 @@
|
|
<ws-form
|
|
<ws-form
|
|
ref="deptBudgetList"
|
|
ref="deptBudgetList"
|
|
:model="deptBudgetList"
|
|
:model="deptBudgetList"
|
|
- v-for="(item, index) in deptBudgetList"
|
|
|
|
- :key="index"
|
|
|
|
>
|
|
>
|
|
<!--基本信息-->
|
|
<!--基本信息-->
|
|
|
|
|
|
@@ -50,7 +48,7 @@
|
|
class="readonly"
|
|
class="readonly"
|
|
>
|
|
>
|
|
<ws-input
|
|
<ws-input
|
|
- v-model="item.priceListNo"
|
|
|
|
|
|
+ v-model="deptBudgetList.priceListNo"
|
|
placeholder="请输入点价单编号"
|
|
placeholder="请输入点价单编号"
|
|
maxlength="20"
|
|
maxlength="20"
|
|
size="small"
|
|
size="small"
|
|
@@ -74,8 +72,8 @@
|
|
</el-upload>
|
|
</el-upload>
|
|
<div class="shangchuan">
|
|
<div class="shangchuan">
|
|
<template>
|
|
<template>
|
|
- <span v-if="item.enclosureTypeFlag == '0'">未上传</span>
|
|
|
|
- <span v-if="item.enclosureTypeFlag == '1'">已上传</span>
|
|
|
|
|
|
+ <span v-if="deptBudgetList.enclosureTypeFlag == '0'">未上传</span>
|
|
|
|
+ <span v-if="deptBudgetList.enclosureTypeFlag == '1'">已上传</span>
|
|
</template>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</ws-form-item>
|
|
</ws-form-item>
|
|
@@ -88,7 +86,7 @@
|
|
class="readonly"
|
|
class="readonly"
|
|
>
|
|
>
|
|
<ws-input
|
|
<ws-input
|
|
- v-model="item.varietyContractDirection"
|
|
|
|
|
|
+ v-model="deptBudgetList.varietyContractDirection"
|
|
placeholder="请输入品种合约及方向"
|
|
placeholder="请输入品种合约及方向"
|
|
maxlength="100"
|
|
maxlength="100"
|
|
size="small"
|
|
size="small"
|
|
@@ -98,7 +96,7 @@
|
|
<!--买方联络人-->
|
|
<!--买方联络人-->
|
|
<ws-form-item label="买方联络人" span="1" prop="buyer">
|
|
<ws-form-item label="买方联络人" span="1" prop="buyer">
|
|
<ws-input
|
|
<ws-input
|
|
- v-model="item.buyer"
|
|
|
|
|
|
+ v-model="deptBudgetList.buyer"
|
|
placeholder="请输入买方联络人"
|
|
placeholder="请输入买方联络人"
|
|
maxlength="120"
|
|
maxlength="120"
|
|
size="small"
|
|
size="small"
|
|
@@ -113,14 +111,14 @@
|
|
>
|
|
>
|
|
<ws-input
|
|
<ws-input
|
|
@input="transactionsNumberHandChange"
|
|
@input="transactionsNumberHandChange"
|
|
- v-model="item.transactionsNumberHand"
|
|
|
|
|
|
+ v-model="deptBudgetList.transactionsNumberHand"
|
|
placeholder="请输入"
|
|
placeholder="请输入"
|
|
maxlength="100"
|
|
maxlength="100"
|
|
size="small"
|
|
size="small"
|
|
/> 手 即
|
|
/> 手 即
|
|
<ws-input
|
|
<ws-input
|
|
readonly="readonly"
|
|
readonly="readonly"
|
|
- v-model="item.transactionsNumber"
|
|
|
|
|
|
+ v-model="deptBudgetList.transactionsNumber"
|
|
placeholder="自动计算"
|
|
placeholder="自动计算"
|
|
maxlength="100"
|
|
maxlength="100"
|
|
size="small"
|
|
size="small"
|
|
@@ -130,7 +128,7 @@
|
|
<!--买方联络人电话-->
|
|
<!--买方联络人电话-->
|
|
<ws-form-item label="买方联络人电话" span="1" prop="buyerPhone">
|
|
<ws-form-item label="买方联络人电话" span="1" prop="buyerPhone">
|
|
<ws-input
|
|
<ws-input
|
|
- v-model="item.buyerPhone"
|
|
|
|
|
|
+ v-model="deptBudgetList.buyerPhone"
|
|
placeholder="请输入买方联络人电话"
|
|
placeholder="请输入买方联络人电话"
|
|
maxlength="120"
|
|
maxlength="120"
|
|
size="small"
|
|
size="small"
|
|
@@ -144,7 +142,7 @@
|
|
prop="transactionPrice"
|
|
prop="transactionPrice"
|
|
>
|
|
>
|
|
<ws-input
|
|
<ws-input
|
|
- v-model="item.transactionPrice"
|
|
|
|
|
|
+ v-model="deptBudgetList.transactionPrice"
|
|
placeholder="请输入成交价格"
|
|
placeholder="请输入成交价格"
|
|
maxlength="120"
|
|
maxlength="120"
|
|
size="small"
|
|
size="small"
|
|
@@ -154,7 +152,7 @@
|
|
<!--卖方联络人-->
|
|
<!--卖方联络人-->
|
|
<ws-form-item label="卖方联络人" span="1" prop="seller">
|
|
<ws-form-item label="卖方联络人" span="1" prop="seller">
|
|
<ws-input
|
|
<ws-input
|
|
- v-model="item.seller"
|
|
|
|
|
|
+ v-model="deptBudgetList.seller"
|
|
placeholder="请输入卖方联络人"
|
|
placeholder="请输入卖方联络人"
|
|
maxlength="120"
|
|
maxlength="120"
|
|
size="small"
|
|
size="small"
|
|
@@ -164,7 +162,7 @@
|
|
<!--成交日期-->
|
|
<!--成交日期-->
|
|
<ws-form-item label="成交日期" span="1" prop="transactionDate">
|
|
<ws-form-item label="成交日期" span="1" prop="transactionDate">
|
|
<ws-date-picker
|
|
<ws-date-picker
|
|
- v-model="item.transactionDate"
|
|
|
|
|
|
+ v-model="deptBudgetList.transactionDate"
|
|
type="date"
|
|
type="date"
|
|
placeholder="请选择成交日期"
|
|
placeholder="请选择成交日期"
|
|
value-format="yyyy-MM-dd"
|
|
value-format="yyyy-MM-dd"
|
|
@@ -174,7 +172,7 @@
|
|
<!--卖方联络人电话-->
|
|
<!--卖方联络人电话-->
|
|
<ws-form-item label="卖方联络人电话" span="1" prop="sellerPhone">
|
|
<ws-form-item label="卖方联络人电话" span="1" prop="sellerPhone">
|
|
<ws-input
|
|
<ws-input
|
|
- v-model="item.sellerPhone"
|
|
|
|
|
|
+ v-model="deptBudgetList.sellerPhone"
|
|
placeholder="请输入卖方联络人电话"
|
|
placeholder="请输入卖方联络人电话"
|
|
maxlength="100"
|
|
maxlength="100"
|
|
size="small"
|
|
size="small"
|
|
@@ -184,7 +182,7 @@
|
|
<!--备注-->
|
|
<!--备注-->
|
|
<ws-form-item label="备注" span="1" prop="remarks">
|
|
<ws-form-item label="备注" span="1" prop="remarks">
|
|
<ws-input
|
|
<ws-input
|
|
- v-model="item.remarks"
|
|
|
|
|
|
+ v-model="deptBudgetList.remarks"
|
|
placeholder="请输入备注,不超过200字"
|
|
placeholder="请输入备注,不超过200字"
|
|
maxlength="120"
|
|
maxlength="120"
|
|
size="small"
|
|
size="small"
|
|
@@ -207,7 +205,7 @@
|
|
<script>
|
|
<script>
|
|
import {
|
|
import {
|
|
editPriceConfirmationSheet,
|
|
editPriceConfirmationSheet,
|
|
- selectConfirmationSheet,
|
|
|
|
|
|
+ getInfo,
|
|
} from '@/model/contarct/index'
|
|
} from '@/model/contarct/index'
|
|
import WsUpload from '@/components/WsUpload'
|
|
import WsUpload from '@/components/WsUpload'
|
|
import { regionData } from 'element-china-area-data'
|
|
import { regionData } from 'element-china-area-data'
|
|
@@ -248,8 +246,7 @@ export default {
|
|
priceConfirmationSheet: {
|
|
priceConfirmationSheet: {
|
|
contractNo: this.$route.query.contractNo,
|
|
contractNo: this.$route.query.contractNo,
|
|
contractType :this.$route.query.contractType,
|
|
contractType :this.$route.query.contractType,
|
|
- priceListNo: this.$route.query.priceListNo
|
|
|
|
- // enclosureTypeFlag: '0',
|
|
|
|
|
|
+ id: this.$route.query.id,
|
|
|
|
|
|
},
|
|
},
|
|
addressUrls: [],
|
|
addressUrls: [],
|
|
@@ -276,9 +273,9 @@ export default {
|
|
handleChange1(value) {
|
|
handleChange1(value) {
|
|
this.selectedOptions1 = value
|
|
this.selectedOptions1 = value
|
|
},
|
|
},
|
|
- returnsales() {
|
|
|
|
|
|
+ returnsales(item) {
|
|
this.$router.push({ path: 'priceConfirmationSheet',
|
|
this.$router.push({ path: 'priceConfirmationSheet',
|
|
- query: { contractNo: this.$route.query.contractNo , contractType: this.$route.query.contractType } })
|
|
|
|
|
|
+ query: { contractNo: this.$route.query.contractNo , contractType: this.$route.query.contractType ,id:item.id } })
|
|
},
|
|
},
|
|
|
|
|
|
// 上传附件
|
|
// 上传附件
|
|
@@ -295,13 +292,10 @@ export default {
|
|
//数据回显
|
|
//数据回显
|
|
loaddata() {
|
|
loaddata() {
|
|
// 数据
|
|
// 数据
|
|
- selectConfirmationSheet({
|
|
|
|
|
|
+ getInfo({
|
|
contractNo: this.$route.query.contractNo,
|
|
contractNo: this.$route.query.contractNo,
|
|
contractType: this.$route.query.contractType,
|
|
contractType: this.$route.query.contractType,
|
|
- priceListNo: this.$route.query.priceListNo
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
|
|
+ id: this.$route.query.id,
|
|
})
|
|
})
|
|
.toPromise()
|
|
.toPromise()
|
|
.then((response) => {
|
|
.then((response) => {
|
|
@@ -318,7 +312,7 @@ export default {
|
|
},
|
|
},
|
|
submit() {
|
|
submit() {
|
|
for (var i = 0; i < this.deptBudgetList.length; i++) {
|
|
for (var i = 0; i < this.deptBudgetList.length; i++) {
|
|
- if (!this.deptBudgetList[i].priceListNo) {
|
|
|
|
|
|
+ if (!this.deptBudgetList.priceListNo) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '点价单编号不能为空!',
|
|
message: '点价单编号不能为空!',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
@@ -326,8 +320,8 @@ export default {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
if (
|
|
if (
|
|
- this.deptBudgetList[i].priceListNo.length < 1 ||
|
|
|
|
- this.deptBudgetList[i].priceListNo.length > 20
|
|
|
|
|
|
+ this.deptBudgetList.priceListNo.length < 1 ||
|
|
|
|
+ this.deptBudgetList.priceListNo.length > 20
|
|
) {
|
|
) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '点价单编号输入错误!',
|
|
message: '点价单编号输入错误!',
|
|
@@ -335,7 +329,7 @@ export default {
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (!this.deptBudgetList[i].varietyContractDirection) {
|
|
|
|
|
|
+ if (!this.deptBudgetList.varietyContractDirection) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '品种合约及方向不能为空!',
|
|
message: '品种合约及方向不能为空!',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
@@ -343,8 +337,8 @@ export default {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
if (
|
|
if (
|
|
- this.deptBudgetList[i].varietyContractDirection.length < 1 ||
|
|
|
|
- this.deptBudgetList[i].varietyContractDirection.length > 20
|
|
|
|
|
|
+ this.deptBudgetList.varietyContractDirection.length < 1 ||
|
|
|
|
+ this.deptBudgetList.varietyContractDirection.length > 20
|
|
) {
|
|
) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '品种合约及方向输入错误!',
|
|
message: '品种合约及方向输入错误!',
|
|
@@ -352,7 +346,7 @@ export default {
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (!this.deptBudgetList[i].buyer) {
|
|
|
|
|
|
+ if (!this.deptBudgetList.buyer) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '买方联络人不能为空!',
|
|
message: '买方联络人不能为空!',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
@@ -360,8 +354,8 @@ export default {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
if (
|
|
if (
|
|
- this.deptBudgetList[i].buyer.length < 2 ||
|
|
|
|
- this.deptBudgetList[i].buyer.length > 20
|
|
|
|
|
|
+ this.deptBudgetList.buyer.length < 2 ||
|
|
|
|
+ this.deptBudgetList.buyer.length > 20
|
|
) {
|
|
) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '买方联络人姓名输入错误!',
|
|
message: '买方联络人姓名输入错误!',
|
|
@@ -369,7 +363,7 @@ export default {
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (!this.deptBudgetList[i].buyerPhone) {
|
|
|
|
|
|
+ if (!this.deptBudgetList.buyerPhone) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '买方联络人电话不能为空!',
|
|
message: '买方联络人电话不能为空!',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
@@ -377,8 +371,8 @@ export default {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
if (
|
|
if (
|
|
- this.deptBudgetList[i].buyerPhone.length < 7 ||
|
|
|
|
- this.deptBudgetList[i].buyerPhone.length > 20
|
|
|
|
|
|
+ this.deptBudgetList.buyerPhone.length < 7 ||
|
|
|
|
+ this.deptBudgetList.buyerPhone.length > 20
|
|
) {
|
|
) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '买方联络人电话输入错误!',
|
|
message: '买方联络人电话输入错误!',
|
|
@@ -386,14 +380,14 @@ export default {
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (isNaN(this.deptBudgetList[i].buyerPhone)) {
|
|
|
|
|
|
+ if (isNaN(this.deptBudgetList.buyerPhone)) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '卖方联络人电话输入有误!',
|
|
message: '卖方联络人电话输入有误!',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (!this.deptBudgetList[i].seller) {
|
|
|
|
|
|
+ if (!this.deptBudgetList.seller) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '卖方联络人不能为空!',
|
|
message: '卖方联络人不能为空!',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
@@ -401,8 +395,8 @@ export default {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
if (
|
|
if (
|
|
- this.deptBudgetList[i].seller.length < 2 ||
|
|
|
|
- this.deptBudgetList[i].seller.length > 20
|
|
|
|
|
|
+ this.deptBudgetList.seller.length < 2 ||
|
|
|
|
+ this.deptBudgetList.seller.length > 20
|
|
) {
|
|
) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '卖方联络人姓名输入错误!',
|
|
message: '卖方联络人姓名输入错误!',
|
|
@@ -411,14 +405,14 @@ export default {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
- if (!this.deptBudgetList[i].sellerPhone) {
|
|
|
|
|
|
+ if (!this.deptBudgetList.sellerPhone) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '卖方联络人电话不能为空!',
|
|
message: '卖方联络人电话不能为空!',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (isNaN(this.deptBudgetList[i].sellerPhone)) {
|
|
|
|
|
|
+ if (isNaN(this.deptBudgetList.sellerPhone)) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '卖方联络人电话输入有误!',
|
|
message: '卖方联络人电话输入有误!',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
@@ -426,8 +420,8 @@ export default {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
if (
|
|
if (
|
|
- this.deptBudgetList[i].sellerPhone.length < 7 ||
|
|
|
|
- this.deptBudgetList[i].sellerPhone.length > 20
|
|
|
|
|
|
+ this.deptBudgetList.sellerPhone.length < 7 ||
|
|
|
|
+ this.deptBudgetList.sellerPhone.length > 20
|
|
) {
|
|
) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '卖方联络人电话输入有误!',
|
|
message: '卖方联络人电话输入有误!',
|
|
@@ -435,7 +429,7 @@ export default {
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (!this.deptBudgetList[i].transactionsNumberHand) {
|
|
|
|
|
|
+ if (!this.deptBudgetList.transactionsNumberHand) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '成交数量不能为空!',
|
|
message: '成交数量不能为空!',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
@@ -444,17 +438,17 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
if (
|
|
if (
|
|
- isNaN(this.deptBudgetList[i].transactionsNumberHand) ||
|
|
|
|
- (String(this.deptBudgetList[i].transactionsNumberHand).indexOf('.') !=
|
|
|
|
|
|
+ isNaN(this.deptBudgetList.transactionsNumberHand) ||
|
|
|
|
+ (String(this.deptBudgetList.transactionsNumberHand).indexOf('.') !=
|
|
-1 &&
|
|
-1 &&
|
|
- String(this.deptBudgetList[i].transactionsNumberHand).length -
|
|
|
|
- (String(this.deptBudgetList[i].transactionsNumberHand).indexOf(
|
|
|
|
|
|
+ String(this.deptBudgetList.transactionsNumberHand).length -
|
|
|
|
+ (String(this.deptBudgetList.transactionsNumberHand).indexOf(
|
|
'.'
|
|
'.'
|
|
) +
|
|
) +
|
|
1) >
|
|
1) >
|
|
2) ||
|
|
2) ||
|
|
- this.deptBudgetList[i].transactionsNumberHand < 1 ||
|
|
|
|
- this.deptBudgetList[i].transactionsNumberHand > 10000
|
|
|
|
|
|
+ this.deptBudgetList.transactionsNumberHand < 1 ||
|
|
|
|
+ this.deptBudgetList.transactionsNumberHand > 10000
|
|
) {
|
|
) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '输入成交数量有误!',
|
|
message: '输入成交数量有误!',
|
|
@@ -463,11 +457,11 @@ export default {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
if (
|
|
if (
|
|
- this.deptBudgetList[i].transactionPrice < 0 ||
|
|
|
|
- this.deptBudgetList[i].transactionPrice > 100000000 ||
|
|
|
|
- (String(this.deptBudgetList[i].transactionPrice).indexOf('.') != -1 &&
|
|
|
|
- String(this.deptBudgetList[i].transactionPrice).length -
|
|
|
|
- (String(this.deptBudgetList[i].transactionPrice).indexOf('.') +
|
|
|
|
|
|
+ this.deptBudgetList.transactionPrice < 0 ||
|
|
|
|
+ this.deptBudgetList.transactionPrice > 100000000 ||
|
|
|
|
+ (String(this.deptBudgetList.transactionPrice).indexOf('.') != -1 &&
|
|
|
|
+ String(this.deptBudgetList.transactionPrice).length -
|
|
|
|
+ (String(this.deptBudgetList.transactionPrice).indexOf('.') +
|
|
1) >
|
|
1) >
|
|
2)
|
|
2)
|
|
) {
|
|
) {
|
|
@@ -477,8 +471,8 @@ export default {
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (this.deptBudgetList[i].transactionPrice) {
|
|
|
|
- if (isNaN(this.deptBudgetList[i].transactionPrice)) {
|
|
|
|
|
|
+ if (this.deptBudgetList.transactionPrice) {
|
|
|
|
+ if (isNaN(this.deptBudgetList.transactionPrice)) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '成交价格输入错误!',
|
|
message: '成交价格输入错误!',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
@@ -486,14 +480,14 @@ export default {
|
|
return
|
|
return
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- if (!this.deptBudgetList[i].transactionPrice) {
|
|
|
|
|
|
+ if (!this.deptBudgetList.transactionPrice) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '成交价格不能为空!',
|
|
message: '成交价格不能为空!',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
})
|
|
})
|
|
return
|
|
return
|
|
}
|
|
}
|
|
- if (!this.deptBudgetList[i].transactionDate) {
|
|
|
|
|
|
+ if (!this.deptBudgetList.transactionDate) {
|
|
this.$message({
|
|
this.$message({
|
|
message: '成交日期不能为空!',
|
|
message: '成交日期不能为空!',
|
|
type: 'warning',
|
|
type: 'warning',
|
|
@@ -503,9 +497,8 @@ export default {
|
|
}
|
|
}
|
|
this.deptBudgetList.contractType = this.$route.query.contractType,
|
|
this.deptBudgetList.contractType = this.$route.query.contractType,
|
|
this.deptBudgetList.contractNo = this.$route.query.contractNo,
|
|
this.deptBudgetList.contractNo = this.$route.query.contractNo,
|
|
- this.deptBudgetList.enclosureTypeFlag = '0'
|
|
|
|
|
|
+ // this.deptBudgetList.enclosureTypeFlag = '0'
|
|
this.priceConfirmationSheet = this.deptBudgetList
|
|
this.priceConfirmationSheet = this.deptBudgetList
|
|
- // for()
|
|
|
|
this.$confirm(`确定提交确认单信息`, {
|
|
this.$confirm(`确定提交确认单信息`, {
|
|
cancelButtonText: '取消',
|
|
cancelButtonText: '取消',
|
|
confirmButtonText: '确定',
|
|
confirmButtonText: '确定',
|