作者 王晓刚
1 个管道 的构建 通过 耗费 0 秒

商户申请

... ... @@ -4,7 +4,7 @@
<bookmark url="file://$PROJECT_DIR$/application/home/view/member/my_information.html" line="118" mnemonic="4" />
</component>
<component name="ChangeListManager">
<list default="true" id="309ad746-5b2a-4c29-af46-e7925a35765c" name="默认的" comment="商户申请">
<list default="true" id="309ad746-5b2a-4c29-af46-e7925a35765c" name="默认的" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/application/home/view/merchant/enter_view.html" beforeDir="false" afterPath="$PROJECT_DIR$/application/home/view/merchant/enter_view.html" afterDir="false" />
</list>
... ... @@ -58,8 +58,8 @@
<file leaf-file-name="enter_view.html" pinned="false" current-in-tab="true">
<entry file="file://$PROJECT_DIR$/application/home/view/merchant/enter_view.html">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="708">
<caret line="202" column="50" selection-start-line="202" selection-start-column="50" selection-end-line="202" selection-end-column="50" />
<state relative-caret-position="334">
<caret line="113" column="33" selection-start-line="113" selection-start-column="33" selection-end-line="113" selection-end-column="33" />
<folding>
<element signature="e#2807#3332#0" />
<element signature="e#4045#4570#0" />
... ... @@ -454,21 +454,7 @@
<workItem from="1573000530976" duration="6061000" />
<workItem from="1573087576825" duration="5555000" />
<workItem from="1573174620844" duration="32581000" />
<workItem from="1573259331081" duration="14171000" />
</task>
<task id="LOCAL-00420" summary="我的分享">
<created>1573212444481</created>
<option name="number" value="00420" />
<option name="presentableId" value="LOCAL-00420" />
<option name="project" value="LOCAL" />
<updated>1573212444481</updated>
</task>
<task id="LOCAL-00421" summary="我的分享">
<created>1573212483509</created>
<option name="number" value="00421" />
<option name="presentableId" value="LOCAL-00421" />
<option name="project" value="LOCAL" />
<updated>1573212483509</updated>
<workItem from="1573259331081" duration="14793000" />
</task>
<task id="LOCAL-00422" summary="我的分享">
<created>1573213355407</created>
... ... @@ -799,11 +785,25 @@
<option name="project" value="LOCAL" />
<updated>1573274056118</updated>
</task>
<option name="localTasksCounter" value="469" />
<task id="LOCAL-00469" summary="商户申请">
<created>1573277182792</created>
<option name="number" value="00469" />
<option name="presentableId" value="LOCAL-00469" />
<option name="project" value="LOCAL" />
<updated>1573277182792</updated>
</task>
<task id="LOCAL-00470" summary="商户申请">
<created>1573277387569</created>
<option name="number" value="00470" />
<option name="presentableId" value="LOCAL-00470" />
<option name="project" value="LOCAL" />
<updated>1573277387569</updated>
</task>
<option name="localTasksCounter" value="471" />
<servers />
</component>
<component name="TimeTrackingManager">
<option name="totallyTimeSpent" value="387844000" />
<option name="totallyTimeSpent" value="388466000" />
</component>
<component name="ToolWindowManager">
<frame x="-8" y="-8" width="1936" height="1056" extended-state="6" />
... ... @@ -1216,8 +1216,8 @@
</entry>
<entry file="file://$PROJECT_DIR$/application/home/view/merchant/enter_view.html">
<provider selected="true" editor-type-id="text-editor">
<state relative-caret-position="708">
<caret line="202" column="50" selection-start-line="202" selection-start-column="50" selection-end-line="202" selection-end-column="50" />
<state relative-caret-position="334">
<caret line="113" column="33" selection-start-line="113" selection-start-column="33" selection-end-line="113" selection-end-column="33" />
<folding>
<element signature="e#2807#3332#0" />
<element signature="e#4045#4570#0" />
... ...
... ... @@ -111,6 +111,7 @@
<script type="text/javascript" src="http://res.wx.qq.com/open/js/jweixin-1.4.0.js"></script>
<script>
$(function(){
var host = "http://"+window.location.host;
wx.config(
{$jssdk}
);
... ... @@ -184,11 +185,11 @@
});
};
$('body').on('click', '.images_one', function () {
var thisUrl = $(this).find('img').attr('src');
var thisUrl = host+$(this).find('img').attr('src');
var allUrlLength = $('.images_one').length;
var allUrl = [];
for (var i = 0; i < allUrlLength; i++) {
allUrl.push($('.images_one').eq(i).attr('src'));
allUrl.push(houst+$('.images_one').eq(i).attr('src'));
}
wx.previewImage({
current: thisUrl,
... ... @@ -196,12 +197,11 @@
});
});
$('body').on('click', '.images_two', function () {
var thisUrl = $(this).find('img').attr('src');
console.log(window.location.host);
var thisUrl = host+$(this).find('img').attr('src');
var allUrlLength = $('.images_two').length;
var allUrl = [];
for (var i = 0; i < allUrlLength; i++) {
allUrl.push($('.images_two').eq(i).attr('src'));
allUrl.push(host+$('.images_two').eq(i).attr('src'));
}
wx.previewImage({
current: thisUrl,
... ...