@yoooloo42/joker 1.0.265 → 1.0.267

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/index.esm.js CHANGED
@@ -48186,10 +48186,13 @@ const scopeThis = reactive({
48186
48186
  find,
48187
48187
  doc,
48188
48188
  pgData: {
48189
- arrBusinessType: [],
48190
- arrProcess: [],
48191
- arrMethod: [],
48192
- arrStatus: []
48189
+ query: null,
48190
+ data: {
48191
+ arrBusinessType: [],
48192
+ arrProcess: [],
48193
+ arrMethod: [],
48194
+ arrStatus: []
48195
+ }
48193
48196
  },
48194
48197
  initBox: props.myProps,
48195
48198
  amountBox: computed(()=>{
@@ -48202,11 +48205,7 @@ onMounted(async ()=>{
48202
48205
  scopeThis.queryInit.formData.id_business = scopeThis.initBox.id_business;
48203
48206
  scopeThis.queryInit.formData.businesstype_code = scopeThis.initBox.businesstype_code;
48204
48207
  await withTable.init({scopeThis});
48205
- const txt = scopeThis.pgData.arrBusinessType.find(i=>{
48206
-
48207
- console.log('测试 000', i);
48208
- console.log('测试 111', scopeThis.initBox.businesstype_code);
48209
-
48208
+ const txt = scopeThis.pgData.data.arrBusinessType.find(i=>{
48210
48209
  return i.code === scopeThis.initBox.businesstype_code
48211
48210
  }).text;
48212
48211
  scopeThis.initBox.popup.title = '支付记录[' + txt + '] - 订单id: ' + scopeThis.initBox.id_business;