jufubao-admin-library 1.1.79 → 1.1.81
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.
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
<i v-if="(index + 1) === handTimeOptions.length" class="el-icon-circle-plus ml5" @click="add(item)" ></i>
|
|
77
77
|
<i v-if="handTimeOptions.length > 1" class="el-icon-remove ml5" @click="remove(index)"></i>
|
|
78
78
|
</div>
|
|
79
|
-
<div style="color: red;font-size: 12px;line-height: 18px;">设置后将按每周周几对应时间点调价,例如每周星期五17点~22
|
|
79
|
+
<div style="color: red;font-size: 12px;line-height: 18px;">设置后将按每周周几对应时间点调价,例如每周星期五17点~22点调价<br/>另所选时间是向后包含的,例如23时即为23:00:00~23:59:59</div>
|
|
80
80
|
</el-form-item>
|
|
81
81
|
</template>
|
|
82
82
|
</xd-base-dynamic-field>
|
|
@@ -200,7 +200,7 @@ export default {
|
|
|
200
200
|
// #endif
|
|
201
201
|
]).then((res) => {
|
|
202
202
|
// #ifdef app-thirdmall
|
|
203
|
-
this.openDialogForm = res[2]["data"]["
|
|
203
|
+
this.openDialogForm = res[2]["data"]["service_fee_form"];
|
|
204
204
|
this.brandList = res[1].data.brands;
|
|
205
205
|
// #endif
|
|
206
206
|
// #ifdef partner
|
|
@@ -337,6 +337,11 @@ export default {
|
|
|
337
337
|
: this.openInfoData
|
|
338
338
|
? this.openInfoData.business_code
|
|
339
339
|
: "",
|
|
340
|
+
pay_url_data: copyValue.pay_url_data
|
|
341
|
+
? copyValue.pay_url_data
|
|
342
|
+
: this.openInfoData
|
|
343
|
+
? this.openInfoData.pay_url_data
|
|
344
|
+
: "",
|
|
340
345
|
})
|
|
341
346
|
);
|
|
342
347
|
});
|
|
@@ -1256,6 +1261,9 @@ export default {
|
|
|
1256
1261
|
trigger: ["blur", "change"],
|
|
1257
1262
|
},
|
|
1258
1263
|
];
|
|
1264
|
+
}else if(item.ele === "el-input"){
|
|
1265
|
+
let key = item.valueKey;
|
|
1266
|
+
item.value = params[key] || '';
|
|
1259
1267
|
}
|
|
1260
1268
|
});
|
|
1261
1269
|
this.listForm = listForm;
|