Commit 306d32f7 authored by 何虹's avatar 何虹 💬

action查询保存

parent 9ebf3760
...@@ -22155,7 +22155,7 @@ class Control { ...@@ -22155,7 +22155,7 @@ class Control {
usable: 1 usable: 1
} }
const url = (0,_common_commonModule__WEBPACK_IMPORTED_MODULE_0__.getPbWebDyncCode)(this.hasConfigDb()) const url = (0,_common_commonModule__WEBPACK_IMPORTED_MODULE_0__.getPbWebDyncCode)(this.hasConfigDb())
return this.restfulClient.get(url, param) return this.requestClient.get(url, param)
} }
// 获取 动态中的action列表 // 获取 动态中的action列表
saveBillpbWebDyncCode (data = {}) { saveBillpbWebDyncCode (data = {}) {
...@@ -22168,7 +22168,7 @@ class Control { ...@@ -22168,7 +22168,7 @@ class Control {
data.page_url = this.requestClient.pageName data.page_url = this.requestClient.pageName
} }
const url = (0,_common_commonModule__WEBPACK_IMPORTED_MODULE_0__.getPbWebDyncCode)(this.hasConfigDb()) const url = (0,_common_commonModule__WEBPACK_IMPORTED_MODULE_0__.getPbWebDyncCode)(this.hasConfigDb())
return this.restfulClient.post(url, data, getInitDbConfigParam) return this.requestClient.post(url, data, getInitDbConfigParam)
} }
} }
/* harmony default export */ __webpack_exports__["default"] = (Control); /* harmony default export */ __webpack_exports__["default"] = (Control);
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -276,7 +276,8 @@ class Control { ...@@ -276,7 +276,8 @@ class Control {
const param = { const param = {
app_code: appCode || this.requestClient.appCode, app_code: appCode || this.requestClient.appCode,
page_name: pageName || this.requestClient.pageName, page_name: pageName || this.requestClient.pageName,
usable: 1 usable: 1,
db_name: this.getRealDbName(),
} }
const url = getPbWebDyncCode(this.hasConfigDb()) const url = getPbWebDyncCode(this.hasConfigDb())
return this.requestClient.get(url, param) return this.requestClient.get(url, param)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment