提交 4179e1e0 authored 作者: huaxinzhu's avatar huaxinzhu

选择运费区域title修复

上级 def88376
...@@ -127,7 +127,7 @@ ...@@ -127,7 +127,7 @@
> >
</el-form> </el-form>
<el-dialog title="选择不配送省" :visible.sync="dialogVisible" width="30%" append-to-body <el-dialog :title="isPostageTitle" :visible.sync="dialogVisible" width="30%" append-to-body
:close-on-click-modal="false" center > :close-on-click-modal="false" center >
<div> <div>
<el-checkbox-group v-model="checkList" class="spe-checkbox-group-con"> <el-checkbox-group v-model="checkList" class="spe-checkbox-group-con">
...@@ -200,6 +200,7 @@ export default { ...@@ -200,6 +200,7 @@ export default {
checkList: [], //当前选择 checkList: [], //当前选择
disabledate: [], //不能选择 disabledate: [], //不能选择
dialogVisible: false, dialogVisible: false,
isPostageTitle: '',
goodsDate: { goodsDate: {
id:0, id:0,
sort: 0, sort: 0,
...@@ -246,10 +247,17 @@ export default { ...@@ -246,10 +247,17 @@ export default {
}, },
/** 选择 配送区域 /** 选择 配送区域
* i= 1 ,操作是不配送区域 * i=0,配送区域;i= 1,是不配送区域
* */ * */
opendias(type, i, index) { opendias(type, i, index) {
// 处理不配送区域
this.isPostageTitle = ''
if (i == 0) {
this.isPostageTitle = '选择配送区域'
}
if (i == 1) {
this.isPostageTitle = '选择不配送区域'
}
// 初始化 已经勾选的区域(包含,不配送 和 配送的) // 初始化 已经勾选的区域(包含,不配送 和 配送的)
this.disabledate = []; this.disabledate = [];
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论