修改了注册页面的协议接口
This commit is contained in:
parent
497856dae7
commit
bab56b62dc
@ -75,7 +75,12 @@
|
|||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<div class="pagin">
|
<div class="pagin">
|
||||||
|
<!-- <el-pagination
|
||||||
|
:page-size="pageSize"
|
||||||
|
:current-page="currentPage"
|
||||||
|
:total="data.length"
|
||||||
|
@current-change="handlePageChange"
|
||||||
|
></el-pagination> -->
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -95,6 +100,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import { ref, watch, onMounted } from 'vue'
|
import { ref, watch, onMounted } from 'vue'
|
||||||
import { useRoute, useRouter } from 'vue-router'
|
import { useRoute, useRouter } from 'vue-router'
|
||||||
|
import { ElMenu, ElSubMenu, ElMenuItem, ElPagination } from 'element-plus'
|
||||||
// import { ref, reactive } from 'vue'
|
// import { ref, reactive } from 'vue'
|
||||||
import axios from 'axios'
|
import axios from 'axios'
|
||||||
// import $ from 'jquery'
|
// import $ from 'jquery'
|
||||||
@ -161,6 +167,8 @@ export default {
|
|||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
number: 0,
|
number: 0,
|
||||||
@ -170,6 +178,9 @@ export default {
|
|||||||
defaultOpeneds: [],
|
defaultOpeneds: [],
|
||||||
// 用于追踪每个子菜单的展开状态
|
// 用于追踪每个子菜单的展开状态
|
||||||
// openedMenus: [],
|
// openedMenus: [],
|
||||||
|
// data: [],
|
||||||
|
// currentPage: 1,
|
||||||
|
// pageSize: 10,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@ -204,9 +215,13 @@ export default {
|
|||||||
|
|
||||||
search() {
|
search() {
|
||||||
var textInput = document.querySelector('#txtInput').value
|
var textInput = document.querySelector('#txtInput').value
|
||||||
axios.get('https://www.aimzhu.com/operator/app/help-detail/listrelease?keywords='+ textInput)
|
// var pageSize = 10;
|
||||||
|
// var currentPage = 1;
|
||||||
|
axios.get('https://www.aimzhu.com/operator/app/help-detail/listrelease?keywords=' + textInput)
|
||||||
|
// axios.get(`https://www.aimzhu.com/operator/app/help-detail/listrelease/${pageSize}/${currentPage}?keywords=${textInput}`)
|
||||||
.then(response => {
|
.then(response => {
|
||||||
// alert( response.data[0].richContent)
|
// alert( response.data[0].richContent)
|
||||||
|
console.log(response);
|
||||||
console.log(response.data);
|
console.log(response.data);
|
||||||
let searchContent = response.data
|
let searchContent = response.data
|
||||||
if (searchContent.length !== 0) {
|
if (searchContent.length !== 0) {
|
||||||
@ -277,7 +292,6 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
.help-center {
|
.help-center {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
@ -394,9 +394,9 @@
|
|||||||
<p>我同意平台
|
<p>我同意平台
|
||||||
<!-- <a id="openUserAgreement" class="layer-btn"
|
<!-- <a id="openUserAgreement" class="layer-btn"
|
||||||
href="J:\project\Ai_Softness\src\components\UserAgreement.html" target="_blank">《用户服务协议》</a> -->
|
href="J:\project\Ai_Softness\src\components\UserAgreement.html" target="_blank">《用户服务协议》</a> -->
|
||||||
<a id="openUserAgreement" class="layer-btn"
|
<a id="openUserAgreement" class="layer-btn" href="https://www.aimzhu.com/UserAgreement.html"
|
||||||
href="https://www.aimzhu.com/operator/components/UserAgreement.html" target="_blank">《用户服务协议》</a>和<a
|
target="_blank">《用户服务协议》</a>和<a href="https://www.aimzhu.com/PrivacyPolicy.html"
|
||||||
href="https://www.aimzhu.com/operator/components/PrivacyPolicy.html" target="_blank">《隐私条款》</a>
|
target="_blank">《隐私条款》</a>
|
||||||
<!-- <a id="openUserAgreement" class="layer-btn" onclick="xieyiPage()">《用户服务协议》</a> -->
|
<!-- <a id="openUserAgreement" class="layer-btn" onclick="xieyiPage()">《用户服务协议》</a> -->
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user