|
@@ -16,6 +16,9 @@
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-form-item>
|
|
|
|
+ <el-button type="primary" @click="calldata" v-show="!isDataSyn">
|
|
|
|
+ 同步入账数据
|
|
|
|
+ </el-button>
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery3">搜索
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery3">搜索
|
|
</el-button>
|
|
</el-button>
|
|
<el-button style="margin-left: 20px;" icon="el-icon-refresh" size="mini" @click="resetQuery">重置
|
|
<el-button style="margin-left: 20px;" icon="el-icon-refresh" size="mini" @click="resetQuery">重置
|
|
@@ -248,7 +251,8 @@
|
|
queryTBusShop,
|
|
queryTBusShop,
|
|
getTBusShopInfo,
|
|
getTBusShopInfo,
|
|
getBalance,
|
|
getBalance,
|
|
- tixian
|
|
|
|
|
|
+ tixian,
|
|
|
|
+ callUpdateProcedure
|
|
} from "@/api/data/orderDetails";
|
|
} from "@/api/data/orderDetails";
|
|
import accountDetails from "../../data/accountDetails/index.vue";
|
|
import accountDetails from "../../data/accountDetails/index.vue";
|
|
import {
|
|
import {
|
|
@@ -388,7 +392,9 @@
|
|
pageSize: 10,
|
|
pageSize: 10,
|
|
shopName: null,
|
|
shopName: null,
|
|
},
|
|
},
|
|
- balanceAll: '', //总余额
|
|
|
|
|
|
+ balanceAll: '', //总余额,
|
|
|
|
+
|
|
|
|
+ isDataSyn : false,
|
|
};
|
|
};
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
@@ -399,6 +405,14 @@
|
|
this.restaurants = this.loadAll();
|
|
this.restaurants = this.loadAll();
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+
|
|
|
|
+ calldata(){
|
|
|
|
+ this.isDataSyn = true
|
|
|
|
+ callUpdateProcedure()
|
|
|
|
+
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+
|
|
updata() {
|
|
updata() {
|
|
this.form1.payeeAccountName = '';
|
|
this.form1.payeeAccountName = '';
|
|
this.form1.payeeName = '';
|
|
this.form1.payeeName = '';
|