diff --git a/frontend/src/views/InstanceSearch.vue b/frontend/src/views/InstanceSearch.vue index 80d16de..d655ce1 100644 --- a/frontend/src/views/InstanceSearch.vue +++ b/frontend/src/views/InstanceSearch.vue @@ -16,7 +16,7 @@ @@ -29,7 +29,7 @@ @@ -319,7 +319,7 @@
- 联系人: + 网站:
@@ -329,12 +329,12 @@
- 电话: - + 微信: +
- 电话: - + tg: +
@@ -446,6 +446,7 @@
说明事项:
1. 以上价格仅包服务器和磁盘的费用, 公共带宽流量按官网价格 美国$0.12USD/GB
+
2. 每个实例需要额外支付4美金一个月的ip费用'
@@ -475,8 +476,8 @@ export default { data() { return { form: { - cpu_cores: 0, - memory_gb: 0, + cpu_cores: null, + memory_gb: null, disk_gb: 30, // 默认30GB region: 'us-east-1', disk_type: 'gp3', @@ -490,8 +491,9 @@ export default { loading: false, searched: false, quoteInfo: { - contact: '林先生', - phone: '18626324958' + contact: 'www.pinnovatecloud.com', + phone: 'aws2jim,Alibabacloud88888', + tg: '@jimaws,@RosaInca,@lambertaws' }, isMobile: false } @@ -630,8 +632,8 @@ export default { const wb = XLSX.utils.book_new() const titleRow = [['AWS亚马逊报价单']] const infoRows = [ - ['联系人:', this.quoteInfo.contact, '', '签发日期:', this.getCurrentDate()], - ['电话:', this.quoteInfo.phone, '', '电话:', ''] + ['网站:', this.quoteInfo.contact, '', '签发日期:', this.getCurrentDate()], + ['微信:', this.quoteInfo.phone, '', 'telgram:', this.quoteInfo.tg] ] const emptyRow = ['', '', '', '', '', '', ''] const headerRow = ['产品名称', '规格型号', '磁盘', '操作系统', '区域', '官方月付全额 美元USD', '官方年付全额 美元USD'] @@ -647,7 +649,8 @@ export default { const noteRows = [ emptyRow, ['说明事项:'], - ['1. 以上价格仅包服务器和磁盘的费用, 公共带宽流量按官网价格 均价$0.12USD/GB'] + ['1. 以上价格仅包服务器和磁盘的费用, 公共带宽流量按官网价格 均价$0.12USD/GB'], + ['2. 每个实例需要额外支付4美金一个月的ip费用'] ] const allRows = [...titleRow, ...infoRows, emptyRow, headerRow, ...dataRows, ...noteRows] const ws = XLSX.utils.aoa_to_sheet(allRows)