@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.cjs.js
CHANGED
|
@@ -48190,10 +48190,13 @@ const scopeThis = vue.reactive({
|
|
|
48190
48190
|
find,
|
|
48191
48191
|
doc,
|
|
48192
48192
|
pgData: {
|
|
48193
|
-
|
|
48194
|
-
|
|
48195
|
-
|
|
48196
|
-
|
|
48193
|
+
query: null,
|
|
48194
|
+
data: {
|
|
48195
|
+
arrBusinessType: [],
|
|
48196
|
+
arrProcess: [],
|
|
48197
|
+
arrMethod: [],
|
|
48198
|
+
arrStatus: []
|
|
48199
|
+
}
|
|
48197
48200
|
},
|
|
48198
48201
|
initBox: props.myProps,
|
|
48199
48202
|
amountBox: vue.computed(()=>{
|
|
@@ -48206,15 +48209,7 @@ vue.onMounted(async ()=>{
|
|
|
48206
48209
|
scopeThis.queryInit.formData.id_business = scopeThis.initBox.id_business;
|
|
48207
48210
|
scopeThis.queryInit.formData.businesstype_code = scopeThis.initBox.businesstype_code;
|
|
48208
48211
|
await withTable.init({scopeThis});
|
|
48209
|
-
|
|
48210
|
-
console.log('测试 222', scopeThis.pgData);
|
|
48211
|
-
console.log('测试 333', scopeThis.pgData.arrBusinessType);
|
|
48212
|
-
|
|
48213
|
-
const txt = scopeThis.pgData.arrBusinessType.find(i=>{
|
|
48214
|
-
|
|
48215
|
-
console.log('测试 000', i);
|
|
48216
|
-
console.log('测试 111', scopeThis.initBox.businesstype_code);
|
|
48217
|
-
|
|
48212
|
+
const txt = scopeThis.pgData.data.arrBusinessType.find(i=>{
|
|
48218
48213
|
return i.code === scopeThis.initBox.businesstype_code
|
|
48219
48214
|
}).text;
|
|
48220
48215
|
scopeThis.initBox.popup.title = '支付记录[' + txt + '] - 订单id: ' + scopeThis.initBox.id_business;
|