diff --git a/assets_v2/images/clientSet/cata_loading.png b/assets_v2/images/clientSet/cata_loading.png new file mode 100644 index 0000000..6bf643b Binary files /dev/null and b/assets_v2/images/clientSet/cata_loading.png differ diff --git a/assets_v2/images/clientSet/close.svg b/assets_v2/images/clientSet/close.svg new file mode 100644 index 0000000..5f4f8e4 --- /dev/null +++ b/assets_v2/images/clientSet/close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets_v2/images/clientSet/qrcode_ex.svg b/assets_v2/images/clientSet/qrcode_ex.svg new file mode 100644 index 0000000..7e1a391 --- /dev/null +++ b/assets_v2/images/clientSet/qrcode_ex.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets_v2/images/clientSet/uploadSuccess.svg b/assets_v2/images/clientSet/uploadSuccess.svg new file mode 100644 index 0000000..d6db68e --- /dev/null +++ b/assets_v2/images/clientSet/uploadSuccess.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets_v2/js/clientSet/fixedTemUpload.js b/assets_v2/js/clientSet/fixedTemUpload.js new file mode 100644 index 0000000..50c4049 --- /dev/null +++ b/assets_v2/js/clientSet/fixedTemUpload.js @@ -0,0 +1,98 @@ +$(document).ready(function () { + // 假装一下 + $('#progressBar').val(20); + $('#progressBar').text('20%'); + + bindFileUpload(); + + function bindFileUpload() { + var formData = new FormData(); + $('.fileUpload').on('click', function (event) { + $('#fileUpload').trigger('click') + }) + $('#againBtn').on('click', function (event) { + $('#fileUpload').trigger('click') + }) + $('#cancleBtn').click(function () { + formData = new FormData(); + $('.uploadMes').html('') + }) + $('#fileUpload').on('change', function () { + $('#againBtn').addClass('hide') + var fileInput = $(this); + var files = fileInput.prop('files'); + var file = files[0]; // 获取文件 + if (file) { + // 这里可以添加上传文件之前的逻辑,例如文件验证 + // 创建FormData对象 + formData.append('paper_file', file); + formData.append('paper_type', '1'); + formData.append('is_asynch', '1'); + formData.append('ver_chktype', check_type); + // 使用jQuery AJAX上传文件 + $.ajax({ + url: service_domain + '/upload_file', + type: 'POST', + data: formData, + dataType: 'json', + processData: false, // 告诉jQuery不要处理发送的数据 + contentType: false, // 告诉jQuery不要设置Content-Type请求头 + xhr: function () { + $(".uploadShow").addClass('hide'); + $(".uploadMesShow").removeClass('hide'); + $(".uploadMes").removeClass('hide'); + $('#cancleBtn').removeClass('hide') + + var xhr = $.ajaxSettings.xhr(); + if (xhr.upload) { + $(".fileName").html(file.name); + + xhr.upload.addEventListener('progress', function (e) { + if (e.lengthComputable) { + var progress = Math.ceil((e.loaded / e.total) * 100); + // console.log('progress', progress) + $('.uploadMes').html('上传中......'); + } + }, false); + } + return xhr; + }, + success: function (res) { + // 成功回调 + // res = fileMockData + if (res.status) { + $(".uploadShow").addClass('hide'); + $("#cancleBtn").addClass('hide'); + $(".uploadMes").html('上传成功'); + $(".uploadMes").addClass('uploadSuccess');// 成功样式 + $(".uploadMes").removeClass('hide'); + + $('#againBtn').removeClass('hide') + $("#upload_file_md5").val(res.data.upload_file_md5); + $("#upload_file_name").val(res.data.upload_file_name); + $("#upload_file_tmpname").val(res.data.upload_file_tmpname); + } else { + $(".uploadShow").addClass('hide'); + $(".uploadMes").html(res.info); + $(".uploadMes").removeClass('uploadSuccess'); + $("#cancleBtn").addClass('hide'); + $('#againBtn').removeClass('hide') + $('.uploadMes').addClass("uploadfile-error"); + $(".uploadMes").removeClass('hide'); + } + }, + error: function (jqXHR, textStatus, errorThrown) { + // 错误回调 + $(".uploadShow").addClass('hide'); + $(".uploadMes").removeClass('uploadSuccess'); + $('.uploadMes').html('解析失败!请检查文件重新上传'); + $('.uploadMes').addClass("uploadfile-error"); + $(".uploadMes").removeClass('hide'); + $('#againBtn').removeClass('hide') + } + }); + } + }); + } + +}) \ No newline at end of file diff --git a/fixedTemUpload.html b/fixedTemUpload.html new file mode 100644 index 0000000..57731a2 --- /dev/null +++ b/fixedTemUpload.html @@ -0,0 +1,365 @@ + + + + + + + {if $sitename}{$sitename}{else}一键生成万字{if !$is_filter_lunwen}论文{/if}范文{/if} + + + + {if $site_ico} + {/if} + + + + + + + + + + + {literal} + + {/literal} + + + + + + + + +
+
+
+

上传论文,进行排版

+
+ 返回 +
+
+
+
+
+ 模板 + 中国人民大学-本科-马克思政治学院 +
+ +
+
+
+ 学校 + 中国人民大学 +
+
+
+ 学历 +
+ 本科 + 本科 + 本科 + 本科 + 本科 +
+
+
+
+ 学院 +
+ 通用 + 马克思政治学院 +
+
+
+ +
+ +
+ +

点击此处上传论文,请确保论文完整

+

+ 1.支持doc、docx类文件,建议使用Word2013及以上版本。极少部分文档,因软件兼容问题需自行简单调版即可。
+ 2.上传文档应包含学位论文的基本要素信息,暂不支持纯图片的文件排版。
+ 3.单个文件,不能超过500M。 +

+
+ +
+ +
+ + 0% + +
+ +
文件名称。doc
+
上传中。。。
+
取消上传
+
重新上传
+
+
+
+ + +

点击排版,免费看效果,满意再付费

+ + + +
+
1
+ + + + + +{literal} + +{/literal} + + \ No newline at end of file diff --git a/loading.html b/loading.html new file mode 100644 index 0000000..555bd85 --- /dev/null +++ b/loading.html @@ -0,0 +1,211 @@ + + + + + + Document + + + + + +
+
+ + + +
努力排版中…
0%
+
约需30秒,生成后免费预览,满意再下载
+
不等了,完成后通知我
+
+
+ + +
+
+

排版完成会提醒

+ + +

微信扫码关注公众号

+
+
+ + + + + \ No newline at end of file diff --git a/pay.html b/pay.html new file mode 100644 index 0000000..f75a30d --- /dev/null +++ b/pay.html @@ -0,0 +1,2709 @@ + + + + +
+ {if $pay_is_dialog} + + {/if} + +
+ +
+ + +
+ + + +

支付订单

+ +
+
    +
  • +

    + + +

    +

    不参与优惠 原价付

    +
  • +
+ + {if $isai2} +
+
+ {/if} +
+
+ + + +
+ + + + + + + + + +
+
+
+

请输入卡号

+
+ +
+ + {if $isbule_tpl} + + {else} + + {/if} + +
+ +
+

+
+ + + + +
+
+ + +
+ +
+
+
    + + +
+
+ 支付方式: + + + + +
+
+
+
+ +
+
+
+
+
+ +
+
+

已下单,填{if $_is_jd}京东{else}淘宝{/if}订单号

+
+
+

+ 应拍{$config.unit_piece}件(1{$config.unit_name}/{$config.unit_piece}件) +

+
+ +

+ 订单号在哪?

+
+
+
+
+
+ {if $_is_jd} 京东{else} 淘宝{/if}订单 +
+ {if $_is_jd} + + {else} + + {/if} +
+
+
+ +
+
+ 淘宝订单号: + + {if $isbule_tpl} + + {else} + + {/if} + +
+ +
+ + +
+
订单总数:
+
已用数:
+
可用数:
+
+ +
+
+ 淘宝订单号: + + {if $isbule_tpl} + + {else} + + {/if} + +
+
+
+
订单总数:
+
已用数:
+
可用数:
+
+ +
+
+ 淘宝订单号: + + {if $isbule_tpl} + + {else} + + {/if} + +
+
+
+
订单总数:
+
已用数:
+
可用数:
+
+ +
+

+
+ + +
+ +
+

未下单,先购买

+
+

{if $_is_jd}京东{else}淘宝{/if}APP扫码拍单

+ +
+ + +
+ +
+ +{if $pay_is_dialog} + +{/if} + +
{$smarty.get.title|@urldecode}
+{if $smarty.get.core} +
{$smarty.get.core|@urldecode}
+{/if} +
{$config.check_type}
+
{$check_configs}
+ +{if $_ai_login_type} +
+{/if} + +{if $isai2} +
+{/if} + +{if $pay_is_dialog} +
+
+
{$typeinput|@json_encode}
+{/if} + +{if $smarty.get.aiessay_wordnum>=0} +
{$smarty.get.aiessay_wordnum}
+{/if} + +{if $smarty.get.table_and_formulas} +
{$smarty.get.table_and_formulas}
+{/if} + +{if $smarty.get.major} +
{$smarty.get.major}
+{/if} + +{if $smarty.get.qikan_level} +
{$smarty.get.qikan_level}
+{/if} + +{if $smarty.get.edu} +
{$smarty.get.edu}
+{/if} + +{if $smarty.get.is_detail_demand} +
{$smarty.get.is_detail_demand}
+{/if} + +{if $smarty.get.is_core_content} +
{$smarty.get.is_core_content}
+{/if} + +{if $smarty.get.keyword} +
{$smarty.get.keyword}
+{/if} + +{if $smarty.get.wdm_createtype} +
{$smarty.get.wdm_createtype}
+{/if} + +
+
+
+ 此页面信息至关重要,您可截图保存避免丢失 + +
+
+
+ 提交成功!订单号是下载范文唯一凭证 +
+
+ +
+

+ 微信扫码,随时获知范文生成状态 +

+
+

+

状态:生成中......

+
+

+ 订单号:oui18287276789998899 + +

+
+
+
+ + +
+
+ + +
+ + +{literal} + +{/literal} + +
+
+ +
+ {if $isai2} + + {else} + + {/if} + 修改提纲 + +
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+ + 取消后不会保存修改结果,确定取消吗 +
+
+
取消修改
+
继续修改
+
+
+ +{if $smarty.get.iscata} +
+{/if} + +{if $smarty.get.conenttype} +
+{/if} + +
+ +{literal} + +{/literal} \ No newline at end of file diff --git a/report.html b/report.html index 1e9a79e..ca06fb3 100644 --- a/report.html +++ b/report.html @@ -36,11 +36,8 @@ } .report_content { - width: 600px; + width: 956px; text-align: center; - /* display: flex; - flex-direction: column; - justify-content: center; */ } .report_content h3 { @@ -272,7 +269,7 @@ } .report_content .report_detail { - width: 600px; + width: 956px; height: 360px; border-radius: 6px; opacity: 1; @@ -401,6 +398,13 @@ overflow: hidden; } + .report_mes{ + color: #EE7000; + border-radius: 6px; + background: rgba(236, 133, 51, 0.12); + padding: 8px 16px; + } + /* 报告下载end */ @@ -408,16 +412,20 @@
{include file="include/ai2/header.html"} - + {if $smarty.get.oid|@trim}
{$smarty.get.oid|@trim}
{elseif $smarty.cookies.tid}
{$smarty.cookies.tid}
{/if}
+
+ + 系统保留7天以内的检测报告,超过7天则被删除,确保您的论文不会被泄露和盗窃,检测完成后请尽快下载您的检测报告。 +
-

我的报告

+

下载论文排版

订单编号: @@ -440,6 +448,9 @@
  • 淘宝订单

  • +
  • +

    检测卡订单

    +
  • @@ -455,13 +466,11 @@
    +
    -
    - - 系统保留7天以内的检测报告,超过7天则被删除,确保您的论文不会被泄露和盗窃,检测完成后请尽快下载您的检测报告。 -
    +
    diff --git a/temUpload.html b/selfBulid.html similarity index 55% rename from temUpload.html rename to selfBulid.html index 48ff18c..503c858 100644 --- a/temUpload.html +++ b/selfBulid.html @@ -68,6 +68,41 @@ display: flex; flex-direction: column; } + .sp_before{ + width: 6px; + height: 16px; + border-radius: 12px; + background: #3F62F6; + } + .uploadWrap{ + width: 540px; + height: 160px; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + gap: 13px; + text-align: center; + } + .uploadWrap img{ + width: 50px; + height: 50px; + } + .uploadWrap p{ + font-size: 13px; + letter-spacing: normal; + color: #2C394B; + line-height: 20px; + } + .uploadWrap p:last-child{ + font-family: MiSans; + font-size: 12px; + font-weight: normal; + line-height: 20px; + letter-spacing: normal; + color: rgba(92, 110, 134, 0.6); + } + /* 页面元素 start*/ .common_back{ @@ -152,13 +187,7 @@ gap: 8px; } - .sp_before{ - width: 6px; - height: 16px; - border-radius: 12px; - background: #3F62F6; - } - + .border_com{ width: 458px; height: 38px; @@ -187,34 +216,7 @@ .border_com::placeholder{ color: #BABDC2; } - .uploadWrap{ - width: 540px; - height: 160px; - display: flex; - flex-direction: column; - justify-content: center; - align-items: center; - gap: 13px; - text-align: center; - } - .uploadWrap img{ - width: 50px; - height: 50px; - } - .uploadWrap p{ - font-size: 13px; - letter-spacing: normal; - color: #2C394B; - line-height: 20px; - } - .uploadWrap p:last-child{ - font-family: MiSans; - font-size: 12px; - font-weight: normal; - line-height: 20px; - letter-spacing: normal; - color: rgba(92, 110, 134, 0.6); - } + #selfBulid_btn{ width: 144px; height: 46px; @@ -248,13 +250,140 @@
    -

    上传论文,进行排版

    +

    贡献一份模板,收获一次免费排版

    +

    携手共建高校论文模板库,帮助后来的学弟学妹!

    + + + +
    +
    +
    + 1.基本信息 + +
    +
    +
    +
    所属学校:
    +
    +
    + +
    + +
    +
    + 上海交通大学 + 不可修改 +
    +
    + + + + +
    +
    +
    所属学校:
    +
    + +
    +
    +
    +
    学  历:
    +
    +
    + +
    + +
    +
    + +
    + +
    +
    + +
    + +
    +
    + +
    + +
    +
    + +
    + +
    +
    +
    +
    +
    手 机 号:
    +
    + +
    +
    +
    +
    +
    - +
    +
    + 2.论文要求 + +
    +

    上传学校下发的论文格式文档

    +
    + +

    点击此处上传文件

    +

    若有多个文件,请打包成压缩包上传

    +
    - - + +
    +
    +
    + 3.论文上传,免费排版 +
    +

    上传学校下发的论文格式文档

    +
    + +

    现在传:排好直接发您。以后传:先做好模板,短信通知您来操作。这都是安全、免费的

    +
    +
    + +