|
@@ -56,7 +56,7 @@
|
|
|
}}</a-option>
|
|
|
</a-select>
|
|
|
</a-form-item>
|
|
|
- <a-form-item label="充值绑定资费" field="trafficId" validate-trigger="blur">
|
|
|
+ <a-form-item label="默认绑定资费" field="trafficId" validate-trigger="blur">
|
|
|
<a-select v-model="Form.trafficId">
|
|
|
<a-option v-for="item in tariffListData" :value="item.id" :key="item.id">{{ item.label
|
|
|
}}</a-option>
|
|
@@ -270,7 +270,7 @@ onMounted(async () => {
|
|
|
Currency.value = dict[2]
|
|
|
Form.value.currency = Currency.value[0]?.value
|
|
|
billingMethodList.value = dict[3]
|
|
|
- let res = await tariffList({ current: 1, size: 99999 ,source:props.list.source })
|
|
|
+ let res = await tariffList({ current: 1, size: 99999 ,source:props.list.source ,userId:props.list.userId})
|
|
|
if (res.code === 200) {
|
|
|
tariffListData.value = (res.data.records || []).map(item => {
|
|
|
return {
|