@yoooloo42/joker 1.0.266 → 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.cjs.js +8 -13
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +8 -13
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -48186,10 +48186,13 @@ const scopeThis = reactive({
|
|
|
48186
48186
|
find,
|
|
48187
48187
|
doc,
|
|
48188
48188
|
pgData: {
|
|
48189
|
-
|
|
48190
|
-
|
|
48191
|
-
|
|
48192
|
-
|
|
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,15 +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
|
-
|
|
48206
|
-
console.log('测试 222', scopeThis.pgData);
|
|
48207
|
-
console.log('测试 333', scopeThis.pgData.arrBusinessType);
|
|
48208
|
-
|
|
48209
|
-
const txt = scopeThis.pgData.arrBusinessType.find(i=>{
|
|
48210
|
-
|
|
48211
|
-
console.log('测试 000', i);
|
|
48212
|
-
console.log('测试 111', scopeThis.initBox.businesstype_code);
|
|
48213
|
-
|
|
48208
|
+
const txt = scopeThis.pgData.data.arrBusinessType.find(i=>{
|
|
48214
48209
|
return i.code === scopeThis.initBox.businesstype_code
|
|
48215
48210
|
}).text;
|
|
48216
48211
|
scopeThis.initBox.popup.title = '支付记录[' + txt + '] - 订单id: ' + scopeThis.initBox.id_business;
|