12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <template>
- <view>
- <!-- 弹窗 -->
- <view class="bgbox" @click="getClose" v-if="type"></view>
-
- </view>
- </template>
- <script>
- import config from '@/config'
- const baseUrl = config.baseUrl
- import { getToken } from '@/utils/auth'
- import {uploadmore} from '@/utils/common.js'
- export default{
- components:{},
- props:{
- type: {
- type: String,
- default () {
- return ''
- }
- },
- finshtype:{
- type: [String,Number],
- default () {
- return ''
- }
- }
- },
- data(){
- return{
- baseUrl:config.baseUrl,
- closeimg:require("@/static/images/close.png"),
- downimg:require("@/health/static/health/down.png"),
- hicoa:require("@/health/static/health/hicoa.png"),
- }
- },
- mounted() {
- this.baseUrl=baseUrl
- },
- watch:{
- type(val){
- // this.filelist=[];
- // this.shtext='';
- // this.isty='2';
- // this.phofile=[];
- }
- },
- methods:{
- bindDateChange(){
- var val=e.detail.value;
- },
- getClose(){
- this.$emit('getClose')
- },
- getSure(){
- this.$emit('getSure')
- },
- getChose(val){
- this.peoval=val
- },
- getPreviewImage(arr,idx){
- var newArr=[];
- arr.forEach(ite=>{
- var ds=this.baseUrl+ite
- newArr.push(ds)
- })
- uni.previewImage({
- urls: newArr,
- current:idx,
- success: function(data) {
-
- },
- fail: function(err) {
-
- }
- });
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- .closeimg{width: 32rpx;height: 32rpx;position: absolute;bottom: -72rpx;left: 50%;margin-left: -16rpx;}
- </style>
|