first commit

This commit is contained in:
2025-08-06 17:17:48 +08:00
commit dc5fba137c
453 changed files with 85995 additions and 0 deletions
@@ -0,0 +1,208 @@
<template>
<!--pages/input_express_info/input_express_info.wxml-->
<view class="input-express-info">
<form @submit="formSubmit">
<view class="input-contain mt20">
<view class="input-item row">
<view class="nr label">物流公司</view>
<input class="input" placeholder="请输入物流公司名称" :value="formInfo.express" name="express"></input>
</view>
<view class="input-item row">
<view class="nr label">快递单号</view>
<input class="input" placeholder="请输入快递单号" :value="formInfo.number" name="number"></input>
</view>
<view class="input-item row">
<view class="nr label">备注说明</view>
<input class="input" placeholder="选填" :value="formInfo.remark" name="remark"></input>
</view>
</view>
<view class="upload-contain mt20">
<view class="header row">
<view class="nr normal">上传凭证</view>
<view class="sm muted ml20">(请上传快递单号凭证</view>
</view>
<view class="upload">
<uploader :deletable="true" @delete="handleImage" preview-size="160rpx" max-count="1" :file-list="fileList" @after-read="afterRead" />
</view>
</view>
<view class="submit-btn">
<button size="lg" class=" br60 bg-primary white lg" form-type="submit">提交</button>
</view>
</form>
</view>
</template>
<script>
// +----------------------------------------------------------------------
// | likeshop开源商城系统
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | gitee下载:https://gitee.com/likeshop_gitee
// | github下载:https://github.com/likeshop-github
// | 访问官网:https://www.likeshop.cn
// | 访问社区:https://home.likeshop.cn
// | 访问手册:http://doc.likeshop.cn
// | 微信公众号:likeshop技术社区
// | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
// | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
// | 禁止对系统程序代码以任何目的,任何形式的再发布
// | likeshop团队版权所有并拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeshop.cn.team
// +----------------------------------------------------------------------
import { inputExpressInfo } from '@/api/user';
import { baseURL } from '@/config/app.js';
export default {
data() {
return {
fileList: [],
formInfo: {
express: '',
number: '',
remark: ''
}
};
},
components: {
},
props: {},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
let {
id
} = options; // 售后id
this.afterSalesId = id;
},
methods: {
afterRead(e) {
const file = e
uni.showLoading({
title: '正在上传中...',
mask: true
});
file.forEach(item => {
this.uploadFile(item.path).then(res => {
uni.hideLoading();
this.fileList.push(res);
});
})
},
formSubmit(e) {
let {
value
} = e.detail;
let {
fileList
} = this;
console.log(value);
if (!value.express) return this.$toast({
title: '请填写物流公司名称'
});
if (!value.number) return this.$toast({
title: '请填写快递单号'
});
let data = {
id: this.afterSalesId,
express_name: value.express,
invoice_no: value.number,
express_remark: value.remark,
express_image: fileList.length <= 0 ? '' : fileList[0].url
};
this.inputExpressInfoFun(data);
},
uploadFile(path) {
return new Promise(resolve => {
uni.uploadFile({
url: `${baseURL}/api/file/formimage`,
filePath: path,
name: 'file',
fileType: 'image',
cloudPath: '',
success: res => {
console.log('uploadFile res ==> ', res)
const {
fileList
} = this;
let data = JSON.parse(res.data);
if (data.code == 1) {
resolve(data.data);
}
},
fail: (err) => {
console.log(err)
}
});
});
},
inputExpressInfoFun(data) {
inputExpressInfo(data).then(res => {
if (res.code == 1) {
this.$toast({
title: '提交成功'
}, () => {
uni.navigateBack();
});
uni.$emit("refreshsale")
}
});
},
handleImage(index) {
this.fileList.splice(index)
}
}
};
</script>
<style>
/* pages/input_express_info/input_express_info.wxss */
.input-express-info {
}
.input-contain {
background-color: white;
}
.input-contain .input-item {
padding: 24rpx;
}
.input-item .label{
width: 152rpx;
}
.input-item .input {
flex: 1;
}
.upload-contain {
background-color: white;
padding: 24rpx 20rpx 44rpx;
}
.upload-contain .header {
margin-bottom: 30rpx;
}
.submit-btn {
margin-top: 50rpx;
margin-left: 26rpx;
margin-right: 26rpx;
}
</style>