소스 검색

孙一石 上架下架问题

sys5923812@126.com 3 주 전
부모
커밋
330f9c1acb
4개의 변경된 파일610개의 추가작업 그리고 562개의 파일을 삭제
  1. 6 0
      src/api/data/orderDetails.js
  2. 1 1
      src/components/Pagination/index.vue
  3. 16 2
      src/views/data/orderDetails/index.vue
  4. 587 559
      src/views/data/partner/index.vue

+ 6 - 0
src/api/data/orderDetails.js

@@ -175,3 +175,9 @@ export function queryTBusShop() {
     method: 'get',
   })
 }
+export function callUpdateProcedure() {
+  return request({
+    url: '/system/goodsPaymentEntr/callUpdateProcedure',
+    method: 'get',
+  })
+}

+ 1 - 1
src/components/Pagination/index.vue

@@ -36,7 +36,7 @@ export default {
     pageSizes: {
       type: Array,
       default() {
-        return [10, 20, 30, 50]
+        return [10, 20, 30, 50,500,1000,2000,3000,5000]
       }
     },
     // 移动端页码按钮的数量端默认值5

+ 16 - 2
src/views/data/orderDetails/index.vue

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

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 587 - 559
src/views/data/partner/index.vue