@uxda/appkit 1.0.62 → 1.0.66

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/appkit.css CHANGED
@@ -614,6 +614,8 @@ page {
614
614
  margin-right: 10px;
615
615
  }
616
616
  .consumption-view .operation-title .search-time .time {
617
+ height: 22px;
618
+ padding-right: 5px;
617
619
  flex: 1;
618
620
  display: flex;
619
621
  align-items: center;
@@ -621,6 +623,8 @@ page {
621
623
  .consumption-view .operation-title .search {
622
624
  display: flex;
623
625
  align-items: center;
626
+ height: 22px;
627
+ padding-left: 5px;
624
628
  }
625
629
  .consumption-view .operation-list {
626
630
  margin: 0 15px;
package/dist/index.js CHANGED
@@ -378,7 +378,8 @@ const makeHttp$1 = () => {
378
378
  const token = appkitOptions.tempToken() || appkitOptions.token();
379
379
  const header = {
380
380
  Token: token,
381
- Appcode: appkitOptions.app()
381
+ Appcode: appkitOptions.app(),
382
+ cookie: `tid=${appkitOptions.tenant()}`
382
383
  };
383
384
  const $http = useHttp({
384
385
  baseUrl: appkitOptions.baseUrl(),
@@ -1272,6 +1273,7 @@ const _hoisted_17 = { class: "text" };
1272
1273
  const _hoisted_18 = /* @__PURE__ */ createElementVNode(
1273
1274
  "img",
1274
1275
  {
1276
+ style: { "margin-top": "-2px" },
1275
1277
  class: "time-icon",
1276
1278
  src: "https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png"
1277
1279
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uxda/appkit",
3
- "version": "1.0.62",
3
+ "version": "1.0.66",
4
4
  "description": "小程序应用开发包",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.ts",
@@ -47,6 +47,7 @@
47
47
  <div class="time" @click="openDateFilter" v-show="filtering.dateFrom">
48
48
  <div class="text">{{ dataRangeDisplay }}</div>
49
49
  <img
50
+ style="margin-top: -2px"
50
51
  class="time-icon"
51
52
  src="https://cdn.ddjf.com/static/images/bpms-workBench/clound-bean-down.png" />
52
53
  </div>
@@ -394,6 +395,8 @@ const popupOpen = computed(() => {
394
395
  margin-right: 10px;
395
396
  }
396
397
  .time {
398
+ height: 22px;
399
+ padding-right: 5px;
397
400
  flex: 1;
398
401
  display: flex;
399
402
  align-items: center;
@@ -402,6 +405,8 @@ const popupOpen = computed(() => {
402
405
  .search {
403
406
  display: flex;
404
407
  align-items: center;
408
+ height: 22px;
409
+ padding-left: 5px;
405
410
  }
406
411
  }
407
412
  .operation-list {
@@ -10,6 +10,7 @@ const makeHttp = () => {
10
10
  const header = {
11
11
  Token: token,
12
12
  Appcode: appkitOptions.app(),
13
+ cookie: `tid=${appkitOptions.tenant()}`
13
14
  }
14
15
 
15
16
  const $http = useHttp({