123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343 |
- <template>
- <view class="container">
- <!-- <tn-nav-bar :isBack="false" backgroundColor="#fff" :bottomShadow="false">数字人</tn-nav-bar> -->
- <!-- <view class="pos">
- </view> -->
- <view class="context">
- <view class="createPro" @click="handleCreatePro">
- <view class="centerAdd">
- <view class="addIcon">
- <!-- <image src="/static/images/buy.png" mode=""></image> -->
- <text class="iconfont icon-chuangjian" style="color: white;"></text>
- </view>
- <view class="addTxt">
- 创建项目
- </view>
- </view>
- </view>
- <view class="draft">
- <view class="draftLabel">
- 草稿
- </view>
- <view class="draftList">
- <view class="itemBox" v-for="(item,index) in draftList" @click="toCreateDetail(item)">
- <view class="top">
- <image src="/static/images/head.jpg" mode=""></image>
- </view>
- <view class="bottom">
- <view class="left">
- {{item.name}}
- </view>
- <view class="delIcon" @click.stop="delDraft(item,index)">
- <!-- <image src="/static/images/head.jpg" mode=""></image> -->
- <text class="iconfont icon-shanchu" style="font-size: 32rpx;"></text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <view class="draft">
- <view class="draftLabel">
- 数字人作品
- </view>
- <view class="draftList">
- <view class="itemBox" v-for="(item,index) in workList" @click="goWorkDetail(item)">
- <view class="top">
- <image :src="item.cover" mode="" v-if="item.state"></image>
- <view class="tipBox" v-else>
- <view class="preloader_1">
- <view></view>
- <view></view>
- <view></view>
- <view></view>
- <view></view>
- </view>
- <view class="tip" style="color:#26b3a0">
- 生成中...
- </view>
- </view>
- </view>
- <view class="bottom">
- <view class="left">
- {{item.name}}
- </view>
- <!-- <view class="left">
- {{item.state==1?"已生成":'生成中'}}
- </view> -->
- <view class="delIcon" @click.stop="handleShowMoreMenu(item,index)">
- <!-- <image src="/static/images/head.jpg" mode=""></image> -->
- <text class="iconfont icon-gengduo-shuxiang" style="font-size: 32rpx;"></text>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- <button @click="test">测试网络请求</button> -->
- <u-picker :showIcon="true" :show="showMoreMenu" :columns="columns" title="更多" confirmColor=""
- @cancel="showMoreMenu=false" @confirm="handleConfirm"></u-picker>
- <wike-tabbar :onTabbar="true" :isShowAnimate="true"></wike-tabbar>
- </view>
- </view>
- </template>
- <script>
- import {
- workList,
- delWork,
- draftList
- } from '@/api/robot/index.js'
- import {
- downLoad3
- } from '@/utils/download3.js'
- export default {
- data() {
- return {
- showMoreMenu: false,
- columns: [
- ['删除', '下载视频', '复制链接']
- ],
- draftList: [],
- workList: [],
- delItem: {},
- delIndex: -1,
- is_wx: false
- };
- },
- computed: {
- },
- onReady() {
- },
- onUnload() {
- },
- onLoad() {
- },
- onShow() {
- // console.log('1213', download);
- this.getIndexData()
- this.is_wx = this.is_weixin()
- console.log('this.is_wx', this.is_wx);
- },
- onShareAppMessage: function(res) {
- },
- async onPullDownRefresh() {
- this.getIndexData()
- },
- methods: {
- toCreateDetail(item) {
- getApp().draftDetail = item
- uni.navigateTo({
- url: '/pages/robot/generate/index'
- })
- },
- async delDraft(item, index) {
- let res = await delWork({
- id: item.id
- })
- if (res.code == 0) {
- this.draftList.splice(index, 1)
- console.log('删除数字人草稿返回值:', res);
- uni.showToast({
- title: '数字人:' + item.name + '草稿删除成功!',
- icon: 'success'
- })
- } else {
- uni.showToast({
- title: res.msg,
- icon: 'none'
- })
- }
- },
- downLoad(url) {
- uni.downloadFile({
- url: url,
- header: {
- // 'Authorization':this.$utils.localData.getToken(),
- },
- success: (res) => {
- if (res.statusCode === 200) {
- console.log('res.tempFilePath', res.tempFilePath);
- return
- //res.tempFilePath; //此参数为本地的缓存地址
- var link = document.createElement('a');
- link.href = url; //url 为获取的本地缓存地址或者直接是url地址
- link.download = name + '.file'; //name为自定义的文件名称 .file为文件后缀名
- document.body.appendChild(link)
- link.click()
- //移除
- setTimeout(() => document.body.removeChild(link), 1000)
- }
- },
- fail: (e) => {
- uni.showToast({
- title: '数据处理错误,请刷新重试',
- icon: 'none',
- duration: 2000
- });
- }
- })
- },
- downLoad2(url) {
- var link = document.createElement('a');
- link.href = url; //url 为获取的本地缓存地址或者直接是url地址
- link.download = '数字人视频' + '.mp4'; //name为自定义的文件名称 .file为文件后缀名
- document.body.appendChild(link)
- link.click()
- //移除
- setTimeout(() => document.body.removeChild(link), 1000)
- },
- // 判断是否是微信浏览器
- is_weixin() {
- var ua = window.navigator.userAgent.toLowerCase();
- if (ua.match(/MicroMessenger/i) == 'micromessenger') {
- console.log('微信浏览器');
- return true;
- } else {
- console.log("不是微信浏览器");
- return false;
- }
- },
- async getIndexData() {
- let res = await workList({})
- if (res.code == 0) {
- uni.stopPullDownRefresh()
- this.workList = res.data
- console.log('数字人作品列表返回值:', res);
- } else {
- uni.showToast({
- title: res.msg,
- icon: 'none'
- })
- }
- let res1 = await draftList({})
- if (res1.code == 0) {
- uni.stopPullDownRefresh()
- this.draftList = res1.data
- console.log('数字人草稿列表返回值:', res1);
- } else {
- uni.showToast({
- title: res1.msg,
- icon: 'none'
- })
- }
- },
- goWorkDetail(item) {
- if (item.state == 0) {
- uni.showToast({
- title: '数字人正在生成中,请稍后查看',
- icon: 'none'
- })
- return
- }
- getApp().url = item.url
- uni.navigateTo({
- url: '/pages/robot/workDetail/index'
- })
- },
- handleCreatePro() {
- uni.navigateTo({
- url: '/pages/robot/generate/index'
- })
- },
- handleShowMoreMenu(item, index) {
- this.delIndex = index
- this.delItem = item
- this.showMoreMenu = true
- },
- async handleConfirm(e) {
- this.showMoreMenu = false
- if (e.value[0] == '删除') {
- let res = await delWork({
- id: this.delItem.id
- })
- if (res.code == 0) {
- this.workList.splice(this.delIndex, 1)
- console.log('删除数字人返回值:', res);
- uni.showToast({
- title: '数字人:' + this.delItem.name + '删除成功!',
- icon: 'success'
- })
- } else {
- uni.showToast({
- title: res.msg,
- icon: 'none'
- })
- }
- } else if (e.value[0] == '复制链接') {
- uni.setClipboardData({
- data: this.delItem.url,
- success: function() {
- uni.showToast({
- title: '链接复制成功!',
- duration: 1500
- });
- }
- });
- } else if (e.value[0] == '下载视频') {
- const detectDeviceType = () => /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i
- .test(
- navigator.userAgent) ? false : true;
- if (this.is_wx) {
- // 微信内置浏览器
- // this.downLoad2(this.delItem.url)
- let _that = this
- uni.showModal({
- title: '温馨提示',
- content: '微信内置浏览器不支持视频文件下载,请复制视频链接至手机浏览器打开',
- confirmText: '复制',
- confirmColor: '#26B3A0',
- success: function(res) {
- if (res.confirm) {
- uni.setClipboardData({
- data: _that.delItem.url,
- success: function() {
- uni.showToast({
- title: "复制成功",
- icon: 'success',
- })
- }
- });
- } else if (res.cancel) {}
- }
- })
- return
- } else {
- if (detectDeviceType()) {
- // PC端
- downLoad3(this.delItem.url, '数字人' + this.delItem.name + '视频', 'video/mp4')
- } else {
- // 其他移动端浏览器
- window.open(this.delItem.url)
- }
- }
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- @import './index.scss';
- </style>
|