|
@@ -292,7 +292,7 @@
|
292
|
292
|
<span slot="footer" class="dialog-footer">
|
293
|
293
|
<el-button @click="settlementVisible = false">取 消</el-button>
|
294
|
294
|
<el-button type="primary" @click="blueRequest" v-if="this.$store.getters.xt_user.org_id != 10318 && this.$store.getters.xt_user.org_id != 0">开票</el-button>
|
295
|
|
- <el-button type="primary" @click="bwblueRequest" v-if="this.$store.getters.xt_user.org_id == 10318 || this.$store.getters.xt_user.org_id == 0">开票</el-button>
|
|
295
|
+ <el-button type="primary" v-loading="blue_loading" @click="bwblueRequest" v-if="this.$store.getters.xt_user.org_id == 10318 || this.$store.getters.xt_user.org_id == 0">开票</el-button>
|
296
|
296
|
|
297
|
297
|
</span>
|
298
|
298
|
</el-dialog>
|
|
@@ -307,7 +307,7 @@
|
307
|
307
|
</div>
|
308
|
308
|
<span slot="footer" class="dialog-footer">
|
309
|
309
|
<el-button @click="settlementVisibletwo = false">取 消</el-button>
|
310
|
|
- <el-button type="primary" v-loading="blue_loading" @click="settlementVisibletwo = false">确定</el-button>
|
|
310
|
+ <el-button type="primary" @click="settlementVisibletwo = false">确定</el-button>
|
311
|
311
|
</span>
|
312
|
312
|
</el-dialog>
|
313
|
313
|
|
|
@@ -824,12 +824,12 @@ export default {
|
824
|
824
|
var that = this;
|
825
|
825
|
axios.get('http://127.0.0.1:9532/api/bwfapiao/red',{params:params}).then(function(response) {
|
826
|
826
|
if (response.data.state == 0) {
|
827
|
|
- this.red_loading = false
|
|
827
|
+ that.red_loading = false
|
828
|
828
|
|
829
|
829
|
that.$message.error(response.data.data.msg);
|
830
|
830
|
return false
|
831
|
831
|
} else {
|
832
|
|
- this.red_loading = false
|
|
832
|
+ that.red_loading = false
|
833
|
833
|
if(response.data.data.failed_code == -10){
|
834
|
834
|
that.$confirm(response.data.data.msg, '错误信息', {
|
835
|
835
|
confirmButtonText: '确 定',
|