...
|
...
|
@@ -11,6 +11,7 @@ let question = { |
|
|
let that = this;
|
|
|
|
|
|
this.$errTip = $('.error-tip');
|
|
|
this.$mobile = $('.user-mobile > input');
|
|
|
this.$item = $('.qs-item, .sub-qs-item', this.$base);
|
|
|
this.startTime = Date.parse(new Date()) / 1000;
|
|
|
|
...
|
...
|
@@ -216,7 +217,8 @@ let question = { |
|
|
uid: this.$base.data('cid'),
|
|
|
startTime: this.startTime,
|
|
|
endTime: Date.parse(new Date()) / 1000,
|
|
|
frontAnswers: JSON.stringify(info)
|
|
|
frontAnswers: JSON.stringify(info),
|
|
|
mobile: this.$mobile.val()
|
|
|
}
|
|
|
}).then(function(data) {
|
|
|
that.saving = false;
|
...
|
...
|
|