Commit ab0a29cf authored by liuqian_mac's avatar liuqian_mac

修改跳转

parent 7f09aa37
......@@ -89,7 +89,7 @@
</template>
</el-table-column>
<el-table-column label="操作" width="200">
<el-table-column label="操作" width="240" fixed="right">
<template slot-scope="scope">
<el-button type="primary" circle class="table-icon" @click="check(scope.row)">
<i class="iconfont icon-chakan"></i>
......@@ -122,7 +122,18 @@
<el-button slot="reference" type="warning" circle icon="el-icon-setting" class="table-icon popver-btn"></el-button>
</el-popover>
</template>
<!-- 跳转到添加员工-->
<el-popover v-if="scope.row.isAuditing==1" placement="top" width="160" v-model="scope.row.delState1">
<p style="margin-bottom:10px;font-weight:700;">将要跳转页面,去添加去添加员工</p>
<div style="text-align: right; margin: 0">
<el-button size="mini" type="text" @click="scope.row.delState2 = false">取消</el-button>
<el-button type="primary" size="mini" @click="handleToAddPeople(scope.row)"通过</el-button>
</div>
<el-button slot="reference" type="primary" icon="el-icon-setting" style="margin-left:10px;" circle class="table-icon"></el-button>
</el-popover>
</template>""
</el-table-column>
</el-table>
......@@ -533,7 +544,7 @@ export default {
},
add() {
// 强制处理详情回显问题
this.dialogBindData.storeDetails = ""
this.dialogBindData.storeDetails = "";
this.dialogType = 1;
axios
......@@ -608,8 +619,6 @@ export default {
}
},
submmitFun() {
const param = Utils.deepClone(this.dialogBindData);
param.consumeInterval = `${this.minPrice}-${this.maxPrice}`;
......@@ -672,15 +681,10 @@ export default {
type: "success"
});
if(this.dialogType==1){
// const host = window.location.origin
// const url = `${host}/?type=1#/worker/workerList`
// setTimeout(()=>{
// window.location.href = url
// },200)
if (this.dialogType == 1) {
this.submmitSuccess = false;
this.handleClose();
}else{
} else {
this.submmitSuccess = false;
this.handleClose();
}
......@@ -730,7 +734,6 @@ export default {
this.$refs.imgComponent6 ? this.$refs.imgComponent6.clearImg() : "";
this.$refs.imgComponent7 ? this.$refs.imgComponent7.clearImg() : "";
// 销毁富文本编辑器的dom对象
setTimeout(() => {
......@@ -817,7 +820,7 @@ export default {
},
handleRecommendFun(data) {
this.$prompt("只能输入1~2位正整数", "请输入推荐", {
this.$prompt("只能输入1~2位正整数", "请输入推荐序号", {
confirmButtonText: "确定",
cancelButtonText: "取消",
inputPattern: /^\d{1,2}$/,
......@@ -992,10 +995,21 @@ export default {
const param = {
storeIds: this.tableItemIDS
};
debugger;
store.batchStoreShop(param).then(res => {
this.getList();
});
},
// 审核完成之后 跳转到添加员工
handleToAddPeople(data) {
const host = window.location.origin;
const url = `${host}/#/worker/workerList`;
sessionStorage.setItem('_storeId_',data.storeId)
setTimeout(() => {
window.location.href = url;
}, 200);
}
},
computed: {
......
......@@ -442,19 +442,21 @@ export default {
dImg2: "",
dImg3: "",
dImg4: "",
dImg5: ""
dImg5: "",
};
},
beforeMount() {
let pageOrigin = window.location.search
? window.location.search.split("=")[1]
: "";
if (!!pageOrigin) {
let _storeId_ = sessionStorage.getItem('_storeId_')
if (!!_storeId_) {
this.dialogBindData.storeId = _storeId_
this.getStoreData(() => {
this.dialogType = 1;
this.dialogState = true;
});
this.$message({
name:"添加员工信息"
})
});
}
this.isAdmin = this.getCookAdminType();
......@@ -600,20 +602,9 @@ export default {
type: "success"
});
let pageOrigin = window.location.search
? window.location.search.split("=")[1]
: "";
if(this.dialogType==1 && (!!pageOrigin)){
const host = window.location.origin
const url = `${host}/#/worker/workerList`
setTimeout(()=>{
window.location.href = url
},100)
}else{
this.submmitSuccess = false
this.handleClose()
}
// let _storeId_ = sessionStorage.getItem('_storeId_')
this.submmitSuccess = false;
this.handleClose();
});
});
} else {
......@@ -667,7 +658,9 @@ export default {
this.$refs.imgComponent3 ? this.$refs.imgComponent3.clearImg() : "";
this.$refs.imgComponent4 ? this.$refs.imgComponent4.clearImg() : "";
this.$refs.imgComponent5 ? this.$refs.imgComponent5.clearImg() : "";
sessionStorage.clear()
// 销毁富文本编辑器的dom对象
setTimeout(() => {
this.dialogType = 0;
......@@ -713,7 +706,7 @@ export default {
},
handleRecommendFun(data) {
this.$prompt("只能输入1~2位正整数", "请输入推荐", {
this.$prompt("只能输入1~2位正整数", "请输入推荐序号", {
confirmButtonText: "确定",
cancelButtonText: "取消",
inputPattern: /^\d{1,2}$/,
......
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