Commit 45302d65 authored by 黄奎's avatar 黄奎

新增权限验证方法

parent 8929ed0a
...@@ -3,6 +3,6 @@ ...@@ -3,6 +3,6 @@
*/ */
var AuthCode = { var AuthCode = {
EidtCoupon:"IsEidtCoupon",//优惠券修改权限
}; };
export default AuthCode; export default AuthCode;
\ No newline at end of file
...@@ -33,6 +33,15 @@ ...@@ -33,6 +33,15 @@
</el-select> </el-select>
</span> </span>
</li> </li>
<li>
<span>
<em>团状态</em>
<el-select v-model="msg.IsSetOut">
<el-option label="正常发团" :value="0"></el-option>
<el-option label="取消发团" :value="1"></el-option>
</el-select>
</span>
</li>
<li> <li>
<input type="button" class="hollowFixedBtn" value="查询" @click="getSearch()"> &nbsp; <input type="button" class="hollowFixedBtn" value="查询" @click="getSearch()"> &nbsp;
<input type="button" class="normalBtn" value="下载" @click="DownLoadFile()"> <input type="button" class="normalBtn" value="下载" @click="DownLoadFile()">
...@@ -111,6 +120,7 @@ ...@@ -111,6 +120,7 @@
Supplier: 0, Supplier: 0,
PageIndex: 1, PageIndex: 1,
PageSize: 15, PageSize: 15,
IsSetOut:0,//0-正常发团,1-取消发团
}, },
loading: false, loading: false,
currentPage: 1, currentPage: 1,
...@@ -165,6 +175,7 @@ ...@@ -165,6 +175,7 @@
TCID: item.TCIDS, TCID: item.TCIDS,
Supplier: that.msg.Supplier, Supplier: that.msg.Supplier,
QMonthStr: that.msg.QMonthStr, QMonthStr: that.msg.QMonthStr,
IsSetOut:that.msg.IsSetOut,
}, },
res => { res => {
that.loading = false; that.loading = false;
......
This diff is collapsed.
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