|
@@ -839,11 +839,8 @@ export default {
|
|
|
VueClipboard: VueClipboard,
|
|
|
},
|
|
|
created() {
|
|
|
- console.log("哈哈");
|
|
|
- console.log("settings", settings);
|
|
|
- // this.init();
|
|
|
- this.getCoupon();
|
|
|
- this.getIssueList();
|
|
|
+ this.init();
|
|
|
+
|
|
|
},
|
|
|
computed: {
|
|
|
toggleable() {
|
|
@@ -875,7 +872,6 @@ export default {
|
|
|
let s = date.getDate().toString();
|
|
|
m = "" + (m.length == 1 ? "0" : "") + m;
|
|
|
s = "" + (s.length == 1 ? "0" : "") + s;
|
|
|
- console.log("" + h + ":" + m + ":" + s);
|
|
|
return "" + y + ":" + m + ":" + s;
|
|
|
},
|
|
|
},
|
|
@@ -907,7 +903,6 @@ export default {
|
|
|
settings.baseURL + this.deptId + "/" + trimEqualStr;
|
|
|
},
|
|
|
downloadImg() {
|
|
|
- console.log('');
|
|
|
},
|
|
|
translateTime(row) {
|
|
|
let timeString = "";
|
|
@@ -982,7 +977,6 @@ export default {
|
|
|
this.createForm = { ...this.createForm };
|
|
|
},
|
|
|
handleMoveLabel(direction, row) {
|
|
|
- console.log(row);
|
|
|
if (this.createForm.couponIssueRelationList == null) {
|
|
|
this.createForm.couponIssueRelationList = [];
|
|
|
}
|
|
@@ -1068,10 +1062,8 @@ export default {
|
|
|
val.map((ele) => {
|
|
|
changeArr.push(ele.id);
|
|
|
});
|
|
|
- console.log(changeArr);
|
|
|
this.moveLeftData = [];
|
|
|
this.moveRightData = changeArr;
|
|
|
- // console.log(this.moveRightData);
|
|
|
this.$refs.rightTable.clearSelection();
|
|
|
},
|
|
|
handleRightChange(val) {
|
|
@@ -1087,6 +1079,7 @@ export default {
|
|
|
this.getOilList();
|
|
|
this.getCoupon();
|
|
|
this.getVerificationList();
|
|
|
+ this.getIssueList();
|
|
|
},
|
|
|
setPageStatus() {
|
|
|
this.queryPageStatus([2]).then((res) => {
|
|
@@ -1159,7 +1152,6 @@ export default {
|
|
|
|
|
|
/** 提交按钮 */
|
|
|
submitForm() {
|
|
|
- console.log(123);
|
|
|
this.$refs["dialogForm"].validate((valid) => {
|
|
|
if (valid) {
|
|
|
if (!!this.createForm.id) {
|