|
@@ -69,17 +69,38 @@
|
|
|
<a-form-item field="" :label="$t('tariffManagement.pricing')" required>
|
|
|
<a-input v-model="formState.pricing" v-if="formState.billingMethod == 2">
|
|
|
<template #append>
|
|
|
- {{ formState.currency === '0' ? $t('setting.yuan') : $t('setting.USD') }}
|
|
|
+ {{ formState.currency }}
|
|
|
</template>
|
|
|
</a-input>
|
|
|
<a-input v-model="formState.trafficBilling" v-if="formState.billingMethod == 1"></a-input>
|
|
|
<a-select v-model="formState.trafficBillingType" style="width: 80px; margin:0 8px;"
|
|
|
v-if="formState.billingMethod == 1">
|
|
|
<a-option value="MB">MB</a-option>
|
|
|
+ <a-option value="GB">GB</a-option>
|
|
|
+ <a-option value="KB">KB</a-option>
|
|
|
</a-select>
|
|
|
<a-input v-model="formState.trafficBillingAmount" v-if="formState.billingMethod == 1">
|
|
|
<template #append>
|
|
|
- {{ formState.currency === '0' ? $t('setting.yuan') : $t('setting.USD') }}
|
|
|
+ {{ formState.currency }}
|
|
|
+ </template>
|
|
|
+ </a-input>
|
|
|
+ </a-form-item>
|
|
|
+ <a-form-item label="原价" field="networkAccessFee">
|
|
|
+ <a-input v-model="formState.pricing" v-if="formState.billingMethod == 2">
|
|
|
+ <template #append>
|
|
|
+ {{ formState.currency }}
|
|
|
+ </template>
|
|
|
+ </a-input>
|
|
|
+ <a-input v-model="formState.trafficBilling" v-if="formState.billingMethod == 1"></a-input>
|
|
|
+ <a-select v-model="formState.trafficBillingType" style="width: 80px; margin:0 8px;"
|
|
|
+ v-if="formState.billingMethod == 1">
|
|
|
+ <a-option value="MB">MB</a-option>
|
|
|
+ <a-option value="GB">GB</a-option>
|
|
|
+ <a-option value="KB">KB</a-option>
|
|
|
+ </a-select>
|
|
|
+ <a-input v-model="formState.trafficBillingAmount" v-if="formState.billingMethod == 1">
|
|
|
+ <template #append>
|
|
|
+ {{ formState.currency }}
|
|
|
</template>
|
|
|
</a-input>
|
|
|
</a-form-item>
|
|
@@ -89,14 +110,14 @@
|
|
|
<a-form-item :label="$t('tariffManagement.MRCName')" field="mrcAmount">
|
|
|
<a-input v-model="formState.mrcAmount">
|
|
|
<template #append>
|
|
|
- {{ formState.currency === '0' ? $t('setting.yuan') : $t('setting.USD') }}
|
|
|
+ {{ formState.currency }}
|
|
|
</template>
|
|
|
</a-input>
|
|
|
</a-form-item>
|
|
|
<a-form-item :label="$t('tariffManagement.networkName')" field="networkAccessFee">
|
|
|
<a-input v-model="formState.networkAccessFee">
|
|
|
<template #append>
|
|
|
- {{ formState.currency === '0' ? $t('setting.yuan') : $t('setting.USD') }}
|
|
|
+ {{ formState.currency }}
|
|
|
</template>
|
|
|
</a-input>
|
|
|
</a-form-item>
|