This commit is contained in:
郭鸿轩 2023-05-12 11:35:54 +08:00
parent 97f84ec637
commit 05d1af4837
1521 changed files with 169822 additions and 0 deletions

8
.eslintignore Normal file
View File

@ -0,0 +1,8 @@
/node_modules
/build
/key
/dist
project.*.json
*.lock
*.log
iconfont/

15
.eslintrc Normal file
View File

@ -0,0 +1,15 @@
{
"extends": ["taro/react", "@aaronghx/eslint-config-react"],
"rules": {
"no-console": "off",
"@typescript-eslint/no-shadow": "off",
"@typescript-eslint/no-unused-vars": "off",
"eqeqeq": "off",
"no-prototype-builtins": "off",
"import/first": "off",
"react/no-children-prop": "off",
"import/no-commonjs": "off",
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": "off"
}
}

8
.gitignore vendored Normal file
View File

@ -0,0 +1,8 @@
dist/
build/
deploy_versions/
.temp/
.rn_temp/
node_modules/
.DS_Store
.swc/

10
.prettierrc Normal file
View File

@ -0,0 +1,10 @@
{
"printWidth": 160,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"jsxBracketSameLine": true,
"trailingComma": "all"
}

39
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,39 @@
{
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"eslint.validate": ["javascript", "typescript", "javascriptreact", "typescriptreact", "vue", "html", "markdown", "json", "jsonc", "json5"],
// Set the default
"editor.formatOnSave": true,
// Enable per-language
"[javascript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescript]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[typescriptreact]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[javascriptreact]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
},
"[css]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[scss]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}

1
README.md Normal file
View File

@ -0,0 +1 @@
# 阿里图标库 iconfont 使用 Symbol 我们使用了 [taro-iconfont-svg](https://github.com/HongxuanG/taro-iconfont-svg) 这个库

13
babel.config.js Normal file
View File

@ -0,0 +1,13 @@
// babel-preset-taro 更多选项和默认值:
// https://github.com/NervJS/taro/blob/next/packages/babel-preset-taro/README.md
module.exports = {
presets: [
[
'taro',
{
framework: 'react',
ts: true,
},
],
],
}

51
config/dev.js Normal file
View File

@ -0,0 +1,51 @@
const path = require('path')
module.exports = {
env: {
NODE_ENV: '"development"',
},
defineConstants: {
CURRENT_BASE_URL: '"https://test.zzfzyc.com/lymarket"',
CURRENT_CAP_HTML_TO_IMAGE_BASE_URL: '"https://test.zzfzyc.com"',
CURRENT_PAY_H5_CODE_URL: '"https://test.zzfzyc.com/cashier"',
CURRENT_IMG_CND_Prefix: '"https://test.cdn.zzfzyc.com"',
},
mini: {
// optimizeMainPackage: {
// enable: true
// },
webpackChain: (chain, webpack) => {
chain.merge({
plugin: {
install: {
plugin: require('terser-webpack-plugin'),
args: [
{
terserOptions: {
compress: false, // 默认使用terser压缩
// compress: {
// drop_console: true, // 去掉打印
// }, // 默认使用terser压缩
// mangle: false,
keep_classnames: true, // 不改变class名称
keep_fnames: true, // 不改变函数名称
},
},
],
},
},
})
},
},
h5: {},
alias: {
'@': path.resolve(__dirname, '..', 'src'),
},
sass: {
resource: [path.resolve(__dirname, '..', 'src/styles/common.scss'), path.resolve(__dirname, '..', 'src/styles/iconfont.scss')],
},
// plugins: [
// '@tarojs/plugin-react-devtools'
// ],
}

139
config/index.js Normal file
View File

@ -0,0 +1,139 @@
const path = require('path')
const childProcess = require('child_process')
const versions
= childProcess.execSync('git rev-parse --abbrev-ref HEAD', {
encoding: 'utf8',
}) != 'HEAD\n'
? childProcess.execSync('git rev-parse --abbrev-ref HEAD', {
encoding: 'utf8',
})
: childProcess.execSync('git describe --tags --abbrev=0', {
encoding: 'utf8',
})
const CURRENT_GITHASH = childProcess.execSync('git rev-parse --short HEAD', {
encoding: 'utf8',
})
const CURRENT_VERSION = `Version: ${JSON.stringify(process.env.CODE_BRANCH || versions)} ${CURRENT_GITHASH} ${new Date().toLocaleString()}`.replace(
/\"|\\n/g,
'',
)
const config = {
appid: 'wx64fe67f111d52457', // 测试/体验环境
projectName: 'SpiderSteward',
date: '2022-4-6',
designWidth: 750,
deviceRatio: {
640: 2.34 / 2,
750: 1,
828: 1.81 / 2,
},
sourceRoot: 'src',
outputRoot: 'dist',
defineConstants: {
CURRENT_VERSION: JSON.stringify(CURRENT_VERSION),
CURRENT_GITHASH: JSON.stringify(CURRENT_GITHASH),
CURRENT_ENV: JSON.stringify(process.env.NODE_ENV),
},
copy: {
patterns: [],
options: {},
},
framework: 'react',
mini: {
postcss: {
pxtransform: {
enable: true,
config: {
onePxTransform: false,
},
},
url: {
enable: true,
config: {
limit: 1024, // 设定转换尺寸上限
},
},
cssModules: {
enable: true, // 默认为 false如需使用 css modules 功能,则设为 true
config: {
namingPattern: 'module', // 转换模式,取值为 global/module
generateScopedName: '[name]__[local]___[hash:base64:5]',
},
},
},
enableSourceMap: true, // 默认值watch 模式下为 true否则为 false。 用于控制是否生成 js、css 对应的 sourceMap。
},
h5: {
router: {
mode: 'hash',
},
// 设置代理服务器转发
// devServer: {
// proxy: {
// '/mp/': {
// target: Domain,
// pathRewrite: {
// '^/mp/': '' // 所以带有/api/请求的链接一律替换为空并追加域名请求
// },
// changeOrigin: true
// }
// }
// }
// },
output: {
filename: 'js/[name].[hash].js',
chunkFilename: 'js/[name].[chunkhash].js',
},
imageUrlLoaderOption: {
limit: 5000,
name: 'static/images/[name].[hash].[ext]',
},
miniCssExtractPluginOption: {
filename: 'css/[name].[hash].css',
chunkFilename: 'css/[name].[chunkhash].css',
},
devServer: {
https: true,
},
publicPath: '/',
staticDirectory: 'static',
postcss: {
autoprefixer: {
enable: true,
config: {},
},
cssModules: {
enable: true, // 默认为 false如需使用 css modules 功能,则设为 true
config: {
namingPattern: 'module', // 转换模式,取值为 global/module
generateScopedName: '[name]__[local]___[hash:base64:5]',
},
},
},
},
compiler: {
type: 'webpack5',
// 依赖预编译配置
prebundle: {
enable: false,
timings: true,
},
},
// 持久化缓存配置
cache: {
enable: true,
},
plugins: [['@tarojs/plugin-framework-react', { reactMode: 'concurrent' }]],
}
module.exports = function(merge) {
if (process.env.NODE_ENV === 'development') {
return merge({}, config, require('./dev'))
}
if (process.env.NODE_ENV === 'pre') {
return merge({}, config, require('./pre'))
}
return merge({}, config, require('./prod'))
}

47
config/pre.js Normal file
View File

@ -0,0 +1,47 @@
const path = require('path')
module.exports = {
env: {
NODE_ENV: '"pre"',
},
defineConstants: {
CURRENT_BASE_URL: '"https://pre.zzfzyc.com/lymarket"',
CURRENT_CAP_HTML_TO_IMAGE_BASE_URL: '"https://pre.zzfzyc.com"',
CURRENT_PAY_H5_CODE_URL: '"https://pre.zzfzyc.com/cashier"',
CURRENT_IMG_CND_Prefix: '"https://test.cdn.zzfzyc.com"',
},
mini: {
optimizeMainPackage: {
enable: true,
},
webpackChain: (chain, webpack) => {
chain.merge({
plugin: {
install: {
plugin: require('terser-webpack-plugin'),
args: [
{
terserOptions: {
// compress: true, // 默认使用terser压缩
compress: {
drop_console: false, // 去掉打印
}, // 默认使用terser压缩
// mangle: false,
keep_classnames: true, // 不改变class名称
keep_fnames: true, // 不改变函数名称
},
},
],
},
},
})
},
},
h5: {},
alias: {
'@': path.resolve(__dirname, '..', 'src'),
},
sass: {
resource: [path.resolve(__dirname, '..', 'src/styles/common.scss')],
},
}

56
config/prod.js Normal file
View File

@ -0,0 +1,56 @@
const path = require('path')
module.exports = {
env: {
NODE_ENV: '"production"',
},
defineConstants: {
CURRENT_BASE_URL: '"https://www.zzfzyc.com/lymarket"',
CURRENT_CAP_HTML_TO_IMAGE_BASE_URL: '"https://www.zzfzyc.com"',
CURRENT_PAY_H5_CODE_URL: '"https://www.zzfzyc.com/cashier"',
CURRENT_IMG_CND_Prefix: '"https://cdn.zzfzyc.com"',
},
mini: {
optimizeMainPackage: {
enable: false,
},
webpackChain: (chain, webpack) => {
chain.merge({
plugin: {
install: {
plugin: require('terser-webpack-plugin'),
args: [
{
terserOptions: {
// compress: true, // 默认使用terser压缩
compress: {
drop_console: false, // 去掉打印
}, // 默认使用terser压缩
// mangle: false,
keep_classnames: true, // 不改变class名称
keep_fnames: true, // 不改变函数名称
},
},
],
},
},
})
},
},
h5: {
/**
* 如果h5端编译后体积过大可以使用webpack-bundle-analyzer插件对打包体积进行分析
* 参考代码如下
* webpackChain (chain) {
* chain.plugin('analyzer')
* .use(require('webpack-bundle-analyzer').BundleAnalyzerPlugin, [])
* }
*/
},
alias: {
'@': path.resolve(__dirname, '..', 'src'),
},
sass: {
resource: path.resolve(__dirname, '..', 'src/styles/common.scss'),
},
}

2
dist/app.js vendored Normal file

File diff suppressed because one or more lines are too long

87
dist/app.js.LICENSE.txt vendored Normal file
View File

@ -0,0 +1,87 @@
/*! ../constants/common */
/*! ../constants/userInfo */
/*! ../node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./app.tsx */
/*! ./common/util */
/*! ./commonData */
/*! ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js */
/*! ./node_modules/@babel/runtime/helpers/esm/typeof.js */
/*! ./store */
/*! ./tabBar */
/*! ./userInfo */
/*! @/reducers */
/*! @/use/contextBlueTooth */
/*! @babel/runtime/helpers/esm/objectSpread2 */
/*! @tarojs/plugin-framework-react/dist/runtime */
/*! @tarojs/plugin-platform-weapp/dist/runtime */
/*! @tarojs/runtime */
/*! @tarojs/taro */
/*! react */
/*! react-dom */
/*! react-redux */
/*! react/jsx-runtime */
/*! redux */
/*! redux-logger */
/*! redux-thunk */
/*!*********************!*\
!*** ./src/app.tsx ***!
\*********************/
/*!****************************!*\
!*** ./src/store/index.ts ***!
\****************************/
/*!*******************************!*\
!*** ./src/reducers/index.ts ***!
\*******************************/
/*!*********************************!*\
!*** ./src/constants/common.ts ***!
\*********************************/
/*!**********************************!*\
!*** ./src/reducers/userInfo.ts ***!
\**********************************/
/*!************************************!*\
!*** ./src/reducers/commonData.ts ***!
\************************************/
/*!****************************************!*\
!*** ./node_modules/redux/es/redux.js ***!
\****************************************/
/*!**********************************************!*\
!*** ./node_modules/redux-thunk/es/index.js ***!
\**********************************************/
/*!********************************************************!*\
!*** ./node_modules/redux-logger/dist/redux-logger.js ***!
\********************************************************/
/*!******************************************************************************************!*\
!*** ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./src/app.tsx ***!
\******************************************************************************************/

1
dist/app.json vendored Normal file
View File

@ -0,0 +1 @@
{"pages":["pages/index/index","pages/order/index","pages/shopping/index","pages/user/index","pages/login/index"],"window":{"backgroundTextStyle":"light","navigationBarBackgroundColor":"#fff","navigationBarTitleText":"WeChat","navigationBarTextStyle":"black","backgroundColor":"#ffffff"},"tabBar":{"custom":true,"list":[{"pagePath":"pages/index/index","text":"首页"},{"pagePath":"pages/shopping/index","text":"购物"},{"pagePath":"pages/order/index","text":"订单"},{"pagePath":"pages/user/index","text":"我的"}],"color":"#707070","selectedColor":"#2680EB","backgroundColor":"#fff","borderStyle":"white"},"usingComponents":{"custom-wrapper":"/custom-wrapper"},"subPackages":[{"root":"pages/orderWarningAnalysis","pages":["index","orderWarningAnalysisDetail/index"]},{"root":"pages/wareHousePage","pages":["index"]},{"root":"pages/clauseDetail","pages":["index"]},{"root":"pages/sampleCutting","pages":["index","addSampleCutting/index","sampleCuttingList/index","sampleCuttingDetail/index"]},{"root":"pages/getColorCard","pages":["index","addColorCard/index","colorCardList/index","colorCardDetail/index"]},{"root":"pages/inviteCode","pages":["index"]},{"root":"pages/saleStatistic","pages":["index"]},{"root":"pages/takeDelivery","pages":["index"]},{"root":"pages/takeDeliveryDetail","pages":["index"]},{"root":"pages/delivery","pages":["index"]},{"root":"pages/deliveryDetail","pages":["index"]},{"root":"pages/colorRelated","pages":["sampleComparison/index","takeColor/index","findColor/index"]},{"root":"pages/addAddress","pages":["index"]},{"root":"pages/addressManager","pages":["index"]},{"root":"pages/customerPage","pages":["index"]},{"root":"pages/orderDetails","pages":["index"]},{"root":"pages/saleuserPage","pages":["index"]},{"root":"pages/searchPage","pages":["index"]},{"root":"pages/submitOrder","pages":["index"]},{"root":"pages/refundPage","pages":["index"]},{"root":"pages/refundDetail","pages":["index"]},{"root":"pages/refundMoneyDetail","pages":["index"]},{"root":"pages/applyGoods","pages":["index"]},{"root":"pages/applyMoney","pages":["index"]},{"root":"pages/newCollection","pages":["index"]},{"root":"pages/addCollection","pages":["index"]},{"root":"pages/accountPage","pages":["index"]},{"root":"pages/collectionDetail","pages":["index"]},{"root":"pages/customerManagement","pages":["index"]},{"root":"pages/customerDetails","pages":["index"]},{"root":"pages/customerEditor","pages":["index"]},{"root":"pages/orderEdit","pages":["index"]},{"root":"pages/addFabric","pages":["index"]}]}

617
dist/app.wxss vendored Normal file
View File

@ -0,0 +1,617 @@
/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[2].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[2].use[4]!./src/app.scss ***!
\************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.common_safe_area_y {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.flex-col {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.flex-row {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.justify-between {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.justify-center {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.items-center {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.flex-item {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.full-100 {
width: 100%;
height: 100%;
}
.color-blue {
color: #3287EC;
}
.color-yellow {
color: #FF9100;
}
.color-green {
color: #00B837;
}
.color-grey {
color: #707070;
}
.color-white {
color: white;
}
.s-w::after {
content: "W";
font-size: 28rpx;
}
.s-e::after {
content: "E";
font-size: 28rpx;
}
.filter {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-shouhou1:before {
content: "\e641";
}
.icon-cangku1:before {
content: "\e642";
}
.icon-saoma:before {
content: "\e643";
}
.icon-dizhi1:before {
content: "\e644";
}
.icon-huodaofukuan:before {
content: "\e645";
}
.icon-yufukuan1:before {
content: "\e646";
}
.icon-yue:before {
content: "\e647";
}
.icon-zidingyi:before {
content: "\e648";
}
.icon-jinetiaozheng:before {
content: "\e649";
}
.icon-tuikuan1:before {
content: "\e64a";
}
.icon-zhankai:before {
content: "\e63f";
}
.icon-shouqi:before {
content: "\e640";
}
.icon-lujing:before {
content: "\e63e";
}
.icon-jizhumima:before {
content: "\e63c";
}
.icon-a-jizhumima:before {
content: "\e63d";
}
.icon-weixindenglu:before {
content: "\e63b";
}
.icon-kehuxinxi:before {
content: "\e63a";
}
.icon-yewuyuanqizi:before {
content: "\e639";
}
.icon-chakanquanbukehu:before {
content: "\e638";
}
.icon-biyan:before {
content: "\e637";
}
.icon-bianji:before {
content: "\e61e";
}
.icon-daikuan:before {
content: "\e61f";
}
.icon-cangku:before {
content: "\e620";
}
.icon-guanlidingdan:before {
content: "\e621";
}
.icon-mima:before {
content: "\e622";
}
.icon-guanbi:before {
content: "\e623";
}
.icon-jianshao:before {
content: "\e624";
}
.icon-dingwei:before {
content: "\e625";
}
.icon-saomiao:before {
content: "\e626";
}
.icon-peihuo:before {
content: "\e627";
}
.icon-shaixuan:before {
content: "\e628";
}
.icon-paiming:before {
content: "\e629";
}
.icon-shanchusousuoxinxi:before {
content: "\e62a";
}
.icon-shijian:before {
content: "\e62b";
}
.icon-sousuo:before {
content: "\e62c";
}
.icon-shouhou:before {
content: "\e62d";
}
.icon-sousuofanhui:before {
content: "\e62e";
}
.icon-sousuoshanchu:before {
content: "\e62f";
}
.icon-tuikuan:before {
content: "\e630";
}
.icon-tishi:before {
content: "\e631";
}
.icon-xianxiahuizong:before {
content: "\e632";
}
.icon-xinzeng:before {
content: "\e633";
}
.icon-yonghuming:before {
content: "\e634";
}
.icon-yanjing:before {
content: "\e635";
}
.icon-yufukuan:before {
content: "\e636";
}
.icon-wodekefu:before {
content: "\e60c";
}
.icon-dizhi:before {
content: "\e60d";
}
.icon-shouhouzhongxin:before {
content: "\e60e";
}
.icon-wodeshoucang:before {
content: "\e60f";
}
.icon-shoukuanliebiao:before {
content: "\e610";
}
.icon-madanguanli:before {
content: "\e611";
}
.icon-qusechazhao:before {
content: "\e612";
}
.icon-pandiansaoma:before {
content: "\e613";
}
.icon-yaoqingma:before {
content: "\e614";
}
.icon-duizhang:before {
content: "\e615";
}
.icon-tihuoliebiao:before {
content: "\e616";
}
.icon-yangpinduibi:before {
content: "\e617";
}
.icon-yansequyang:before {
content: "\e618";
}
.icon-fahuoliebiao:before {
content: "\e619";
}
.icon-yuncangkucun:before {
content: "\e61a";
}
.icon-xiaoshou:before {
content: "\e61b";
}
.icon-qianzhicangkucun:before {
content: "\e61c";
}
.icon-lingquseka:before {
content: "\e61d";
}
.icon-gouwu1:before {
content: "\e608";
}
.icon-dingdan1:before {
content: "\e609";
}
.icon-gerenzhongxin1:before {
content: "\e60a";
}
.icon-shouye1:before {
content: "\e60b";
}
.icon-gerenzhongxin:before {
content: "\e604";
}
.icon-dingdan:before {
content: "\e605";
}
.icon-shouye:before {
content: "\e606";
}
.icon-gouwu:before {
content: "\e607";
}
.common_safe_area_y {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.flex-col {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.flex-row {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.justify-between {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.justify-center {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.items-center {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.flex-item {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.full-100 {
width: 100%;
height: 100%;
}
.color-blue {
color: #3287EC;
}
.color-yellow {
color: #FF9100;
}
.color-green {
color: #00B837;
}
.color-grey {
color: #707070;
}
.color-white {
color: white;
}
.s-w::after {
content: "W";
font-size: 28rpx;
}
.s-e::after {
content: "E";
font-size: 28rpx;
}
.filter {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-shouhou1:before {
content: "\e641";
}
.icon-cangku1:before {
content: "\e642";
}
.icon-saoma:before {
content: "\e643";
}
.icon-dizhi1:before {
content: "\e644";
}
.icon-huodaofukuan:before {
content: "\e645";
}
.icon-yufukuan1:before {
content: "\e646";
}
.icon-yue:before {
content: "\e647";
}
.icon-zidingyi:before {
content: "\e648";
}
.icon-jinetiaozheng:before {
content: "\e649";
}
.icon-tuikuan1:before {
content: "\e64a";
}
.icon-zhankai:before {
content: "\e63f";
}
.icon-shouqi:before {
content: "\e640";
}
.icon-lujing:before {
content: "\e63e";
}
.icon-jizhumima:before {
content: "\e63c";
}
.icon-a-jizhumima:before {
content: "\e63d";
}
.icon-weixindenglu:before {
content: "\e63b";
}
.icon-kehuxinxi:before {
content: "\e63a";
}
.icon-yewuyuanqizi:before {
content: "\e639";
}
.icon-chakanquanbukehu:before {
content: "\e638";
}
.icon-biyan:before {
content: "\e637";
}
.icon-bianji:before {
content: "\e61e";
}
.icon-daikuan:before {
content: "\e61f";
}
.icon-cangku:before {
content: "\e620";
}
.icon-guanlidingdan:before {
content: "\e621";
}
.icon-mima:before {
content: "\e622";
}
.icon-guanbi:before {
content: "\e623";
}
.icon-jianshao:before {
content: "\e624";
}
.icon-dingwei:before {
content: "\e625";
}
.icon-saomiao:before {
content: "\e626";
}
.icon-peihuo:before {
content: "\e627";
}
.icon-shaixuan:before {
content: "\e628";
}
.icon-paiming:before {
content: "\e629";
}
.icon-shanchusousuoxinxi:before {
content: "\e62a";
}
.icon-shijian:before {
content: "\e62b";
}
.icon-sousuo:before {
content: "\e62c";
}
.icon-shouhou:before {
content: "\e62d";
}
.icon-sousuofanhui:before {
content: "\e62e";
}
.icon-sousuoshanchu:before {
content: "\e62f";
}
.icon-tuikuan:before {
content: "\e630";
}
.icon-tishi:before {
content: "\e631";
}
.icon-xianxiahuizong:before {
content: "\e632";
}
.icon-xinzeng:before {
content: "\e633";
}
.icon-yonghuming:before {
content: "\e634";
}
.icon-yanjing:before {
content: "\e635";
}
.icon-yufukuan:before {
content: "\e636";
}
.icon-wodekefu:before {
content: "\e60c";
}
.icon-dizhi:before {
content: "\e60d";
}
.icon-shouhouzhongxin:before {
content: "\e60e";
}
.icon-wodeshoucang:before {
content: "\e60f";
}
.icon-shoukuanliebiao:before {
content: "\e610";
}
.icon-madanguanli:before {
content: "\e611";
}
.icon-qusechazhao:before {
content: "\e612";
}
.icon-pandiansaoma:before {
content: "\e613";
}
.icon-yaoqingma:before {
content: "\e614";
}
.icon-duizhang:before {
content: "\e615";
}
.icon-tihuoliebiao:before {
content: "\e616";
}
.icon-yangpinduibi:before {
content: "\e617";
}
.icon-yansequyang:before {
content: "\e618";
}
.icon-fahuoliebiao:before {
content: "\e619";
}
.icon-yuncangkucun:before {
content: "\e61a";
}
.icon-xiaoshou:before {
content: "\e61b";
}
.icon-qianzhicangkucun:before {
content: "\e61c";
}
.icon-lingquseka:before {
content: "\e61d";
}
.icon-gouwu1:before {
content: "\e608";
}
.icon-dingdan1:before {
content: "\e609";
}
.icon-gerenzhongxin1:before {
content: "\e60a";
}
.icon-shouye1:before {
content: "\e60b";
}
.icon-gerenzhongxin:before {
content: "\e604";
}
.icon-dingdan:before {
content: "\e605";
}
.icon-shouye:before {
content: "\e606";
}
.icon-gouwu:before {
content: "\e607";
}
/**
由于Cover-view标签并不支持iconfont 所以需要把 .ttf 转成 base64 之后得到的 stylesheet.css 文件覆盖掉 iconfont.css 里的 @font-face 即可
[转换工具](https://transfonter.org/)
[教程](https://blog.csdn.net/VoidLuffy/article/details/123530341)
[相关说明](https://developers.weixin.qq.com/community/develop/doc/000a60f7d58a982f08d7ddfc456000)
*/
page {
height: calc(100% - 100rpx - constant(safe-area-inset-bottom));
height: calc(100% - 100rpx - env(safe-area-inset-bottom));
background-color: #f7f7f7;
}
@import "./common.wxss";

1098
dist/base.wxml vendored Normal file

File diff suppressed because it is too large Load Diff

2
dist/common.js vendored Normal file

File diff suppressed because one or more lines are too long

511
dist/common.js.LICENSE.txt vendored Normal file
View File

@ -0,0 +1,511 @@
/*! ../Divider */
/*! ../InputX */
/*! ../InputX/index */
/*! ../LabAndImgShow */
/*! ../constant */
/*! ../constants/tabbar */
/*! ../empty/index.module.scss */
/*! ../iconfont/iconfont */
/*! ../infiniteScroll */
/*! ../loading */
/*! ../loadingCard */
/*! ../normalButton */
/*! ./BaseEnum/index */
/*! ./constant */
/*! ./delivery/index */
/*! ./enum */
/*! ./findColor */
/*! ./format */
/*! ./goodsItem/index */
/*! ./index.module.scss */
/*! ./inviteCode/index */
/*! ./login */
/*! ./login/index */
/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */
/*! ./node_modules/@babel/runtime/helpers/esm/classCallCheck.js */
/*! ./node_modules/@babel/runtime/helpers/esm/createClass.js */
/*! ./node_modules/@babel/runtime/helpers/esm/defineProperty.js */
/*! ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js */
/*! ./node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js */
/*! ./node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js */
/*! ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js */
/*! ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js */
/*! ./product */
/*! ./product/index */
/*! ./saleStatistic */
/*! ./shopping/index */
/*! ./shortCode */
/*! ./statistic/index */
/*! ./takeColor */
/*! ./takeDelivery */
/*! ./takeDelivery/index */
/*! ./useLoginRequest */
/*! ./useUserInfo */
/*! ./utils */
/*! @/api/index */
/*! @/api/order */
/*! @/common/Enumerate */
/*! @/common/Enumerate/BaseEnum */
/*! @/common/bluetooth/command */
/*! @/common/bluetooth/utils */
/*! @/common/common */
/*! @/common/constant */
/*! @/common/format */
/*! @/common/util */
/*! @/components/LabAndImg */
/*! @/components/closeBtn */
/*! @/components/counter */
/*! @/components/dotLoading */
/*! @/components/empty */
/*! @/components/iconfont/iconfont */
/*! @/components/loading */
/*! @/components/popup */
/*! @/components/search */
/*! @/constants/tabbar */
/*! @/constants/userInfo */
/*! @/reducers/hooks */
/*! @/use/useCheckAuthorize */
/*! @/use/useCommon */
/*! @/use/useHttp */
/*! @tarojs/components */
/*! @tarojs/taro */
/*! big.js */
/*! classnames */
/*! dayjs */
/*! qs */
/*! react */
/*! react-redux */
/*! react/jsx-runtime */
/*!**************************!*\
!*** ./src/api/index.ts ***!
\**************************/
/*!**************************!*\
!*** ./src/api/order.ts ***!
\**************************/
/*!****************************!*\
!*** ./src/common/util.ts ***!
\****************************/
/*!****************************!*\
!*** ./src/use/useHttp.ts ***!
\****************************/
/*!******************************!*\
!*** ./src/common/common.ts ***!
\******************************/
/*!******************************!*\
!*** ./src/common/format.js ***!
\******************************/
/*!******************************!*\
!*** ./src/use/useCommon.ts ***!
\******************************/
/*!*******************************!*\
!*** ./src/reducers/hooks.ts ***!
\*******************************/
/*!********************************!*\
!*** ./src/api/login/index.ts ***!
\********************************/
/*!********************************!*\
!*** ./src/api/login/login.ts ***!
\********************************/
/*!********************************!*\
!*** ./src/common/constant.ts ***!
\********************************/
/*!********************************!*\
!*** ./src/reducers/tabBar.ts ***!
\********************************/
/*!********************************!*\
!*** ./src/use/useUserInfo.ts ***!
\********************************/
/*!********************************!*\
!*** ./util.inspect (ignored) ***!
\********************************/
/*!*********************************!*\
!*** ./src/constants/tabbar.ts ***!
\*********************************/
/*!**********************************!*\
!*** ./src/api/product/index.ts ***!
\**********************************/
/*!***********************************!*\
!*** ./src/api/delivery/index.ts ***!
\***********************************/
/*!***********************************!*\
!*** ./src/api/shopping/index.ts ***!
\***********************************/
/*!***********************************!*\
!*** ./src/api/statistic/enum.ts ***!
\***********************************/
/*!***********************************!*\
!*** ./src/constants/userInfo.ts ***!
\***********************************/
/*!************************************!*\
!*** ./src/api/product/product.ts ***!
\************************************/
/*!************************************!*\
!*** ./src/api/statistic/index.ts ***!
\************************************/
/*!************************************!*\
!*** ./src/use/useLoginRequest.ts ***!
\************************************/
/*!*************************************!*\
!*** ./src/api/inviteCode/index.ts ***!
\*************************************/
/*!**************************************!*\
!*** ./src/api/product/findColor.ts ***!
\**************************************/
/*!**************************************!*\
!*** ./src/api/product/takeColor.ts ***!
\**************************************/
/*!**************************************!*\
!*** ./src/api/takeDelivery/enum.ts ***!
\**************************************/
/*!**************************************!*\
!*** ./src/components/tag/index.tsx ***!
\**************************************/
/*!**************************************!*\
!*** ./src/use/contextBlueTooth.tsx ***!
\**************************************/
/*!***************************************!*\
!*** ./src/api/takeDelivery/index.ts ***!
\***************************************/
/*!***************************************!*\
!*** ./src/common/Enumerate/index.ts ***!
\***************************************/
/*!***************************************!*\
!*** ./src/common/bluetooth/utils.js ***!
\***************************************/
/*!***************************************!*\
!*** ./src/common/shortCode/index.js ***!
\***************************************/
/*!***************************************!*\
!*** ./src/use/useCheckAuthorize.tsx ***!
\***************************************/
/*!****************************************!*\
!*** ./src/components/empty/index.tsx ***!
\****************************************/
/*!****************************************!*\
!*** ./src/components/popup/index.tsx ***!
\****************************************/
/*!*****************************************!*\
!*** ./src/common/bluetooth/command.js ***!
\*****************************************/
/*!*****************************************!*\
!*** ./src/components/InputX/index.tsx ***!
\*****************************************/
/*!*****************************************!*\
!*** ./src/components/search/index.tsx ***!
\*****************************************/
/*!******************************************!*\
!*** ./src/components/Divider/index.tsx ***!
\******************************************/
/*!******************************************!*\
!*** ./src/components/counter/index.tsx ***!
\******************************************/
/*!******************************************!*\
!*** ./src/components/loading/index.tsx ***!
\******************************************/
/*!*******************************************!*\
!*** ./src/components/checkbox/index.tsx ***!
\*******************************************/
/*!*******************************************!*\
!*** ./src/components/closeBtn/index.tsx ***!
\*******************************************/
/*!*******************************************!*\
!*** ./src/components/iconCard/index.tsx ***!
\*******************************************/
/*!*******************************************!*\
!*** ./src/components/iconText/index.tsx ***!
\*******************************************/
/*!********************************************!*\
!*** ./src/api/statistic/saleStatistic.ts ***!
\********************************************/
/*!********************************************!*\
!*** ./src/components/LabAndImg/index.tsx ***!
\********************************************/
/*!*********************************************!*\
!*** ./src/components/BottomBtns/index.tsx ***!
\*********************************************/
/*!*********************************************!*\
!*** ./src/components/dotLoading/index.tsx ***!
\*********************************************/
/*!**********************************************!*\
!*** ./src/api/takeDelivery/takeDelivery.ts ***!
\**********************************************/
/*!**********************************************!*\
!*** ./src/components/iconfont/iconfont.tsx ***!
\**********************************************/
/*!**********************************************!*\
!*** ./src/components/layoutBlock/index.tsx ***!
\**********************************************/
/*!**********************************************!*\
!*** ./src/components/loadingCard/index.tsx ***!
\**********************************************/
/*!**********************************************!*\
!*** ./src/components/tag/index.module.scss ***!
\**********************************************/
/*!***********************************************!*\
!*** ./src/components/normalButton/index.tsx ***!
\***********************************************/
/*!***********************************************!*\
!*** ./src/components/shoppingCart/index.tsx ***!
\***********************************************/
/*!************************************************!*\
!*** ./src/common/Enumerate/BaseEnum/index.ts ***!
\************************************************/
/*!************************************************!*\
!*** ./src/components/LabAndImgShow/index.tsx ***!
\************************************************/
/*!************************************************!*\
!*** ./src/components/empty/index.module.scss ***!
\************************************************/
/*!************************************************!*\
!*** ./src/components/popup/index.module.scss ***!
\************************************************/
/*!*************************************************!*\
!*** ./src/components/infiniteScroll/index.tsx ***!
\*************************************************/
/*!*************************************************!*\
!*** ./src/components/search/index.module.scss ***!
\*************************************************/
/*!**************************************************!*\
!*** ./src/components/Divider/index.module.scss ***!
\**************************************************/
/*!**************************************************!*\
!*** ./src/components/counter/index.module.scss ***!
\**************************************************/
/*!**************************************************!*\
!*** ./src/components/loading/index.module.scss ***!
\**************************************************/
/*!***************************************************!*\
!*** ./src/components/checkbox/index.module.scss ***!
\***************************************************/
/*!***************************************************!*\
!*** ./src/components/closeBtn/index.module.scss ***!
\***************************************************/
/*!***************************************************!*\
!*** ./src/components/iconCard/index.module.scss ***!
\***************************************************/
/*!***************************************************!*\
!*** ./src/components/iconText/index.module.scss ***!
\***************************************************/
/*!****************************************************!*\
!*** ./src/components/LabAndImg/index.module.scss ***!
\****************************************************/
/*!*****************************************************!*\
!*** ./src/components/BottomBtns/index.module.scss ***!
\*****************************************************/
/*!*****************************************************!*\
!*** ./src/components/dotLoading/index.module.scss ***!
\*****************************************************/
/*!*****************************************************!*\
!*** ./src/pages/order/components/NavBar/index.tsx ***!
\*****************************************************/
/*!******************************************************!*\
!*** ./src/components/layoutBlock/index.module.scss ***!
\******************************************************/
/*!******************************************************!*\
!*** ./src/components/loadingCard/index.module.scss ***!
\******************************************************/
/*!*******************************************************!*\
!*** ./src/components/normalButton/index.module.scss ***!
\*******************************************************/
/*!*******************************************************!*\
!*** ./src/components/shoppingCart/index.module.scss ***!
\*******************************************************/
/*!*******************************************************!*\
!*** ./src/pages/order/components/PayPopup/index.tsx ***!
\*******************************************************/
/*!********************************************************!*\
!*** ./src/components/LabAndImgShow/index.module.scss ***!
\********************************************************/
/*!*********************************************************!*\
!*** ./src/components/infiniteScroll/index.module.scss ***!
\*********************************************************/
/*!*********************************************************!*\
!*** ./src/components/shoppingCart/goodsItem/index.tsx ***!
\*********************************************************/
/*!*********************************************************!*\
!*** ./src/pages/order/components/offlinePay/index.tsx ***!
\*********************************************************/
/*!***********************************************************!*\
!*** ./src/pages/index/components/productClass/index.tsx ***!
\***********************************************************/
/*!*************************************************************!*\
!*** ./src/pages/order/components/NavBar/index.module.scss ***!
\*************************************************************/
/*!***************************************************************!*\
!*** ./src/pages/order/components/PayPopup/index.module.scss ***!
\***************************************************************/
/*!*****************************************************************!*\
!*** ./src/components/shoppingCart/goodsItem/index.module.scss ***!
\*****************************************************************/
/*!*****************************************************************!*\
!*** ./src/pages/order/components/offlinePay/index.module.scss ***!
\*****************************************************************/
/*!*******************************************************************!*\
!*** ./src/pages/index/components/productClass/index.module.scss ***!
\*******************************************************************/

9827
dist/common.wxss vendored Normal file

File diff suppressed because it is too large Load Diff

1
dist/comp.js vendored Normal file
View File

@ -0,0 +1 @@
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["comp"],{},function(n){var __webpack_exec__=function(e){return n(n.s=e)};n.O(0,["taro","vendors"],(function(){return __webpack_exec__("./node_modules/@tarojs/webpack5-runner/dist/template/comp.js")}));var e=n.O()}]);

1
dist/comp.json vendored Normal file
View File

@ -0,0 +1 @@
{"component":true,"usingComponents":{"comp":"./comp"},"custom-wrapper":"./custom-wrapper"}

2
dist/comp.wxml vendored Normal file
View File

@ -0,0 +1,2 @@
<import src="./base.wxml" />
<template is="tmpl_0_container" data="{{i:i,l:l}}" />

2
dist/custom-tab-bar/index.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,41 @@
/*! ../../node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./index.tsx */
/*! ./index.module.scss */
/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */
/*! ./node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js */
/*! @/common/util */
/*! @/components/iconfont/iconfont */
/*! @/constants/tabbar */
/*! @/reducers/hooks */
/*! @/use/useCommon */
/*! @tarojs/components */
/*! @tarojs/runtime */
/*! @tarojs/taro */
/*! classnames */
/*! react-redux */
/*! react/jsx-runtime */
/*!**************************************!*\
!*** ./src/custom-tab-bar/index.tsx ***!
\**************************************/
/*!**********************************************!*\
!*** ./src/custom-tab-bar/index.module.scss ***!
\**********************************************/
/*!***********************************************************************************************************!*\
!*** ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./src/custom-tab-bar/index.tsx ***!
\***********************************************************************************************************/

1
dist/custom-tab-bar/index.json vendored Normal file
View File

@ -0,0 +1 @@
{"component":true}

2
dist/custom-tab-bar/index.wxml vendored Normal file
View File

@ -0,0 +1,2 @@
<import src="../base.wxml"/>
<template is="taro_tmpl" data="{{root:root}}" />

363
dist/custom-tab-bar/index.wxss vendored Normal file
View File

@ -0,0 +1,363 @@
/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./src/custom-tab-bar/index.module.scss ***!
\************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.index-module__common_safe_area_y___eJgki {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.index-module__flex-col___kjj5l {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.index-module__flex-row___N3oCX {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.index-module__justify-between___rA7Bs {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__justify-center___NtI7q {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.index-module__items-center___fcbUJ {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__flex-item___wmB7d {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.index-module__full-100___Q4xu3 {
width: 100%;
height: 100%;
}
.index-module__color-blue___NplGb {
color: #3287EC;
}
.index-module__color-yellow___j7wtp {
color: #FF9100;
}
.index-module__color-green___X9kfh {
color: #00B837;
}
.index-module__color-grey___bk4wc {
color: #707070;
}
.index-module__color-white___fjpqR {
color: white;
}
.index-module__s-w___YZodh::after {
content: "W";
font-size: 28rpx;
}
.index-module__s-e___st4Yb::after {
content: "E";
font-size: 28rpx;
}
.index-module__filter___piVet {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.index-module__iconfont___YjACs {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.index-module__icon-shouhou1___ZIK7u:before {
content: "\e641";
}
.index-module__icon-cangku1___SjLUu:before {
content: "\e642";
}
.index-module__icon-saoma___oGYYd:before {
content: "\e643";
}
.index-module__icon-dizhi1___fc2a_:before {
content: "\e644";
}
.index-module__icon-huodaofukuan___Sm4Zc:before {
content: "\e645";
}
.index-module__icon-yufukuan1___LbX7Y:before {
content: "\e646";
}
.index-module__icon-yue___INSiz:before {
content: "\e647";
}
.index-module__icon-zidingyi___ndKXx:before {
content: "\e648";
}
.index-module__icon-jinetiaozheng___JGl8u:before {
content: "\e649";
}
.index-module__icon-tuikuan1___NblqP:before {
content: "\e64a";
}
.index-module__icon-zhankai___iQKnl:before {
content: "\e63f";
}
.index-module__icon-shouqi___Fmew0:before {
content: "\e640";
}
.index-module__icon-lujing___UsTmG:before {
content: "\e63e";
}
.index-module__icon-jizhumima___xr1jd:before {
content: "\e63c";
}
.index-module__icon-a-jizhumima___kKqQC:before {
content: "\e63d";
}
.index-module__icon-weixindenglu___Ba06c:before {
content: "\e63b";
}
.index-module__icon-kehuxinxi___AQOBa:before {
content: "\e63a";
}
.index-module__icon-yewuyuanqizi___cC9Px:before {
content: "\e639";
}
.index-module__icon-chakanquanbukehu___zqcSy:before {
content: "\e638";
}
.index-module__icon-biyan___DItgC:before {
content: "\e637";
}
.index-module__icon-bianji___URARD:before {
content: "\e61e";
}
.index-module__icon-daikuan___viVyJ:before {
content: "\e61f";
}
.index-module__icon-cangku___chZFT:before {
content: "\e620";
}
.index-module__icon-guanlidingdan___zfRFh:before {
content: "\e621";
}
.index-module__icon-mima___MmRII:before {
content: "\e622";
}
.index-module__icon-guanbi___UkQ4N:before {
content: "\e623";
}
.index-module__icon-jianshao___SGTtG:before {
content: "\e624";
}
.index-module__icon-dingwei___Jmylc:before {
content: "\e625";
}
.index-module__icon-saomiao___kXVTd:before {
content: "\e626";
}
.index-module__icon-peihuo___trGgD:before {
content: "\e627";
}
.index-module__icon-shaixuan___M2r3t:before {
content: "\e628";
}
.index-module__icon-paiming___joGSM:before {
content: "\e629";
}
.index-module__icon-shanchusousuoxinxi___TwTPX:before {
content: "\e62a";
}
.index-module__icon-shijian___WaM65:before {
content: "\e62b";
}
.index-module__icon-sousuo___FLnmM:before {
content: "\e62c";
}
.index-module__icon-shouhou___iH2ie:before {
content: "\e62d";
}
.index-module__icon-sousuofanhui___AVaNj:before {
content: "\e62e";
}
.index-module__icon-sousuoshanchu___MukG9:before {
content: "\e62f";
}
.index-module__icon-tuikuan___LwnKb:before {
content: "\e630";
}
.index-module__icon-tishi___BT5AA:before {
content: "\e631";
}
.index-module__icon-xianxiahuizong___BVcKq:before {
content: "\e632";
}
.index-module__icon-xinzeng___I1wMD:before {
content: "\e633";
}
.index-module__icon-yonghuming___YwHqK:before {
content: "\e634";
}
.index-module__icon-yanjing___Y9fLJ:before {
content: "\e635";
}
.index-module__icon-yufukuan___QK3u4:before {
content: "\e636";
}
.index-module__icon-wodekefu___xkjyz:before {
content: "\e60c";
}
.index-module__icon-dizhi___zne9v:before {
content: "\e60d";
}
.index-module__icon-shouhouzhongxin___blDC3:before {
content: "\e60e";
}
.index-module__icon-wodeshoucang___aMwT2:before {
content: "\e60f";
}
.index-module__icon-shoukuanliebiao___yy139:before {
content: "\e610";
}
.index-module__icon-madanguanli___eddM3:before {
content: "\e611";
}
.index-module__icon-qusechazhao___DmV4R:before {
content: "\e612";
}
.index-module__icon-pandiansaoma___i7xA2:before {
content: "\e613";
}
.index-module__icon-yaoqingma___kbiqs:before {
content: "\e614";
}
.index-module__icon-duizhang___KI61w:before {
content: "\e615";
}
.index-module__icon-tihuoliebiao___mdqtl:before {
content: "\e616";
}
.index-module__icon-yangpinduibi___jZIsY:before {
content: "\e617";
}
.index-module__icon-yansequyang___zVt3z:before {
content: "\e618";
}
.index-module__icon-fahuoliebiao___zUFay:before {
content: "\e619";
}
.index-module__icon-yuncangkucun___kk8Ow:before {
content: "\e61a";
}
.index-module__icon-xiaoshou___r9Kpk:before {
content: "\e61b";
}
.index-module__icon-qianzhicangkucun___yaYNS:before {
content: "\e61c";
}
.index-module__icon-lingquseka___f1XuC:before {
content: "\e61d";
}
.index-module__icon-gouwu1___NABeC:before {
content: "\e608";
}
.index-module__icon-dingdan1___KA3UA:before {
content: "\e609";
}
.index-module__icon-gerenzhongxin1___UmaD0:before {
content: "\e60a";
}
.index-module__icon-shouye1___jrnuQ:before {
content: "\e60b";
}
.index-module__icon-gerenzhongxin___FqbEd:before {
content: "\e604";
}
.index-module__icon-dingdan___tEvOT:before {
content: "\e605";
}
.index-module__icon-shouye___rauhI:before {
content: "\e606";
}
.index-module__icon-gouwu___WzApV:before {
content: "\e607";
}
.index-module__customTabBar___AIoAM {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
height: 100rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
padding-bottom: env(safe-area-inset-bottom);
background-color: #fff;
z-index: 98;
-webkit-box-shadow: 0 11rpx 7rpx 8rpx #c2c2c2;
box-shadow: 0 11rpx 7rpx 8rpx #c2c2c2;
}
.index-module__customTabBar-line___ClC6e {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 1px;
-webkit-transform: scaleY(0.5);
-ms-transform: scaleY(0.5);
transform: scaleY(0.5);
}
.index-module__customTabBar-item___Xo7Pa {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
text-align: center;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.index-module__customTabBar-item-icon___lq9zt {
width: 56rpx;
height: 56rpx;
font-size: 60rpx;
}
.index-module__customTabBar-item-title___ua8eB {
margin-top: 10rpx;
font-size: 20rpx;
}
.index-module__selected___pDY_D {
color: #4581ff;
font-weight: bold;
}

1
dist/custom-wrapper.js vendored Normal file
View File

@ -0,0 +1 @@
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["custom-wrapper"],{},function(r){var __webpack_exec__=function(e){return r(r.s=e)};r.O(0,["taro","vendors"],(function(){return __webpack_exec__("./node_modules/@tarojs/webpack5-runner/dist/template/custom-wrapper.js")}));var e=r.O()}]);

1
dist/custom-wrapper.json vendored Normal file
View File

@ -0,0 +1 @@
{"component":true,"usingComponents":{"comp":"./comp","custom-wrapper":"./custom-wrapper"}}

4
dist/custom-wrapper.wxml vendored Normal file
View File

@ -0,0 +1,4 @@
<import src="./base.wxml" />
<block wx:for="{{i.cn}}" wx:key="sid">
<template is="tmpl_0_container" data="{{i:item,l:''}}" />
</block>

2
dist/pages/accountPage/index.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,41 @@
/*! ../../../node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./index.tsx */
/*! ./index.module.scss */
/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */
/*! ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js */
/*! ./node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js */
/*! ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js */
/*! @/api/newCollection */
/*! @/common/util */
/*! @/components/infiniteScroll */
/*! @tarojs/components */
/*! @tarojs/runtime */
/*! @tarojs/taro */
/*! classnames */
/*! react */
/*! react/jsx-runtime */
/*!*****************************************!*\
!*** ./src/pages/accountPage/index.tsx ***!
\*****************************************/
/*!*************************************************!*\
!*** ./src/pages/accountPage/index.module.scss ***!
\*************************************************/
/*!**************************************************************************************************************!*\
!*** ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./src/pages/accountPage/index.tsx ***!
\**************************************************************************************************************/

1
dist/pages/accountPage/index.json vendored Normal file
View File

@ -0,0 +1 @@
{"navigationBarTitleText":"收款账户","usingComponents":{"custom-wrapper":"../../custom-wrapper","comp":"../../comp"}}

2
dist/pages/accountPage/index.wxml vendored Normal file
View File

@ -0,0 +1,2 @@
<import src="../../base.wxml"/>
<template is="taro_tmpl" data="{{root:root}}" />

415
dist/pages/accountPage/index.wxss vendored Normal file
View File

@ -0,0 +1,415 @@
@charset "UTF-8";/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./src/pages/accountPage/index.module.scss ***!
\***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.index-module__common_safe_area_y___L2yu5 {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.index-module__flex-col___gcE2C {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.index-module__flex-row___S7Daj {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.index-module__justify-between___gCc2x {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__justify-center___Ft5eE {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.index-module__items-center___GQmlv {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__flex-item___vsz7N {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.index-module__full-100___l_oVL {
width: 100%;
height: 100%;
}
.index-module__color-blue___Ahdmj {
color: #3287EC;
}
.index-module__color-yellow___Evqps {
color: #FF9100;
}
.index-module__color-green___urYry {
color: #00B837;
}
.index-module__color-grey___vJmB_ {
color: #707070;
}
.index-module__color-white___kVrgG {
color: white;
}
.index-module__s-w___HEdXK::after {
content: "W";
font-size: 28rpx;
}
.index-module__s-e___B09qD::after {
content: "E";
font-size: 28rpx;
}
.index-module__filter___ep9_d {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.index-module__iconfont___wOYq1 {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.index-module__icon-shouhou1___CAvRr:before {
content: "\e641";
}
.index-module__icon-cangku1___wFUaQ:before {
content: "\e642";
}
.index-module__icon-saoma___hALNF:before {
content: "\e643";
}
.index-module__icon-dizhi1___hnVnb:before {
content: "\e644";
}
.index-module__icon-huodaofukuan___XaxPf:before {
content: "\e645";
}
.index-module__icon-yufukuan1___yG7dy:before {
content: "\e646";
}
.index-module__icon-yue___SAWvg:before {
content: "\e647";
}
.index-module__icon-zidingyi____9td3:before {
content: "\e648";
}
.index-module__icon-jinetiaozheng____bz8y:before {
content: "\e649";
}
.index-module__icon-tuikuan1___GpBIE:before {
content: "\e64a";
}
.index-module__icon-zhankai____Etro:before {
content: "\e63f";
}
.index-module__icon-shouqi___eO_T9:before {
content: "\e640";
}
.index-module__icon-lujing___hNUU2:before {
content: "\e63e";
}
.index-module__icon-jizhumima___fR8nR:before {
content: "\e63c";
}
.index-module__icon-a-jizhumima___n8c_b:before {
content: "\e63d";
}
.index-module__icon-weixindenglu___BntwJ:before {
content: "\e63b";
}
.index-module__icon-kehuxinxi___jP5RZ:before {
content: "\e63a";
}
.index-module__icon-yewuyuanqizi___bd4dW:before {
content: "\e639";
}
.index-module__icon-chakanquanbukehu___KW7tl:before {
content: "\e638";
}
.index-module__icon-biyan___pEo4u:before {
content: "\e637";
}
.index-module__icon-bianji___s4GGy:before {
content: "\e61e";
}
.index-module__icon-daikuan___KVQ2y:before {
content: "\e61f";
}
.index-module__icon-cangku___h3xAd:before {
content: "\e620";
}
.index-module__icon-guanlidingdan___eVnxU:before {
content: "\e621";
}
.index-module__icon-mima___yulpZ:before {
content: "\e622";
}
.index-module__icon-guanbi___5mDKl:before {
content: "\e623";
}
.index-module__icon-jianshao____Lj0E:before {
content: "\e624";
}
.index-module__icon-dingwei___vkSSm:before {
content: "\e625";
}
.index-module__icon-saomiao___xlPjq:before {
content: "\e626";
}
.index-module__icon-peihuo___YhYER:before {
content: "\e627";
}
.index-module__icon-shaixuan___jDNbP:before {
content: "\e628";
}
.index-module__icon-paiming___Qts5N:before {
content: "\e629";
}
.index-module__icon-shanchusousuoxinxi___vNdSR:before {
content: "\e62a";
}
.index-module__icon-shijian___GydeM:before {
content: "\e62b";
}
.index-module__icon-sousuo___xUb3W:before {
content: "\e62c";
}
.index-module__icon-shouhou___vKxcc:before {
content: "\e62d";
}
.index-module__icon-sousuofanhui___iIq5d:before {
content: "\e62e";
}
.index-module__icon-sousuoshanchu___oU5iO:before {
content: "\e62f";
}
.index-module__icon-tuikuan___Y3k7d:before {
content: "\e630";
}
.index-module__icon-tishi___uZWEH:before {
content: "\e631";
}
.index-module__icon-xianxiahuizong___CZa4J:before {
content: "\e632";
}
.index-module__icon-xinzeng___ljPmv:before {
content: "\e633";
}
.index-module__icon-yonghuming___iUJ0S:before {
content: "\e634";
}
.index-module__icon-yanjing___ELvty:before {
content: "\e635";
}
.index-module__icon-yufukuan___X8qX_:before {
content: "\e636";
}
.index-module__icon-wodekefu___Zs8je:before {
content: "\e60c";
}
.index-module__icon-dizhi___Hv2mV:before {
content: "\e60d";
}
.index-module__icon-shouhouzhongxin___ErEMa:before {
content: "\e60e";
}
.index-module__icon-wodeshoucang___aVi_E:before {
content: "\e60f";
}
.index-module__icon-shoukuanliebiao___lm9QX:before {
content: "\e610";
}
.index-module__icon-madanguanli___vFQ8O:before {
content: "\e611";
}
.index-module__icon-qusechazhao___lO8uv:before {
content: "\e612";
}
.index-module__icon-pandiansaoma___X57R_:before {
content: "\e613";
}
.index-module__icon-yaoqingma___fgAVS:before {
content: "\e614";
}
.index-module__icon-duizhang___LY_I5:before {
content: "\e615";
}
.index-module__icon-tihuoliebiao___O0UMg:before {
content: "\e616";
}
.index-module__icon-yangpinduibi___rETck:before {
content: "\e617";
}
.index-module__icon-yansequyang___Rj0E8:before {
content: "\e618";
}
.index-module__icon-fahuoliebiao___sc_h9:before {
content: "\e619";
}
.index-module__icon-yuncangkucun___mrqdN:before {
content: "\e61a";
}
.index-module__icon-xiaoshou___Q0rI0:before {
content: "\e61b";
}
.index-module__icon-qianzhicangkucun___QBV6L:before {
content: "\e61c";
}
.index-module__icon-lingquseka___NaeML:before {
content: "\e61d";
}
.index-module__icon-gouwu1____fwwF:before {
content: "\e608";
}
.index-module__icon-dingdan1___C1d5D:before {
content: "\e609";
}
.index-module__icon-gerenzhongxin1___vxdsg:before {
content: "\e60a";
}
.index-module__icon-shouye1___l6p7f:before {
content: "\e60b";
}
.index-module__icon-gerenzhongxin___tBRUp:before {
content: "\e604";
}
.index-module__icon-dingdan___xWneF:before {
content: "\e605";
}
.index-module__icon-shouye___xyGya:before {
content: "\e606";
}
.index-module__icon-gouwu___CYxrg:before {
content: "\e607";
}
page {
background: #f7f7f7;
}
.index-module__cussBox___XJ1dA .index-module__searchBox____cTfl {
position: -webkit-sticky;
position: sticky;
top: 0;
width: 750rpx;
height: 96rpx;
background: #FFFFFF;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__cussBox___XJ1dA .index-module__searchBox____cTfl .index-module__two___LdwUA {
width: 702rpx;
height: 72rpx;
margin-left: 24rpx;
}
.index-module__cussBox___XJ1dA .index-module__listBox___eIxpH {
height: calc(100vh - 96rpx);
}
.index-module__cussBox___XJ1dA .index-module__itemBox___I8Xyx {
margin-left: 24rpx;
width: 702rpx;
height: 104rpx;
background: #FFFFFF;
border-radius: 16rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
margin-top: 24rpx;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.index-module__cussBox___XJ1dA .index-module__itemBox___I8Xyx .index-module__cussName___bZuWw {
margin-left: 48rpx;
height: 34rpx;
font-size: 28rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #000000;
overflow: hidden;
white-space: nowrap;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
}
.index-module__cussBox___XJ1dA .index-module__itemBox___I8Xyx .index-module__phone___rngdu {
margin-left: 88rpx;
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #000000;
}
.index-module__cussBox___XJ1dA .index-module__itemBox___I8Xyx .index-module__woker___GHA8m {
margin-left: 88rpx;
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #000000;
}
.index-module__cussBox___XJ1dA .index-module__acticveitemBox___HOeKD {
margin-left: 24rpx;
width: 702rpx;
height: 104rpx;
background: #FFFFFF;
border-radius: 16rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
margin-top: 24rpx;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid #337FFF;
}
.index-module__cussBox___XJ1dA .index-module__acticveitemBox___HOeKD .index-module__cussName___bZuWw {
margin-left: 48rpx;
width: 168rpx;
height: 34rpx;
font-size: 28rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #000000;
overflow: hidden;
white-space: nowrap;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
}
.index-module__cussBox___XJ1dA .index-module__acticveitemBox___HOeKD .index-module__phone___rngdu {
margin-left: 88rpx;
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #000000;
}
.index-module__cussBox___XJ1dA .index-module__acticveitemBox___HOeKD .index-module__woker___GHA8m {
margin-left: 88rpx;
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #000000;
}

View File

@ -0,0 +1,2 @@
/*! For license information please see 70f6ef3b44287edfd53418aa08707a3b.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/70f6ef3b44287edfd53418aa08707a3b"],{"./src/api/newCollection.ts":function(e,r,t){t.d(r,{MpCashManagementOrder:function(){return u},MpCashManagementOrderAccount:function(){return s},MpCashManagementOrderList:function(){return a},MpCashManagementOrderPost:function(){return c},MpShouldCollectOrderPurchaser:function(){return o}});var n=t("./src/use/useHttp.ts");var a=function MpCashManagementOrderList(){return(0,n.useRequest)({url:"/v2/mp/cashManagementOrder/list",method:"get"})};var u=function MpCashManagementOrder(){return(0,n.useRequest)({url:"/v2/mp/cashManagementOrder",method:"get"})};var s=function MpCashManagementOrderAccount(){return(0,n.useRequest)({url:"/v2/mp/cashManagementOrder/account",method:"get"})};var c=function MpCashManagementOrderPost(){return(0,n.useRequest)({url:"/v2/mp/cashManagementOrder",method:"post"})};var o=function MpShouldCollectOrderPurchaser(){return(0,n.useRequest)({url:"/v2/mp/shouldCollectOrder/purchaser",method:"get"})}}}]);

2
dist/pages/addAddress/index.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,45 @@
/*! ../../../node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./index.tsx */
/*! ./index.module.scss */
/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */
/*! ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js */
/*! ./node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js */
/*! ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js */
/*! ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js */
/*! @/api/addressList */
/*! @/common/common */
/*! @/components/address */
/*! @/components/iconfont/iconfont */
/*! @tarojs/components */
/*! @tarojs/runtime */
/*! @tarojs/taro */
/*! classnames */
/*! react */
/*! react/jsx-runtime */
/*!****************************************!*\
!*** ./src/pages/addAddress/index.tsx ***!
\****************************************/
/*!************************************************!*\
!*** ./src/pages/addAddress/index.module.scss ***!
\************************************************/
/*!*************************************************************************************************************!*\
!*** ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./src/pages/addAddress/index.tsx ***!
\*************************************************************************************************************/

1
dist/pages/addAddress/index.json vendored Normal file
View File

@ -0,0 +1 @@
{"navigationBarTitleText":"新增地址","usingComponents":{"custom-wrapper":"../../custom-wrapper","comp":"../../comp"}}

2
dist/pages/addAddress/index.wxml vendored Normal file
View File

@ -0,0 +1,2 @@
<import src="../../base.wxml"/>
<template is="taro_tmpl" data="{{root:root}}" />

511
dist/pages/addAddress/index.wxss vendored Normal file
View File

@ -0,0 +1,511 @@
@charset "UTF-8";@import "./sub-common/a5c10f86b5ee0834b99ff7c4a0137d4b.wxss";/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./src/pages/addAddress/index.module.scss ***!
\**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.index-module__common_safe_area_y___UxMqc {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.index-module__flex-col___EabK6 {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.index-module__flex-row___tsF_b {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.index-module__justify-between___tcYdf {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__justify-center___lZFOb {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.index-module__items-center___hkB4F {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__flex-item___mToo4 {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.index-module__full-100___bJzPX {
width: 100%;
height: 100%;
}
.index-module__color-blue___uwVVu {
color: #3287EC;
}
.index-module__color-yellow___QahhI {
color: #FF9100;
}
.index-module__color-green___RCu5z {
color: #00B837;
}
.index-module__color-grey___bTqKH {
color: #707070;
}
.index-module__color-white___DbliU {
color: white;
}
.index-module__s-w___gpZAj::after {
content: "W";
font-size: 28rpx;
}
.index-module__s-e___J_lbn::after {
content: "E";
font-size: 28rpx;
}
.index-module__filter___JHj_s {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.index-module__iconfont___M6MbL {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.index-module__icon-shouhou1___e0HfH:before {
content: "\e641";
}
.index-module__icon-cangku1___Jpars:before {
content: "\e642";
}
.index-module__icon-saoma___ew3Qp:before {
content: "\e643";
}
.index-module__icon-dizhi1___XrVlY:before {
content: "\e644";
}
.index-module__icon-huodaofukuan___W4aME:before {
content: "\e645";
}
.index-module__icon-yufukuan1___J8lEI:before {
content: "\e646";
}
.index-module__icon-yue___TlBv6:before {
content: "\e647";
}
.index-module__icon-zidingyi___FqF5z:before {
content: "\e648";
}
.index-module__icon-jinetiaozheng___cfW5Z:before {
content: "\e649";
}
.index-module__icon-tuikuan1___ZORKM:before {
content: "\e64a";
}
.index-module__icon-zhankai___D1gW0:before {
content: "\e63f";
}
.index-module__icon-shouqi___bB5V1:before {
content: "\e640";
}
.index-module__icon-lujing___gZdwA:before {
content: "\e63e";
}
.index-module__icon-jizhumima___cTaJT:before {
content: "\e63c";
}
.index-module__icon-a-jizhumima___A2Bnj:before {
content: "\e63d";
}
.index-module__icon-weixindenglu___E2wij:before {
content: "\e63b";
}
.index-module__icon-kehuxinxi___Av65P:before {
content: "\e63a";
}
.index-module__icon-yewuyuanqizi___bJEv3:before {
content: "\e639";
}
.index-module__icon-chakanquanbukehu___IDjr7:before {
content: "\e638";
}
.index-module__icon-biyan___PP3Ug:before {
content: "\e637";
}
.index-module__icon-bianji___GnPc8:before {
content: "\e61e";
}
.index-module__icon-daikuan___PpTHb:before {
content: "\e61f";
}
.index-module__icon-cangku___RloLf:before {
content: "\e620";
}
.index-module__icon-guanlidingdan___yGHhS:before {
content: "\e621";
}
.index-module__icon-mima___smzK2:before {
content: "\e622";
}
.index-module__icon-guanbi___uoOUZ:before {
content: "\e623";
}
.index-module__icon-jianshao___xNkTC:before {
content: "\e624";
}
.index-module__icon-dingwei___lJiql:before {
content: "\e625";
}
.index-module__icon-saomiao___WVfJW:before {
content: "\e626";
}
.index-module__icon-peihuo___EjR7D:before {
content: "\e627";
}
.index-module__icon-shaixuan___ZkM3o:before {
content: "\e628";
}
.index-module__icon-paiming___gYY5t:before {
content: "\e629";
}
.index-module__icon-shanchusousuoxinxi___ffrwj:before {
content: "\e62a";
}
.index-module__icon-shijian___cKP1K:before {
content: "\e62b";
}
.index-module__icon-sousuo___uPnJW:before {
content: "\e62c";
}
.index-module__icon-shouhou___XCGtb:before {
content: "\e62d";
}
.index-module__icon-sousuofanhui___Wz5NX:before {
content: "\e62e";
}
.index-module__icon-sousuoshanchu___wjIu0:before {
content: "\e62f";
}
.index-module__icon-tuikuan___INoo9:before {
content: "\e630";
}
.index-module__icon-tishi___WcRe0:before {
content: "\e631";
}
.index-module__icon-xianxiahuizong___qzCz7:before {
content: "\e632";
}
.index-module__icon-xinzeng___T1ikv:before {
content: "\e633";
}
.index-module__icon-yonghuming___BazYO:before {
content: "\e634";
}
.index-module__icon-yanjing___Uk3Vd:before {
content: "\e635";
}
.index-module__icon-yufukuan___Wkb74:before {
content: "\e636";
}
.index-module__icon-wodekefu___Qidf3:before {
content: "\e60c";
}
.index-module__icon-dizhi___T8jZH:before {
content: "\e60d";
}
.index-module__icon-shouhouzhongxin___GNEpN:before {
content: "\e60e";
}
.index-module__icon-wodeshoucang___N9j10:before {
content: "\e60f";
}
.index-module__icon-shoukuanliebiao___sYJ53:before {
content: "\e610";
}
.index-module__icon-madanguanli___rLhxg:before {
content: "\e611";
}
.index-module__icon-qusechazhao___egBWj:before {
content: "\e612";
}
.index-module__icon-pandiansaoma___VMJpD:before {
content: "\e613";
}
.index-module__icon-yaoqingma___bJCQy:before {
content: "\e614";
}
.index-module__icon-duizhang___gIcLs:before {
content: "\e615";
}
.index-module__icon-tihuoliebiao___UWNUj:before {
content: "\e616";
}
.index-module__icon-yangpinduibi___JtFON:before {
content: "\e617";
}
.index-module__icon-yansequyang___SeJmE:before {
content: "\e618";
}
.index-module__icon-fahuoliebiao___iYAOM:before {
content: "\e619";
}
.index-module__icon-yuncangkucun___fBsYC:before {
content: "\e61a";
}
.index-module__icon-xiaoshou___uOe5A:before {
content: "\e61b";
}
.index-module__icon-qianzhicangkucun___fRZum:before {
content: "\e61c";
}
.index-module__icon-lingquseka___ORT9n:before {
content: "\e61d";
}
.index-module__icon-gouwu1___upU7_:before {
content: "\e608";
}
.index-module__icon-dingdan1___WbWMK:before {
content: "\e609";
}
.index-module__icon-gerenzhongxin1___IATQ_:before {
content: "\e60a";
}
.index-module__icon-shouye1___x4KlB:before {
content: "\e60b";
}
.index-module__icon-gerenzhongxin___yX2me:before {
content: "\e604";
}
.index-module__icon-dingdan___V4Y2f:before {
content: "\e605";
}
.index-module__icon-shouye___UNkFR:before {
content: "\e606";
}
.index-module__icon-gouwu___uJl92:before {
content: "\e607";
}
.index-module__main___xtFoA {
background: #ffffff;
border-radius: 16rpx;
margin: 24rpx;
padding: 40rpx 32rpx 50rpx 32rpx;
}
.index-module__main___xtFoA .index-module__itemBox___rCgHH {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
padding-bottom: 40rpx;
border-bottom: 1px solid #f7f7f7;
margin-bottom: 40rpx;
}
.index-module__main___xtFoA .index-module__itemBox___rCgHH .index-module__leftBox___pkaBs {
width: 176rpx;
font-size: 28rpx;
font-weight: 500;
color: #000000;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__main___xtFoA .index-module__itemBox___rCgHH .index-module__placeholderStyle___Fr9qI {
color: #f7f7f7;
font-size: 28rpx;
font-weight: 400;
}
.index-module__main___xtFoA .index-module__itemBox___rCgHH .index-module__inputClass___Z0nz_ {
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__itemBox___rCgHH:first-child {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
padding-bottom: 40rpx;
border-bottom: 1px solid #f7f7f7;
margin-bottom: 40rpx;
}
.index-module__itemBox___rCgHH:first-child .index-module__leftBox___pkaBs {
width: 176rpx;
font-size: 28rpx;
font-weight: 500;
color: #000000;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__itemBox___rCgHH:first-child .index-module__placeholderStyle___Fr9qI {
color: #f7f7f7;
font-size: 28rpx;
font-weight: 400;
}
.index-module__itemBox___rCgHH:first-child .index-module__inputClass___Z0nz_ {
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__itemBox___rCgHH:last-child {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
padding-bottom: 40rpx;
margin-bottom: 40rpx;
border-bottom: none;
}
.index-module__itemBox___rCgHH:last-child .index-module__leftBox___pkaBs {
font-size: 28rpx;
font-weight: 500;
color: #000000;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
width: 176rpx;
}
.index-module__itemBox___rCgHH:last-child .index-module__inputClass___Z0nz_ {
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__checkBox___NPgrq {
margin-left: 24rpx;
margin-top: 24rpx;
width: 702rpx;
height: 120rpx;
background: #ffffff;
border-radius: 16rpx;
overflow: hidden;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
padding-bottom: 15rpx;
}
.index-module__checkBox___NPgrq .index-module__leftCheck___QZaYW {
margin-left: 32rpx;
}
.index-module__checkBox___NPgrq .index-module__leftCheck___QZaYW .index-module__topFont___J4K6N {
margin-top: 24rpx;
font-size: 28rpx;
font-weight: 500;
color: #000000;
}
.index-module__checkBox___NPgrq .index-module__leftCheck___QZaYW .index-module__bottomFont___gnL6V {
margin-top: 8rpx;
font-size: 24rpx;
font-weight: 400;
color: #777777;
}
.index-module__bottomBox___YDMfC {
width: 750rpx;
height: 160rpx;
background: #ffffff;
bottom: 0;
padding-top: 14rpx;
position: fixed;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.index-module__bottomBox___YDMfC .index-module__btn___CtpIu {
margin-left: 32rpx;
width: 702rpx;
height: 80rpx;
background: #337fff;
border-radius: 44rpx;
opacity: 0.5;
font-size: 28rpx;
font-weight: 500;
color: #ffffff;
text-align: center;
line-height: 80rpx;
}
.index-module__bottomBox___YDMfC .index-module__adtiveBtns___FN5cX {
margin-left: 32rpx;
width: 702rpx;
height: 80rpx;
background: #337fff;
border-radius: 44rpx;
font-size: 28rpx;
font-weight: 500;
color: #ffffff;
text-align: center;
line-height: 80rpx;
}
.index-module__bottomBox___YDMfC .index-module__delectBox___o4Sj4 {
width: 311rpx;
height: 80rpx;
border-radius: 44rpx;
border: 1px solid #f4536b;
margin-left: 48rpx;
font-size: 28rpx;
font-weight: 500;
color: #f4536b;
text-align: center;
line-height: 80rpx;
background-color: #fff;
}
.index-module__bottomBox___YDMfC .index-module__nobtn___OjSfE {
width: 311rpx;
height: 80rpx;
background: #337fff;
border-radius: 44rpx;
opacity: 0.5;
margin-left: 32rpx;
text-align: center;
line-height: 80rpx;
font-size: 28rpx;
color: #ffffff;
}
.index-module__bottomBox___YDMfC .index-module__sureBox___h6ggF {
width: 311rpx;
height: 80rpx;
background: #337fff;
border-radius: 44rpx;
font-size: 28rpx;
font-weight: 500;
color: #ffffff;
margin-left: 32rpx;
text-align: center;
line-height: 80rpx;
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,402 @@
/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./src/components/address/index.module.scss ***!
\****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.index-module__common_safe_area_y___x4eYy {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.index-module__flex-col___WfAVR {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.index-module__flex-row___E72HL {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.index-module__justify-between___BX5jv {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__justify-center___LWVHx {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.index-module__items-center___b7YfS {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__flex-item___qWIe6 {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.index-module__full-100___UTe8u {
width: 100%;
height: 100%;
}
.index-module__color-blue___KlcQP {
color: #3287EC;
}
.index-module__color-yellow___BbR9i {
color: #FF9100;
}
.index-module__color-green___HIJKc {
color: #00B837;
}
.index-module__color-grey___vmmoc {
color: #707070;
}
.index-module__color-white___rLQP_ {
color: white;
}
.index-module__s-w___QSVgb::after {
content: "W";
font-size: 28rpx;
}
.index-module__s-e___fDGe6::after {
content: "E";
font-size: 28rpx;
}
.index-module__filter___p2qM3 {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.index-module__iconfont___kFGsG {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.index-module__icon-shouhou1___ZW63S:before {
content: "\e641";
}
.index-module__icon-cangku1___VK0NJ:before {
content: "\e642";
}
.index-module__icon-saoma___KVcY3:before {
content: "\e643";
}
.index-module__icon-dizhi1___cGqZr:before {
content: "\e644";
}
.index-module__icon-huodaofukuan___ncjnu:before {
content: "\e645";
}
.index-module__icon-yufukuan1___aLk8Q:before {
content: "\e646";
}
.index-module__icon-yue___OGK28:before {
content: "\e647";
}
.index-module__icon-zidingyi___SGcu2:before {
content: "\e648";
}
.index-module__icon-jinetiaozheng___jcHyI:before {
content: "\e649";
}
.index-module__icon-tuikuan1___x3CZP:before {
content: "\e64a";
}
.index-module__icon-zhankai___EK54W:before {
content: "\e63f";
}
.index-module__icon-shouqi___MmTsa:before {
content: "\e640";
}
.index-module__icon-lujing___PkxDi:before {
content: "\e63e";
}
.index-module__icon-jizhumima___gDf4b:before {
content: "\e63c";
}
.index-module__icon-a-jizhumima___BR7jP:before {
content: "\e63d";
}
.index-module__icon-weixindenglu___GDXJs:before {
content: "\e63b";
}
.index-module__icon-kehuxinxi___tuVwf:before {
content: "\e63a";
}
.index-module__icon-yewuyuanqizi___gbPfz:before {
content: "\e639";
}
.index-module__icon-chakanquanbukehu___W0tco:before {
content: "\e638";
}
.index-module__icon-biyan___P6j_M:before {
content: "\e637";
}
.index-module__icon-bianji___OT8MF:before {
content: "\e61e";
}
.index-module__icon-daikuan___VyTWB:before {
content: "\e61f";
}
.index-module__icon-cangku___PXvRo:before {
content: "\e620";
}
.index-module__icon-guanlidingdan___e_gz4:before {
content: "\e621";
}
.index-module__icon-mima___Jdu6y:before {
content: "\e622";
}
.index-module__icon-guanbi___dHWHc:before {
content: "\e623";
}
.index-module__icon-jianshao___lrLTI:before {
content: "\e624";
}
.index-module__icon-dingwei___Rj7OP:before {
content: "\e625";
}
.index-module__icon-saomiao___NRREq:before {
content: "\e626";
}
.index-module__icon-peihuo___jDXYn:before {
content: "\e627";
}
.index-module__icon-shaixuan___zI205:before {
content: "\e628";
}
.index-module__icon-paiming___Iuzup:before {
content: "\e629";
}
.index-module__icon-shanchusousuoxinxi___T_E8K:before {
content: "\e62a";
}
.index-module__icon-shijian___LqsmH:before {
content: "\e62b";
}
.index-module__icon-sousuo___wbVUl:before {
content: "\e62c";
}
.index-module__icon-shouhou___aEx2J:before {
content: "\e62d";
}
.index-module__icon-sousuofanhui___c9lEh:before {
content: "\e62e";
}
.index-module__icon-sousuoshanchu___KBFk6:before {
content: "\e62f";
}
.index-module__icon-tuikuan___NBbL9:before {
content: "\e630";
}
.index-module__icon-tishi___fb542:before {
content: "\e631";
}
.index-module__icon-xianxiahuizong___mPne0:before {
content: "\e632";
}
.index-module__icon-xinzeng___y1u6N:before {
content: "\e633";
}
.index-module__icon-yonghuming___VZU8V:before {
content: "\e634";
}
.index-module__icon-yanjing____YtP8:before {
content: "\e635";
}
.index-module__icon-yufukuan___mnuxU:before {
content: "\e636";
}
.index-module__icon-wodekefu___tsfhO:before {
content: "\e60c";
}
.index-module__icon-dizhi___X0Lqf:before {
content: "\e60d";
}
.index-module__icon-shouhouzhongxin___kTNys:before {
content: "\e60e";
}
.index-module__icon-wodeshoucang___hWv6u:before {
content: "\e60f";
}
.index-module__icon-shoukuanliebiao___bGvZt:before {
content: "\e610";
}
.index-module__icon-madanguanli___XSYmJ:before {
content: "\e611";
}
.index-module__icon-qusechazhao___C7E1Z:before {
content: "\e612";
}
.index-module__icon-pandiansaoma___H7XGo:before {
content: "\e613";
}
.index-module__icon-yaoqingma___eHvfV:before {
content: "\e614";
}
.index-module__icon-duizhang___Srn9D:before {
content: "\e615";
}
.index-module__icon-tihuoliebiao___xHCr1:before {
content: "\e616";
}
.index-module__icon-yangpinduibi___v4kjD:before {
content: "\e617";
}
.index-module__icon-yansequyang___hnjZP:before {
content: "\e618";
}
.index-module__icon-fahuoliebiao___M3J7w:before {
content: "\e619";
}
.index-module__icon-yuncangkucun___r3zFX:before {
content: "\e61a";
}
.index-module__icon-xiaoshou___GTrH8:before {
content: "\e61b";
}
.index-module__icon-qianzhicangkucun___u0sKA:before {
content: "\e61c";
}
.index-module__icon-lingquseka___XU8MW:before {
content: "\e61d";
}
.index-module__icon-gouwu1___aUbDD:before {
content: "\e608";
}
.index-module__icon-dingdan1___z5IJb:before {
content: "\e609";
}
.index-module__icon-gerenzhongxin1___wrQpN:before {
content: "\e60a";
}
.index-module__icon-shouye1___XOGK4:before {
content: "\e60b";
}
.index-module__icon-gerenzhongxin____Tu9Z:before {
content: "\e604";
}
.index-module__icon-dingdan___poXar:before {
content: "\e605";
}
.index-module__icon-shouye___bqov9:before {
content: "\e606";
}
.index-module__icon-gouwu___cafM7:before {
content: "\e607";
}
.index-module__address_main___huJxL {
width: 100%;
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: relative;
}
.index-module__address_main___huJxL .index-module__sure___VHAtN {
font-size: 28rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #337FFF;
position: absolute;
top: 35rpx;
right: 40rpx;
}
.index-module__address_main___huJxL .index-module__address_title___nnKsa {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
font-size: 28rpx;
padding: 20rpx;
padding-bottom: 0;
}
.index-module__address_main___huJxL .index-module__address_select___l33As {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding: 30rpx 0;
margin-top: 10rpx;
font-size: 24rpx;
border-bottom: 1px solid #eaeaea;
color: #337fff;
position: relative;
}
.index-module__address_main___huJxL .index-module__address_select___l33As .index-module__address_item___mchDV {
padding: 0 20rpx;
max-width: 200rpx;
overflow: hidden;
display: -webkit-box;
white-space: normal;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
word-break: break-all;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
}
.index-module__address_main___huJxL .index-module__address_select___l33As .index-module__bottom_index___J8o7V {
width: 88rpx;
height: 6rpx;
background: #337FFF;
border-radius: 3rpx;
position: absolute;
bottom: 0;
left: 0;
-webkit-transition: left 0.1s;
-o-transition: left 0.1s;
transition: left 0.1s;
}
.index-module__address_main___huJxL .index-module__address_scroll___mubKA {
height: 600rpx;
}
.index-module__address_main___huJxL .index-module__address_scroll___mubKA .index-module__address_scroll_list___i1c9q {
padding: 0 20rpx;
font-size: 28rpx;
}
.index-module__address_main___huJxL .index-module__address_scroll___mubKA .index-module__address_scroll_list___i1c9q .index-module__address_list_item___sWUGG {
padding: 20rpx 0;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
border-bottom: 1px solid #f5f5f5;
}
.index-module__address_main___huJxL .index-module__address_scroll___mubKA .index-module__address_scroll_list___i1c9q .index-module__address_list_item___sWUGG .index-module__address_list_item_name___TBOMb {
overflow: hidden;
display: -webkit-box;
white-space: normal;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
word-break: break-all;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
}
.index-module__address_main___huJxL .index-module__address_scroll___mubKA .index-module__address_scroll_list___i1c9q .index-module__address_list_item___sWUGG .index-module__address_iconfont___T4GZp {
font-size: 30rpx !important;
color: #4581ff;
}
.index-module__address_main___huJxL .index-module__addresst_select___hviCA {
color: #337fff;
}

View File

@ -0,0 +1,2 @@
/*! For license information please see dde3895fab754ea605d2697ad6817a2a.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/dde3895fab754ea605d2697ad6817a2a"],{"./src/api/addressList.ts":function(e,r,s){s.d(r,{GetAddressListApi:function(){return u},MpPurchaserAddress:function(){return n},MpPurchaserAddressDelete:function(){return p},MpPurchaserAddressGet:function(){return a},MpPurchaserAddressList:function(){return d},MpPurchaserAddressPut:function(){return c}});var t=s("./src/use/useHttp.ts");var u=function GetAddressListApi(){return(0,t.useRequest)({url:"/v2/mp/district/list",method:"get"})};var d=function MpPurchaserAddressList(){return(0,t.useRequest)({url:"/v2/mp/purchaser/address/list",method:"get"})};var n=function MpPurchaserAddress(){return(0,t.useRequest)({url:"/v2/mp/purchaser/address",method:"post"})};var a=function MpPurchaserAddressGet(){return(0,t.useRequest)({url:"/v2/mp/purchaser/address",method:"get"})};var c=function MpPurchaserAddressPut(){return(0,t.useRequest)({url:"/v2/mp/purchaser/address",method:"put"})};var p=function MpPurchaserAddressDelete(){return(0,t.useRequest)({url:"/v2/mp/purchaser/address",method:"delete"})}}}]);

File diff suppressed because one or more lines are too long

2
dist/pages/addCollection/index.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,57 @@
/*! ../../../node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./index.tsx */
/*! ./components/form */
/*! ./index.module.scss */
/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */
/*! ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js */
/*! ./node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js */
/*! ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js */
/*! @/api/newCollection */
/*! @/common/common */
/*! @/common/money */
/*! @/components/iconfont/iconfont */
/*! @/components/uploadImage */
/*! @tarojs/components */
/*! @tarojs/runtime */
/*! @tarojs/taro */
/*! big.js */
/*! classnames */
/*! react */
/*! react/jsx-runtime */
/*!*******************************************!*\
!*** ./src/pages/addCollection/index.tsx ***!
\*******************************************/
/*!***************************************************!*\
!*** ./src/pages/addCollection/index.module.scss ***!
\***************************************************/
/*!***********************************************************!*\
!*** ./src/pages/addCollection/components/form/index.tsx ***!
\***********************************************************/
/*!*******************************************************************!*\
!*** ./src/pages/addCollection/components/form/index.module.scss ***!
\*******************************************************************/
/*!****************************************************************************************************************!*\
!*** ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./src/pages/addCollection/index.tsx ***!
\****************************************************************************************************************/

1
dist/pages/addCollection/index.json vendored Normal file
View File

@ -0,0 +1 @@
{"navigationBarTitleText":"新建收款单","usingComponents":{"custom-wrapper":"../../custom-wrapper","comp":"../../comp"}}

2
dist/pages/addCollection/index.wxml vendored Normal file
View File

@ -0,0 +1,2 @@
<import src="../../base.wxml"/>
<template is="taro_tmpl" data="{{root:root}}" />

810
dist/pages/addCollection/index.wxss vendored Normal file
View File

@ -0,0 +1,810 @@
@charset "UTF-8";@import "./sub-common/f437345ae9818808a269edcd3d9d51d0.wxss";/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./src/pages/addCollection/index.module.scss ***!
\*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.index-module__common_safe_area_y___KFLlI {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.index-module__flex-col___eJDhx {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.index-module__flex-row___EWmDM {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.index-module__justify-between___eFKZv {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__justify-center___TveVM {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.index-module__items-center___ZpH6f {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__flex-item___wp_et {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.index-module__full-100___vLpRr {
width: 100%;
height: 100%;
}
.index-module__color-blue___Y1W4c {
color: #3287EC;
}
.index-module__color-yellow___N4weD {
color: #FF9100;
}
.index-module__color-green___AboDz {
color: #00B837;
}
.index-module__color-grey___vqlq4 {
color: #707070;
}
.index-module__color-white___NLfRS {
color: white;
}
.index-module__s-w___E4PWK::after {
content: "W";
font-size: 28rpx;
}
.index-module__s-e___Jrrl6::after {
content: "E";
font-size: 28rpx;
}
.index-module__filter___cx01H {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.index-module__iconfont___W3Acm {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.index-module__icon-shouhou1___b5Qij:before {
content: "\e641";
}
.index-module__icon-cangku1___PedBH:before {
content: "\e642";
}
.index-module__icon-saoma___q7wFK:before {
content: "\e643";
}
.index-module__icon-dizhi1___xH9fl:before {
content: "\e644";
}
.index-module__icon-huodaofukuan___ckqa3:before {
content: "\e645";
}
.index-module__icon-yufukuan1___bBjoS:before {
content: "\e646";
}
.index-module__icon-yue___P82L1:before {
content: "\e647";
}
.index-module__icon-zidingyi___G1A1E:before {
content: "\e648";
}
.index-module__icon-jinetiaozheng___Zu9a0:before {
content: "\e649";
}
.index-module__icon-tuikuan1___DcLLD:before {
content: "\e64a";
}
.index-module__icon-zhankai___jYGuS:before {
content: "\e63f";
}
.index-module__icon-shouqi___kptDm:before {
content: "\e640";
}
.index-module__icon-lujing___zV72h:before {
content: "\e63e";
}
.index-module__icon-jizhumima___a7a1Y:before {
content: "\e63c";
}
.index-module__icon-a-jizhumima___fxlAP:before {
content: "\e63d";
}
.index-module__icon-weixindenglu___yePR2:before {
content: "\e63b";
}
.index-module__icon-kehuxinxi___ToWLy:before {
content: "\e63a";
}
.index-module__icon-yewuyuanqizi___AEERp:before {
content: "\e639";
}
.index-module__icon-chakanquanbukehu___mBYQi:before {
content: "\e638";
}
.index-module__icon-biyan___d01VF:before {
content: "\e637";
}
.index-module__icon-bianji___oTPi3:before {
content: "\e61e";
}
.index-module__icon-daikuan___sMgd0:before {
content: "\e61f";
}
.index-module__icon-cangku___vLudH:before {
content: "\e620";
}
.index-module__icon-guanlidingdan___NMtTK:before {
content: "\e621";
}
.index-module__icon-mima___XwDwT:before {
content: "\e622";
}
.index-module__icon-guanbi___aCx_i:before {
content: "\e623";
}
.index-module__icon-jianshao___ojDAs:before {
content: "\e624";
}
.index-module__icon-dingwei___xnrHR:before {
content: "\e625";
}
.index-module__icon-saomiao___i1EOU:before {
content: "\e626";
}
.index-module__icon-peihuo___dvo_s:before {
content: "\e627";
}
.index-module__icon-shaixuan___hRZ0F:before {
content: "\e628";
}
.index-module__icon-paiming___Bjxke:before {
content: "\e629";
}
.index-module__icon-shanchusousuoxinxi___dky7z:before {
content: "\e62a";
}
.index-module__icon-shijian___iqCDJ:before {
content: "\e62b";
}
.index-module__icon-sousuo___rnVY1:before {
content: "\e62c";
}
.index-module__icon-shouhou___nQpmM:before {
content: "\e62d";
}
.index-module__icon-sousuofanhui___KHxhk:before {
content: "\e62e";
}
.index-module__icon-sousuoshanchu___y1UWA:before {
content: "\e62f";
}
.index-module__icon-tuikuan___MFoqH:before {
content: "\e630";
}
.index-module__icon-tishi___WS70T:before {
content: "\e631";
}
.index-module__icon-xianxiahuizong___ZAiX9:before {
content: "\e632";
}
.index-module__icon-xinzeng___rhaQB:before {
content: "\e633";
}
.index-module__icon-yonghuming___arb0Z:before {
content: "\e634";
}
.index-module__icon-yanjing___WLa27:before {
content: "\e635";
}
.index-module__icon-yufukuan___TkVjc:before {
content: "\e636";
}
.index-module__icon-wodekefu___fvAy9:before {
content: "\e60c";
}
.index-module__icon-dizhi___uHjY9:before {
content: "\e60d";
}
.index-module__icon-shouhouzhongxin___RlsYV:before {
content: "\e60e";
}
.index-module__icon-wodeshoucang___etdXg:before {
content: "\e60f";
}
.index-module__icon-shoukuanliebiao___P61dB:before {
content: "\e610";
}
.index-module__icon-madanguanli___Nq8mg:before {
content: "\e611";
}
.index-module__icon-qusechazhao___DkDhm:before {
content: "\e612";
}
.index-module__icon-pandiansaoma___r_6wQ:before {
content: "\e613";
}
.index-module__icon-yaoqingma___HnRxJ:before {
content: "\e614";
}
.index-module__icon-duizhang___BQPIf:before {
content: "\e615";
}
.index-module__icon-tihuoliebiao___MRvRG:before {
content: "\e616";
}
.index-module__icon-yangpinduibi___rIoe0:before {
content: "\e617";
}
.index-module__icon-yansequyang___w0tsh:before {
content: "\e618";
}
.index-module__icon-fahuoliebiao___Df68D:before {
content: "\e619";
}
.index-module__icon-yuncangkucun___r7q9j:before {
content: "\e61a";
}
.index-module__icon-xiaoshou___m3LtJ:before {
content: "\e61b";
}
.index-module__icon-qianzhicangkucun___QuGik:before {
content: "\e61c";
}
.index-module__icon-lingquseka___gzWQ2:before {
content: "\e61d";
}
.index-module__icon-gouwu1___UciOB:before {
content: "\e608";
}
.index-module__icon-dingdan1___m5sQo:before {
content: "\e609";
}
.index-module__icon-gerenzhongxin1___Y_ZM6:before {
content: "\e60a";
}
.index-module__icon-shouye1___tgwUv:before {
content: "\e60b";
}
.index-module__icon-gerenzhongxin___B3gwh:before {
content: "\e604";
}
.index-module__icon-dingdan___Oww3L:before {
content: "\e605";
}
.index-module__icon-shouye___AiMYm:before {
content: "\e606";
}
.index-module__icon-gouwu___iqc63:before {
content: "\e607";
}
.index-module__addBox___umNY3 {
margin: 24rpx;
padding: 0rpx 32rpx 0rpx 32rpx;
background: #FFFFFF;
border-radius: 16rpx;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
.index-module__activeBox___u0JrI {
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
margin: 24rpx;
padding: 0rpx 32rpx 0rpx 32rpx;
background: #FFFFFF;
border-radius: 16rpx;
}
.index-module__textAreaBox___KL9Gk {
margin-top: 40rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
position: relative;
}
.index-module__textAreaBox___KL9Gk .index-module__textAreaLeft___sUpVV {
font-size: 28rpx;
font-weight: 500;
color: #000000;
}
.index-module__textAreaBox___KL9Gk .index-module__textAreaRight___v8g69 {
width: 70%;
}
.index-module__textAreaBox___KL9Gk .index-module__numsTotal___Lh9np {
position: absolute;
bottom: 0;
right: 0;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
font-size: 28rpx;
font-weight: 400;
color: grey;
}
.index-module__bottomBox___tct08 {
width: 750rpx;
height: 160rpx;
background: #FFFFFF;
position: fixed;
bottom: 0;
z-index: 99;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding-top: 16rpx;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__bottomBox___tct08 .index-module__resetBox___BLv8E {
margin-left: 48rpx;
width: 311rpx;
height: 80rpx;
border-radius: 44rpx;
border: 1px solid #087EFF;
font-size: 28rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #337FFF;
text-align: center;
line-height: 80rpx;
background-color: #fff;
}
.index-module__bottomBox___tct08 .index-module__button___wAZh6 {
margin-right: 32rpx;
width: 311rpx;
height: 80rpx;
background: #68b4ff;
border-radius: 44rpx;
font-size: 32rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #FFFFFF;
text-align: center;
line-height: 80rpx;
}
.index-module__bottomBox___tct08 .index-module__activeButton___Di6yt {
margin-right: 32rpx;
width: 311rpx;
height: 80rpx;
background: #337FFF;
border-radius: 44rpx;
font-size: 32rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #fff;
text-align: center;
line-height: 80rpx;
}
.index-module__safeBox___Y0q6J {
height: 160rpx;
width: 100%;
}
.index-module__openBox___TX2Mw {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
line-height: 82rpx;
}
.index-module__openBox___TX2Mw .index-module__openFont___dnoQC {
font-size: 28rpx;
font-weight: 400;
color: #337FFF;
margin-right: 10rpx;
}
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./src/pages/addCollection/components/form/index.module.scss ***!
\*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.index-module__common_safe_area_y___rfGDH {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.index-module__flex-col___kQoMm {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.index-module__flex-row___hfHW8 {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.index-module__justify-between___m78Lg {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__justify-center___dY2Dq {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.index-module__items-center___WnzbB {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__flex-item___HwOWL {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.index-module__full-100___YPkFZ {
width: 100%;
height: 100%;
}
.index-module__color-blue___sGXui {
color: #3287EC;
}
.index-module__color-yellow___JQc0K {
color: #FF9100;
}
.index-module__color-green___dBsQ_ {
color: #00B837;
}
.index-module__color-grey___GX3R8 {
color: #707070;
}
.index-module__color-white___g_AnK {
color: white;
}
.index-module__s-w___QzGLB::after {
content: "W";
font-size: 28rpx;
}
.index-module__s-e___OAFUt::after {
content: "E";
font-size: 28rpx;
}
.index-module__filter___V2DLD {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.index-module__iconfont___UbO07 {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.index-module__icon-shouhou1___lijnI:before {
content: "\e641";
}
.index-module__icon-cangku1___CbJsn:before {
content: "\e642";
}
.index-module__icon-saoma___vAvb3:before {
content: "\e643";
}
.index-module__icon-dizhi1___rSIhH:before {
content: "\e644";
}
.index-module__icon-huodaofukuan___fKkXF:before {
content: "\e645";
}
.index-module__icon-yufukuan1___ZG2qy:before {
content: "\e646";
}
.index-module__icon-yue___sQwe1:before {
content: "\e647";
}
.index-module__icon-zidingyi___JqjfO:before {
content: "\e648";
}
.index-module__icon-jinetiaozheng___UddrQ:before {
content: "\e649";
}
.index-module__icon-tuikuan1___czG_U:before {
content: "\e64a";
}
.index-module__icon-zhankai___q1rsk:before {
content: "\e63f";
}
.index-module__icon-shouqi___xFuy_:before {
content: "\e640";
}
.index-module__icon-lujing___SJSHO:before {
content: "\e63e";
}
.index-module__icon-jizhumima___r3M0l:before {
content: "\e63c";
}
.index-module__icon-a-jizhumima___CsRor:before {
content: "\e63d";
}
.index-module__icon-weixindenglu___tbJBv:before {
content: "\e63b";
}
.index-module__icon-kehuxinxi___bdrEA:before {
content: "\e63a";
}
.index-module__icon-yewuyuanqizi___m18pT:before {
content: "\e639";
}
.index-module__icon-chakanquanbukehu___lHc7C:before {
content: "\e638";
}
.index-module__icon-biyan___To34Q:before {
content: "\e637";
}
.index-module__icon-bianji___IxVgL:before {
content: "\e61e";
}
.index-module__icon-daikuan___Ci67c:before {
content: "\e61f";
}
.index-module__icon-cangku___lPaHK:before {
content: "\e620";
}
.index-module__icon-guanlidingdan___LCJUi:before {
content: "\e621";
}
.index-module__icon-mima___SWaKj:before {
content: "\e622";
}
.index-module__icon-guanbi___EpdEY:before {
content: "\e623";
}
.index-module__icon-jianshao___VLIOl:before {
content: "\e624";
}
.index-module__icon-dingwei___H4fqw:before {
content: "\e625";
}
.index-module__icon-saomiao___s5MyP:before {
content: "\e626";
}
.index-module__icon-peihuo___R6ueS:before {
content: "\e627";
}
.index-module__icon-shaixuan___bpX8F:before {
content: "\e628";
}
.index-module__icon-paiming___casGL:before {
content: "\e629";
}
.index-module__icon-shanchusousuoxinxi___AirJI:before {
content: "\e62a";
}
.index-module__icon-shijian___FkQ6K:before {
content: "\e62b";
}
.index-module__icon-sousuo___Q_c2n:before {
content: "\e62c";
}
.index-module__icon-shouhou___wF3Z8:before {
content: "\e62d";
}
.index-module__icon-sousuofanhui___zaJEE:before {
content: "\e62e";
}
.index-module__icon-sousuoshanchu___UnsU6:before {
content: "\e62f";
}
.index-module__icon-tuikuan___vfMPG:before {
content: "\e630";
}
.index-module__icon-tishi___ZQPAt:before {
content: "\e631";
}
.index-module__icon-xianxiahuizong___s1UI3:before {
content: "\e632";
}
.index-module__icon-xinzeng___sRiZD:before {
content: "\e633";
}
.index-module__icon-yonghuming___QFUfx:before {
content: "\e634";
}
.index-module__icon-yanjing___T31pH:before {
content: "\e635";
}
.index-module__icon-yufukuan___BgZZ3:before {
content: "\e636";
}
.index-module__icon-wodekefu___D1Kz9:before {
content: "\e60c";
}
.index-module__icon-dizhi___a58gE:before {
content: "\e60d";
}
.index-module__icon-shouhouzhongxin___nwGtM:before {
content: "\e60e";
}
.index-module__icon-wodeshoucang___O1oU6:before {
content: "\e60f";
}
.index-module__icon-shoukuanliebiao___Sex4t:before {
content: "\e610";
}
.index-module__icon-madanguanli___tOpd1:before {
content: "\e611";
}
.index-module__icon-qusechazhao___BiqyF:before {
content: "\e612";
}
.index-module__icon-pandiansaoma___DKs76:before {
content: "\e613";
}
.index-module__icon-yaoqingma___Obo75:before {
content: "\e614";
}
.index-module__icon-duizhang___vylEK:before {
content: "\e615";
}
.index-module__icon-tihuoliebiao___SUBDq:before {
content: "\e616";
}
.index-module__icon-yangpinduibi___pFpI0:before {
content: "\e617";
}
.index-module__icon-yansequyang___pfsIt:before {
content: "\e618";
}
.index-module__icon-fahuoliebiao___isPJo:before {
content: "\e619";
}
.index-module__icon-yuncangkucun___MDVfn:before {
content: "\e61a";
}
.index-module__icon-xiaoshou___lzS_C:before {
content: "\e61b";
}
.index-module__icon-qianzhicangkucun___JTdfI:before {
content: "\e61c";
}
.index-module__icon-lingquseka___xZV3a:before {
content: "\e61d";
}
.index-module__icon-gouwu1___ChOQF:before {
content: "\e608";
}
.index-module__icon-dingdan1___zCA_6:before {
content: "\e609";
}
.index-module__icon-gerenzhongxin1___Ebscj:before {
content: "\e60a";
}
.index-module__icon-shouye1___l4gd9:before {
content: "\e60b";
}
.index-module__icon-gerenzhongxin___qe7Em:before {
content: "\e604";
}
.index-module__icon-dingdan___VsHoQ:before {
content: "\e605";
}
.index-module__icon-shouye___iwxSR:before {
content: "\e606";
}
.index-module__icon-gouwu___JXdhy:before {
content: "\e607";
}
.index-module__itemBox___iKHY7 {
width: 100%;
border-bottom: 1px solid #f7f7f7;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding-top: 30rpx;
padding-bottom: 30rpx;
}
.index-module__itemBox___iKHY7 .index-module__itemLeft___UaZlD .index-module__finkFlex___a2Y0K {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.index-module__itemBox___iKHY7 .index-module__itemLeft___UaZlD .index-module__finkFlex___a2Y0K .index-module__itemTitle___IITOB {
font-size: 28rpx;
font-weight: 500;
color: #000000;
}
.index-module__itemBox___iKHY7 .index-module__itemLeft___UaZlD .index-module__finkFlex___a2Y0K .index-module__xing___EpjqJ {
font-size: 28rpx;
font-weight: 500;
color: #E42945;
margin-right: 48rpx;
}
.index-module__itemBox___iKHY7 .index-module__itemLeft___UaZlD .index-module__finkFont___JaKfH {
font-size: 20rpx;
font-weight: 400;
color: grey;
}
.index-module__itemBox___iKHY7 .index-module__bigPic___KIvs0 {
width: 70%;
}
.index-module__itemBox___iKHY7 .index-module__itemRight___CUUMi {
width: 70%;
}
.index-module__itemBox___iKHY7 .index-module__itemRight___CUUMi .index-module__assginFont___p6ERa {
font-size: 24rpx;
font-weight: 500;
color: #000000;
}
.index-module__itemBox___iKHY7 .index-module__itemRight___CUUMi .index-module__rightFlex___aOBXL {
width: 100%;
}
.index-module__itemBox___iKHY7 .index-module__itemRight___CUUMi .index-module__rightFlex___aOBXL .index-module__placeholderStyle___AtIzW {
color: #f7f7f7;
font-size: 28rpx;
font-weight: 400;
}
.index-module__itemBox___iKHY7 .index-module__itemRight___CUUMi .index-module__rightFlex___aOBXL .index-module__inputStyle___c5AvW {
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__itemBox___iKHY7 .index-module__itemRight___CUUMi .index-module__iconFlex___p31Dc {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__itemBox___iKHY7 .index-module__itemRight___CUUMi .index-module__iconFlex___p31Dc .index-module__chakanquanbukehu2___u1Vzm {
font-size: 50rpx !important;
}
.index-module__itemBox___iKHY7 .index-module__itemRight___CUUMi .index-module__iconFlex___p31Dc .index-module__saomiao___zGOBT {
margin-left: 24rpx;
color: #087EFF;
font-size: 40rpx !important;
}
.index-module__itemBox___iKHY7 .index-module__shu___mwa6i {
width: 2rpx;
height: 36rpx;
background: #000000;
opacity: 0.2;
margin-left: 24rpx;
margin-right: 24rpx;
}

View File

@ -0,0 +1,2 @@
/*! For license information please see 13c349ec6fe97c02f07716d358f66d11.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/13c349ec6fe97c02f07716d358f66d11"],{"./src/api/cdn.ts":function(e,t,n){n.d(t,{GetSignApi:function(){return s}});var c=n("./src/use/useHttp.ts");var s=function GetSignApi(){return(0,c.useRequest)({url:"/v2/mp/cdn/token",method:"get"})}}}]);

View File

@ -0,0 +1,2 @@
/*! For license information please see 271497e280fc79153f1f116370b30522.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/271497e280fc79153f1f116370b30522"],{"./src/common/money.ts":function(r,a){var t=function smallToBig(r){var a=["零","壹","贰","叁","肆","伍","陆","柒","捌","玖"];var t=["","拾","佰","仟"];var e=["","万","亿","兆"];var s=["角","分","毫","厘"];var v="整";var n="元";var f=1e15;var i="";var u;if(r==""){return""}r=parseFloat(r);if(r>=f){return"超出最大处理数字"}if(r==0){i=a[0]+n+v;return i}r=Math.round(r*100).toString();var o=r.substr(0,r.length-2);var l=r.substr(r.length-2);if(parseInt(o,10)>0){var b=0;var c=o.length;for(var p=0;p<c;p++){var m=o.substr(p,1);var g=c-p-1;var h=g/4;var w=g%4;if(m=="0"){b++}else{if(b>0){i+=a[0]}b=0;i+=a[parseInt(m)]+t[w]}if(w==0&&b<4){i+=e[h]}}i+=n}if(l!=""){var d=l.length;for(var k=0;k<d;k++){var x=l.substr(k,1);if(x!="0"){i+=a[Number(x)]+s[k]}}}if(i==""){i+=a[0]+n+v}else if(l==""||/^0*$/.test(l)){i+=v}return i};a["default"]=t}}]);

View File

@ -0,0 +1,2 @@
/*! For license information please see 70f6ef3b44287edfd53418aa08707a3b.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/70f6ef3b44287edfd53418aa08707a3b"],{"./src/api/newCollection.ts":function(e,r,t){t.d(r,{MpCashManagementOrder:function(){return u},MpCashManagementOrderAccount:function(){return s},MpCashManagementOrderList:function(){return a},MpCashManagementOrderPost:function(){return c},MpShouldCollectOrderPurchaser:function(){return o}});var n=t("./src/use/useHttp.ts");var a=function MpCashManagementOrderList(){return(0,n.useRequest)({url:"/v2/mp/cashManagementOrder/list",method:"get"})};var u=function MpCashManagementOrder(){return(0,n.useRequest)({url:"/v2/mp/cashManagementOrder",method:"get"})};var s=function MpCashManagementOrderAccount(){return(0,n.useRequest)({url:"/v2/mp/cashManagementOrder/account",method:"get"})};var c=function MpCashManagementOrderPost(){return(0,n.useRequest)({url:"/v2/mp/cashManagementOrder",method:"post"})};var o=function MpShouldCollectOrderPurchaser(){return(0,n.useRequest)({url:"/v2/mp/shouldCollectOrder/purchaser",method:"get"})}}}]);

View File

@ -0,0 +1,2 @@
/*! For license information please see 77c6c00ee9ac4bfa87e3885cb3a9f4ce.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/77c6c00ee9ac4bfa87e3885cb3a9f4ce"],{"./src/use/useUploadImage.ts":function(e,t,n){var a=n("./node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js");var r=n("./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js");var s=n("./node_modules/@tarojs/taro/index.js");var c=n.n(s);var o=n("./src/common/constant.ts");var i=n("./src/api/cdn.ts");t["default"]=function(){var e=(0,i.GetSignApi)(),t=e.fetchData;var n=function getSecret(e,n){return new Promise(function(){var n=(0,r["default"])((0,a["default"])().mark((function _callee(n,r){var s,c,o;return(0,a["default"])().wrap((function _callee$(a){while(1)switch(a.prev=a.next){case 0:s="/".concat(e,"/{filemd5}{day}{hour}{min}{sec}{.suffix}");c={method:"post",save_key:s};a.next=4;return t(c);case 4:o=a.sent;if(o.success){n(o.data)}else{r({code:o.code||"9999",msg:o.msg})}case 6:case"end":return a.stop()}}),_callee)})));return function(e,t){return n.apply(this,arguments)}}())};var s=function getFileType(e){if(!e){return false}var t=["gif","jpeg","jpg","bmp","png"];var n=["avi","wmv","mkv","mp4","mov","rm","3gp","flv","mpg","rmvb","quicktime"];if(RegExp(".?(".concat(t.join("|"),")$"),"i").test(e.toLowerCase())){return"image"}else if(RegExp(".(".concat(n.join("|"),")$"),"i").test(e.toLowerCase())){return"video"}else{return false}};var u=function uploadCDNImg(e,t,a){var r=e.path;console.log("filetype::",r);if(!s(r)){c().showToast({title:"上传文件类型错误",icon:"none",duration:3800});return false}return new Promise((function(r,s){n(t,a).then((function(t){var n=t;console.log("bucket",n.bucket);var a={authorization:n.authorization,policy:n.policy};var i=c().uploadFile({url:"".concat(o.UPLOAD_CDN_URL).concat(n.bucket),formData:a,filePath:e.path,name:"file",success:function success(e){r(JSON.parse("".concat(e.data)))},fail:function fail(e){console.log(e);s(e)}});i.progress((function(e){console.log("上传进度",e.progress);if(e.progress<100){c().showLoading({title:"上传中..."})}else{c().hideLoading()}}))})).catch((function(e){s(e);c().showToast({title:"获取密钥失败!",icon:"none",duration:3800})}))}))};var l=function getWxPhoto(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:1;return new Promise((function(n,s){var o=[];c().chooseImage({count:t,sizeType:["original","compressed"],sourceType:["album","camera"],success:function success(c){return(0,r["default"])((0,a["default"])().mark((function _callee2(){var r,i,l;return(0,a["default"])().wrap((function _callee2$(a){while(1)switch(a.prev=a.next){case 0:a.prev=0;if(!(t>1)){a.next=14;break}r=0;case 3:if(!(r<c.tempFiles.length)){a.next=11;break}a.next=6;return u(c.tempFiles[r],e,e);case 6:i=a.sent;o.push(i);case 8:r++;a.next=3;break;case 11:n(o);a.next=18;break;case 14:a.next=16;return u(c.tempFiles[0],e,e);case 16:l=a.sent;n(l);case 18:a.next=23;break;case 20:a.prev=20;a.t0=a["catch"](0);s(a.t0);case 23:case"end":return a.stop()}}),_callee2,null,[[0,20]])})))()}})}))};var f=function getChatPhoto(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:1;return new Promise((function(n,s){var o=[];c().chooseMessageFile({count:t,type:"image",success:function success(c){return(0,r["default"])((0,a["default"])().mark((function _callee3(){var r,i,l;return(0,a["default"])().wrap((function _callee3$(a){while(1)switch(a.prev=a.next){case 0:a.prev=0;if(!(t>1)){a.next=14;break}r=0;case 3:if(!(r<c.tempFiles.length)){a.next=11;break}a.next=6;return u(c.tempFiles[r],e,e);case 6:i=a.sent;o.push(i);case 8:r++;a.next=3;break;case 11:n(o);a.next=18;break;case 14:a.next=16;return u(c.tempFiles[0],e,e);case 16:l=a.sent;n(l);case 18:a.next=23;break;case 20:a.prev=20;a.t0=a["catch"](0);s(a.t0);case 23:case"end":return a.stop()}}),_callee3,null,[[0,20]])})))()}})}))};return{uploadCDNImg:u,getWxPhoto:l,getChatPhoto:f}}}}]);

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,2 @@
/*! For license information please see b14021f24a99c16a41f3ddce1a2c0358.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/b14021f24a99c16a41f3ddce1a2c0358"],{"./src/components/uploadImage/index.tsx":function(e,a,n){var t=n("./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js");var r=n("./node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js");var s=n("./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js");var o=n("./node_modules/@babel/runtime/helpers/esm/slicedToArray.js");var c=n("./node_modules/@tarojs/taro/index.js");var l=n.n(c);var u=n("./node_modules/@tarojs/plugin-platform-weapp/dist/components-react.js");var i=n("./node_modules/react/cjs/react.production.min.js");var d=n("./src/components/uploadImage/index.module.scss");var f=n("./src/use/useUploadImage.ts");var m=n("./src/common/format.js");var p=n("./src/components/popup/index.tsx");var v=n("./src/components/iconfont/iconfont.tsx");var h=n("./node_modules/react/cjs/react-jsx-runtime.production.min.js");var x=function PictureItem(e){var a=e.onChange,n=e.defaultList,c=e.onlyRead,x=c===void 0?false:c;var j=(0,f["default"])(),g=j.getWxPhoto,w=j.getChatPhoto;var b=(0,i.useState)([]),k=(0,o["default"])(b,2),_=k[0],I=k[1];var C=(0,i.useState)(false),y=(0,o["default"])(C,2),N=y[0],V=y[1];var P=(0,i.useState)([{id:1,name:"手机相册",check:false},{id:2,name:"从微信对话选择",check:false}]),z=(0,o["default"])(P,2),E=z[0],F=z[1];(0,i.useEffect)((function(){I(n||[])}),[n]);var S=function(){var e=(0,s["default"])((0,r["default"])().mark((function _callee(){return(0,r["default"])().wrap((function _callee$(e){while(1)switch(e.prev=e.next){case 0:V(true);case 1:case"end":return e.stop()}}),_callee)})));return function uploadImage(){return e.apply(this,arguments)}}();var T=function(){var e=(0,s["default"])((0,r["default"])().mark((function _callee2(e){var a;var n,s;return(0,r["default"])().wrap((function _callee2$(r){while(1)switch(r.prev=r.next){case 0:if(!(e==1)){r.next=6;break}r.next=3;return g("after-sale",5);case 3:n=r.sent;r.next=9;break;case 6:r.next=8;return w("after-sale",5);case 8:n=r.sent;case 9:s=[];(a=n)===null||a===void 0?void 0:a.forEach((function(e){s.push(e.url)}));I([].concat((0,t["default"])(_),s));V(false);case 13:case"end":return r.stop()}}),_callee2)})));return function handPic(a){return e.apply(this,arguments)}}();var U=function delImage(e){_.splice(e,1);I((function(){return(0,t["default"])(_)}))};(0,i.useEffect)((function(){a===null||a===void 0?void 0:a(_)}),[_]);var A=function showImage(){var e=_===null||_===void 0?void 0:_.map((function(e){return(0,m.formatImgUrl)(e,"!w800")}));l().previewImage({current:e[0],urls:e})};var B=function handItem(e){E.map((function(a){if(e.id==a.id){a.check=true}else{a.check=false}return a}));F((0,t["default"])(E));T(e.id)};return(0,h.jsxs)(h.Fragment,{children:[(0,h.jsxs)(u.View,{className:d["default"].image_main,children:[_===null||_===void 0?void 0:_.map((function(e,a){return(0,h.jsxs)(u.View,{className:d["default"].ImgItem,children:[(0,h.jsx)(u.Image,{mode:"aspectFill",src:(0,m.formatImgUrl)(e),onClick:A}),!x&&(0,h.jsx)(u.View,{onClick:function onClick(){return U(a)},children:(0,h.jsx)(v["default"],{name:"icon-guanbi",size:30,customClassName:d["default"].miconfont_close,color:"#ffffff"})})]},a)})),!x&&(0,h.jsx)(u.View,{className:d["default"].uploadImg,onClick:S,children:(0,h.jsx)(v["default"],{name:"icon-xinzeng",size:100,color:"#d8d8d8"})})]}),(0,h.jsx)(p["default"],{title:"选择方式",show:N,onClose:function onClose(){return V(false)},isFixed:true,children:(0,h.jsx)(u.View,{className:d["default"].bigBoxThree,children:E.map((function(e,a){return(0,h.jsx)(u.View,{className:d["default"].itemBox,onClick:function onClick(){return B(e)},children:e.name},a)}))})})]})};a["default"]=(0,i.memo)(x)}}]);

View File

@ -0,0 +1,391 @@
/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./src/components/uploadImage/index.module.scss ***!
\********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.index-module__common_safe_area_y___RxGYu {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.index-module__flex-col___oJX6A {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.index-module__flex-row___EwXBU {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.index-module__justify-between___gEVlI {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__justify-center___KnkuE {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.index-module__items-center___XWwer {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__flex-item___cqsdj {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.index-module__full-100___orlN2 {
width: 100%;
height: 100%;
}
.index-module__color-blue___RCmKF {
color: #3287EC;
}
.index-module__color-yellow___VEJVV {
color: #FF9100;
}
.index-module__color-green___Mk_9J {
color: #00B837;
}
.index-module__color-grey___SozQV {
color: #707070;
}
.index-module__color-white___N3DnK {
color: white;
}
.index-module__s-w___L1ksV::after {
content: "W";
font-size: 28rpx;
}
.index-module__s-e___CSPlj::after {
content: "E";
font-size: 28rpx;
}
.index-module__filter___HwQTh {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.index-module__iconfont___E93GP {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.index-module__icon-shouhou1___HghSN:before {
content: "\e641";
}
.index-module__icon-cangku1___MuKNb:before {
content: "\e642";
}
.index-module__icon-saoma___u1NDi:before {
content: "\e643";
}
.index-module__icon-dizhi1___s7hRB:before {
content: "\e644";
}
.index-module__icon-huodaofukuan___flF9k:before {
content: "\e645";
}
.index-module__icon-yufukuan1___XL_sz:before {
content: "\e646";
}
.index-module__icon-yue___ZKXx6:before {
content: "\e647";
}
.index-module__icon-zidingyi___WzU18:before {
content: "\e648";
}
.index-module__icon-jinetiaozheng___lVwcl:before {
content: "\e649";
}
.index-module__icon-tuikuan1___RDyuf:before {
content: "\e64a";
}
.index-module__icon-zhankai___evFZU:before {
content: "\e63f";
}
.index-module__icon-shouqi___OCI0r:before {
content: "\e640";
}
.index-module__icon-lujing___RI4Mw:before {
content: "\e63e";
}
.index-module__icon-jizhumima___h6eGe:before {
content: "\e63c";
}
.index-module__icon-a-jizhumima___MTqZt:before {
content: "\e63d";
}
.index-module__icon-weixindenglu___o_8Ox:before {
content: "\e63b";
}
.index-module__icon-kehuxinxi___FV_zj:before {
content: "\e63a";
}
.index-module__icon-yewuyuanqizi___ffzOm:before {
content: "\e639";
}
.index-module__icon-chakanquanbukehu___t5T9h:before {
content: "\e638";
}
.index-module__icon-biyan___LJoEL:before {
content: "\e637";
}
.index-module__icon-bianji___SzpNK:before {
content: "\e61e";
}
.index-module__icon-daikuan___Nzz6U:before {
content: "\e61f";
}
.index-module__icon-cangku___J0lfw:before {
content: "\e620";
}
.index-module__icon-guanlidingdan___sGyXO:before {
content: "\e621";
}
.index-module__icon-mima___Kz1sR:before {
content: "\e622";
}
.index-module__icon-guanbi___SWpzl:before {
content: "\e623";
}
.index-module__icon-jianshao____3pEP:before {
content: "\e624";
}
.index-module__icon-dingwei___h01xo:before {
content: "\e625";
}
.index-module__icon-saomiao___SVPeW:before {
content: "\e626";
}
.index-module__icon-peihuo___xUVHW:before {
content: "\e627";
}
.index-module__icon-shaixuan___wKxd2:before {
content: "\e628";
}
.index-module__icon-paiming___yi4wn:before {
content: "\e629";
}
.index-module__icon-shanchusousuoxinxi___Le1Gi:before {
content: "\e62a";
}
.index-module__icon-shijian____uwiY:before {
content: "\e62b";
}
.index-module__icon-sousuo___f2M7w:before {
content: "\e62c";
}
.index-module__icon-shouhou___ZvJeK:before {
content: "\e62d";
}
.index-module__icon-sousuofanhui___Aun0d:before {
content: "\e62e";
}
.index-module__icon-sousuoshanchu___IyeeP:before {
content: "\e62f";
}
.index-module__icon-tuikuan___o6X74:before {
content: "\e630";
}
.index-module__icon-tishi___LQJmC:before {
content: "\e631";
}
.index-module__icon-xianxiahuizong___cC9M0:before {
content: "\e632";
}
.index-module__icon-xinzeng___m_gDK:before {
content: "\e633";
}
.index-module__icon-yonghuming___hU3fB:before {
content: "\e634";
}
.index-module__icon-yanjing___g3lmE:before {
content: "\e635";
}
.index-module__icon-yufukuan___JMGBE:before {
content: "\e636";
}
.index-module__icon-wodekefu___gynr9:before {
content: "\e60c";
}
.index-module__icon-dizhi___Pnqk3:before {
content: "\e60d";
}
.index-module__icon-shouhouzhongxin___Wg1xa:before {
content: "\e60e";
}
.index-module__icon-wodeshoucang___rNSi4:before {
content: "\e60f";
}
.index-module__icon-shoukuanliebiao___z5SXN:before {
content: "\e610";
}
.index-module__icon-madanguanli___uRb9P:before {
content: "\e611";
}
.index-module__icon-qusechazhao___XeZzz:before {
content: "\e612";
}
.index-module__icon-pandiansaoma___XZegC:before {
content: "\e613";
}
.index-module__icon-yaoqingma___MO0O6:before {
content: "\e614";
}
.index-module__icon-duizhang___Pj6VT:before {
content: "\e615";
}
.index-module__icon-tihuoliebiao___yJnEn:before {
content: "\e616";
}
.index-module__icon-yangpinduibi___wYZrO:before {
content: "\e617";
}
.index-module__icon-yansequyang___gtiOk:before {
content: "\e618";
}
.index-module__icon-fahuoliebiao___mfSHY:before {
content: "\e619";
}
.index-module__icon-yuncangkucun___V79qi:before {
content: "\e61a";
}
.index-module__icon-xiaoshou___M2etC:before {
content: "\e61b";
}
.index-module__icon-qianzhicangkucun____cMxN:before {
content: "\e61c";
}
.index-module__icon-lingquseka___O7DLf:before {
content: "\e61d";
}
.index-module__icon-gouwu1___d7v27:before {
content: "\e608";
}
.index-module__icon-dingdan1___QqWnw:before {
content: "\e609";
}
.index-module__icon-gerenzhongxin1___E6QJf:before {
content: "\e60a";
}
.index-module__icon-shouye1___XZ5jA:before {
content: "\e60b";
}
.index-module__icon-gerenzhongxin___RLQjj:before {
content: "\e604";
}
.index-module__icon-dingdan___XOcna:before {
content: "\e605";
}
.index-module__icon-shouye___eeJ9f:before {
content: "\e606";
}
.index-module__icon-gouwu___H2ebX:before {
content: "\e607";
}
.index-module__image_main___i8Ggt {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.index-module__image_main___i8Ggt .index-module__uploadImg___rj88P {
width: 143rpx;
height: 143rpx;
background: #f3f3f3;
border-radius: 8rpx;
margin-top: 20rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
position: relative;
position: relative;
}
.index-module__image_main___i8Ggt .index-module__uploadImg___rj88P .index-module__miconfont___QFFs3 {
color: #d8d8d8;
font-size: 100rpx;
}
.index-module__image_main___i8Ggt .index-module__ImgItem___at70w {
width: 143rpx;
height: 143rpx;
background: #f3f3f3;
border-radius: 8rpx;
margin-right: 20rpx;
margin-top: 20rpx;
position: relative;
border-radius: 10rpx;
}
.index-module__image_main___i8Ggt .index-module__ImgItem___at70w image {
width: 100%;
height: 100%;
border-radius: 10rpx;
}
.index-module__image_main___i8Ggt .index-module__ImgItem___at70w .index-module__miconfont_close___B691k {
width: 43rpx;
height: 43rpx;
background-color: #7f7f7f;
border-radius: 50%;
position: absolute;
right: -10rpx;
top: -10rpx;
text-align: center;
line-height: 43rpx;
color: #fff;
font-size: 30rpx;
}
.index-module__bigBoxThree___gMuZD {
width: 100%;
height: 150rpx;
}
.index-module__bigBoxThree___gMuZD .index-module__itemBox___MnBHI {
width: 100%;
height: 88rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
line-height: 88rpx;
font-size: 28rpx;
font-weight: 500;
color: #000000;
border-bottom: 1px solid #f7f7f7;
}

2
dist/pages/addFabric/index.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,99 @@
/*! ../../../node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./index.tsx */
/*! ../goods/index.module.scss */
/*! ../goodsItem */
/*! ./components/goods */
/*! ./components/shoppingCart */
/*! ./index.module.scss */
/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */
/*! ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js */
/*! ./node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js */
/*! ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js */
/*! ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js */
/*! @/api/index */
/*! @/api/order */
/*! @/api/search */
/*! @/common/format */
/*! @/common/util */
/*! @/components/Divider */
/*! @/components/LabAndImg */
/*! @/components/dotLoading */
/*! @/components/empty */
/*! @/components/infiniteScroll */
/*! @/components/popup */
/*! @/components/search */
/*! @tarojs/components */
/*! @tarojs/components/virtual-list */
/*! @tarojs/runtime */
/*! @tarojs/taro */
/*! classnames */
/*! react */
/*! react/jsx-runtime */
/*!***************************************!*\
!*** ./src/pages/addFabric/index.tsx ***!
\***************************************/
/*!***********************************************!*\
!*** ./src/pages/addFabric/index.module.scss ***!
\***********************************************/
/*!********************************************************!*\
!*** ./src/pages/addFabric/components/goods/index.tsx ***!
\********************************************************/
/*!**********************************************************!*\
!*** ./node_modules/memoize-one/dist/memoize-one.esm.js ***!
\**********************************************************/
/*!************************************************************!*\
!*** ./src/pages/addFabric/components/goodsItem/index.tsx ***!
\************************************************************/
/*!***************************************************************!*\
!*** ./src/pages/addFabric/components/shoppingCart/index.tsx ***!
\***************************************************************/
/*!****************************************************************!*\
!*** ./src/pages/addFabric/components/goods/index.module.scss ***!
\****************************************************************/
/*!********************************************************************!*\
!*** ./src/pages/addFabric/components/goodsItem/index.module.scss ***!
\********************************************************************/
/*!***********************************************************************!*\
!*** ./src/pages/addFabric/components/shoppingCart/index.module.scss ***!
\***********************************************************************/
/*!************************************************************************************************************!*\
!*** ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./src/pages/addFabric/index.tsx ***!
\************************************************************************************************************/

1
dist/pages/addFabric/index.json vendored Normal file
View File

@ -0,0 +1 @@
{"navigationBarTitleText":"添加面料","usingComponents":{"custom-wrapper":"../../custom-wrapper","comp":"../../comp"}}

2
dist/pages/addFabric/index.wxml vendored Normal file
View File

@ -0,0 +1,2 @@
<import src="../../base.wxml"/>
<template is="taro_tmpl" data="{{root:root}}" />

1787
dist/pages/addFabric/index.wxss vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,2 @@
/*! For license information please see 5566dc4ffaf3cd6065a5b044ac71280a.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/5566dc4ffaf3cd6065a5b044ac71280a"],{"./src/api/search.ts":function(t,s,c){c.d(s,{MpProductList:function(){return r}});var u=c("./src/use/useHttp.ts");var r=function MpProductList(){return(0,u.useRequest)({url:"/v2/mp/product/list",method:"get"})}}}]);

2
dist/pages/addressManager/index.js vendored Normal file
View File

@ -0,0 +1,2 @@
"use strict";require("./sub-common/dde3895fab754ea605d2697ad6817a2a.js");require("./sub-common/0c45a2ac643e2e02a31775755227815f.js");/*! For license information please see index.js.LICENSE.txt */
(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["pages/addressManager/index"],{"./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./src/pages/addressManager/index.tsx":function(e,a,s){var r=s("./node_modules/@tarojs/plugin-platform-weapp/dist/components-react.js");var n=s("./node_modules/@tarojs/taro/index.js");var d=s.n(n);var t=s("./src/components/AddressList/index.tsx");var o=s("./node_modules/react/cjs/react-jsx-runtime.production.min.js");var u=function AddressManager(){var e=(0,n.useRouter)();return(0,o.jsx)(r.View,{className:"address-manager",children:(0,o.jsx)(t["default"],{refresherEnabled:true,purchaser_id:e.params.purchaser_id})})};a["default"]=u},"./src/pages/addressManager/index.tsx":function(e,a,s){var r=s("./node_modules/@tarojs/runtime/dist/runtime.esm.js");var n=s("./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./src/pages/addressManager/index.tsx");var d={navigationBarTitleText:"地址管理",enableShareAppMessage:true};n["default"].enableShareAppMessage=true;var t=Page((0,r.createPageConfig)(n["default"],"pages/addressManager/index",{root:{cn:[]}},d||{}));var o=n["default"]}},function(e){var __webpack_exec__=function(a){return e(e.s=a)};e.O(0,["sub-common/dde3895fab754ea605d2697ad6817a2a","sub-common/0c45a2ac643e2e02a31775755227815f","sub-common/b0a596b7a71b799c99c3d7e1aa4e37f0","taro","vendors","common"],(function(){return __webpack_exec__("./src/pages/addressManager/index.tsx")}));var a=e.O()}]);

View File

@ -0,0 +1,19 @@
/*! ../../../node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./index.tsx */
/*! @/components/AddressList */
/*! @tarojs/components */
/*! @tarojs/runtime */
/*! @tarojs/taro */
/*! react/jsx-runtime */
/*!********************************************!*\
!*** ./src/pages/addressManager/index.tsx ***!
\********************************************/
/*!*****************************************************************************************************************!*\
!*** ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./src/pages/addressManager/index.tsx ***!
\*****************************************************************************************************************/

1
dist/pages/addressManager/index.json vendored Normal file
View File

@ -0,0 +1 @@
{"navigationBarTitleText":"地址管理","usingComponents":{"custom-wrapper":"../../custom-wrapper","comp":"../../comp"}}

2
dist/pages/addressManager/index.wxml vendored Normal file
View File

@ -0,0 +1,2 @@
<import src="../../base.wxml"/>
<template is="taro_tmpl" data="{{root:root}}" />

307
dist/pages/addressManager/index.wxss vendored Normal file
View File

@ -0,0 +1,307 @@
@charset "UTF-8";@import "./sub-common/b0a596b7a71b799c99c3d7e1aa4e37f0.wxss";/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[2].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[2].use[4]!./src/pages/addressManager/index.scss ***!
\***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.common_safe_area_y {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.flex-col {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.flex-row {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.justify-between {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.justify-center {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.items-center {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.flex-item {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.full-100 {
width: 100%;
height: 100%;
}
.color-blue {
color: #3287EC;
}
.color-yellow {
color: #FF9100;
}
.color-green {
color: #00B837;
}
.color-grey {
color: #707070;
}
.color-white {
color: white;
}
.s-w::after {
content: "W";
font-size: 28rpx;
}
.s-e::after {
content: "E";
font-size: 28rpx;
}
.filter {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-shouhou1:before {
content: "\e641";
}
.icon-cangku1:before {
content: "\e642";
}
.icon-saoma:before {
content: "\e643";
}
.icon-dizhi1:before {
content: "\e644";
}
.icon-huodaofukuan:before {
content: "\e645";
}
.icon-yufukuan1:before {
content: "\e646";
}
.icon-yue:before {
content: "\e647";
}
.icon-zidingyi:before {
content: "\e648";
}
.icon-jinetiaozheng:before {
content: "\e649";
}
.icon-tuikuan1:before {
content: "\e64a";
}
.icon-zhankai:before {
content: "\e63f";
}
.icon-shouqi:before {
content: "\e640";
}
.icon-lujing:before {
content: "\e63e";
}
.icon-jizhumima:before {
content: "\e63c";
}
.icon-a-jizhumima:before {
content: "\e63d";
}
.icon-weixindenglu:before {
content: "\e63b";
}
.icon-kehuxinxi:before {
content: "\e63a";
}
.icon-yewuyuanqizi:before {
content: "\e639";
}
.icon-chakanquanbukehu:before {
content: "\e638";
}
.icon-biyan:before {
content: "\e637";
}
.icon-bianji:before {
content: "\e61e";
}
.icon-daikuan:before {
content: "\e61f";
}
.icon-cangku:before {
content: "\e620";
}
.icon-guanlidingdan:before {
content: "\e621";
}
.icon-mima:before {
content: "\e622";
}
.icon-guanbi:before {
content: "\e623";
}
.icon-jianshao:before {
content: "\e624";
}
.icon-dingwei:before {
content: "\e625";
}
.icon-saomiao:before {
content: "\e626";
}
.icon-peihuo:before {
content: "\e627";
}
.icon-shaixuan:before {
content: "\e628";
}
.icon-paiming:before {
content: "\e629";
}
.icon-shanchusousuoxinxi:before {
content: "\e62a";
}
.icon-shijian:before {
content: "\e62b";
}
.icon-sousuo:before {
content: "\e62c";
}
.icon-shouhou:before {
content: "\e62d";
}
.icon-sousuofanhui:before {
content: "\e62e";
}
.icon-sousuoshanchu:before {
content: "\e62f";
}
.icon-tuikuan:before {
content: "\e630";
}
.icon-tishi:before {
content: "\e631";
}
.icon-xianxiahuizong:before {
content: "\e632";
}
.icon-xinzeng:before {
content: "\e633";
}
.icon-yonghuming:before {
content: "\e634";
}
.icon-yanjing:before {
content: "\e635";
}
.icon-yufukuan:before {
content: "\e636";
}
.icon-wodekefu:before {
content: "\e60c";
}
.icon-dizhi:before {
content: "\e60d";
}
.icon-shouhouzhongxin:before {
content: "\e60e";
}
.icon-wodeshoucang:before {
content: "\e60f";
}
.icon-shoukuanliebiao:before {
content: "\e610";
}
.icon-madanguanli:before {
content: "\e611";
}
.icon-qusechazhao:before {
content: "\e612";
}
.icon-pandiansaoma:before {
content: "\e613";
}
.icon-yaoqingma:before {
content: "\e614";
}
.icon-duizhang:before {
content: "\e615";
}
.icon-tihuoliebiao:before {
content: "\e616";
}
.icon-yangpinduibi:before {
content: "\e617";
}
.icon-yansequyang:before {
content: "\e618";
}
.icon-fahuoliebiao:before {
content: "\e619";
}
.icon-yuncangkucun:before {
content: "\e61a";
}
.icon-xiaoshou:before {
content: "\e61b";
}
.icon-qianzhicangkucun:before {
content: "\e61c";
}
.icon-lingquseka:before {
content: "\e61d";
}
.icon-gouwu1:before {
content: "\e608";
}
.icon-dingdan1:before {
content: "\e609";
}
.icon-gerenzhongxin1:before {
content: "\e60a";
}
.icon-shouye1:before {
content: "\e60b";
}
.icon-gerenzhongxin:before {
content: "\e604";
}
.icon-dingdan:before {
content: "\e605";
}
.icon-shouye:before {
content: "\e606";
}
.icon-gouwu:before {
content: "\e607";
}
.address-manager {
height: 100vh;
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,448 @@
/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[2].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[2].use[4]!./src/components/AddressList/index.scss ***!
\*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.common_safe_area_y {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.flex-col {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.flex-row {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.justify-between {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.justify-center {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.items-center {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.flex-item {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.full-100 {
width: 100%;
height: 100%;
}
.color-blue {
color: #3287EC;
}
.color-yellow {
color: #FF9100;
}
.color-green {
color: #00B837;
}
.color-grey {
color: #707070;
}
.color-white {
color: white;
}
.s-w::after {
content: "W";
font-size: 28rpx;
}
.s-e::after {
content: "E";
font-size: 28rpx;
}
.filter {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-shouhou1:before {
content: "\e641";
}
.icon-cangku1:before {
content: "\e642";
}
.icon-saoma:before {
content: "\e643";
}
.icon-dizhi1:before {
content: "\e644";
}
.icon-huodaofukuan:before {
content: "\e645";
}
.icon-yufukuan1:before {
content: "\e646";
}
.icon-yue:before {
content: "\e647";
}
.icon-zidingyi:before {
content: "\e648";
}
.icon-jinetiaozheng:before {
content: "\e649";
}
.icon-tuikuan1:before {
content: "\e64a";
}
.icon-zhankai:before {
content: "\e63f";
}
.icon-shouqi:before {
content: "\e640";
}
.icon-lujing:before {
content: "\e63e";
}
.icon-jizhumima:before {
content: "\e63c";
}
.icon-a-jizhumima:before {
content: "\e63d";
}
.icon-weixindenglu:before {
content: "\e63b";
}
.icon-kehuxinxi:before {
content: "\e63a";
}
.icon-yewuyuanqizi:before {
content: "\e639";
}
.icon-chakanquanbukehu:before {
content: "\e638";
}
.icon-biyan:before {
content: "\e637";
}
.icon-bianji:before {
content: "\e61e";
}
.icon-daikuan:before {
content: "\e61f";
}
.icon-cangku:before {
content: "\e620";
}
.icon-guanlidingdan:before {
content: "\e621";
}
.icon-mima:before {
content: "\e622";
}
.icon-guanbi:before {
content: "\e623";
}
.icon-jianshao:before {
content: "\e624";
}
.icon-dingwei:before {
content: "\e625";
}
.icon-saomiao:before {
content: "\e626";
}
.icon-peihuo:before {
content: "\e627";
}
.icon-shaixuan:before {
content: "\e628";
}
.icon-paiming:before {
content: "\e629";
}
.icon-shanchusousuoxinxi:before {
content: "\e62a";
}
.icon-shijian:before {
content: "\e62b";
}
.icon-sousuo:before {
content: "\e62c";
}
.icon-shouhou:before {
content: "\e62d";
}
.icon-sousuofanhui:before {
content: "\e62e";
}
.icon-sousuoshanchu:before {
content: "\e62f";
}
.icon-tuikuan:before {
content: "\e630";
}
.icon-tishi:before {
content: "\e631";
}
.icon-xianxiahuizong:before {
content: "\e632";
}
.icon-xinzeng:before {
content: "\e633";
}
.icon-yonghuming:before {
content: "\e634";
}
.icon-yanjing:before {
content: "\e635";
}
.icon-yufukuan:before {
content: "\e636";
}
.icon-wodekefu:before {
content: "\e60c";
}
.icon-dizhi:before {
content: "\e60d";
}
.icon-shouhouzhongxin:before {
content: "\e60e";
}
.icon-wodeshoucang:before {
content: "\e60f";
}
.icon-shoukuanliebiao:before {
content: "\e610";
}
.icon-madanguanli:before {
content: "\e611";
}
.icon-qusechazhao:before {
content: "\e612";
}
.icon-pandiansaoma:before {
content: "\e613";
}
.icon-yaoqingma:before {
content: "\e614";
}
.icon-duizhang:before {
content: "\e615";
}
.icon-tihuoliebiao:before {
content: "\e616";
}
.icon-yangpinduibi:before {
content: "\e617";
}
.icon-yansequyang:before {
content: "\e618";
}
.icon-fahuoliebiao:before {
content: "\e619";
}
.icon-yuncangkucun:before {
content: "\e61a";
}
.icon-xiaoshou:before {
content: "\e61b";
}
.icon-qianzhicangkucun:before {
content: "\e61c";
}
.icon-lingquseka:before {
content: "\e61d";
}
.icon-gouwu1:before {
content: "\e608";
}
.icon-dingdan1:before {
content: "\e609";
}
.icon-gerenzhongxin1:before {
content: "\e60a";
}
.icon-shouye1:before {
content: "\e60b";
}
.icon-gerenzhongxin:before {
content: "\e604";
}
.icon-dingdan:before {
content: "\e605";
}
.icon-shouye:before {
content: "\e606";
}
.icon-gouwu:before {
content: "\e607";
}
.address-container {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.address-scroll-view {
height: 100%;
-webkit-box-sizing: border-box;
box-sizing: border-box;
position: relative;
}
.address-scroll-view scroll-view {
height: 100%;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.address-scroll-view .address-scroll-view-content {
padding-bottom: 300rpx;
}
.address-scroll-view .address-list {
background: #ffffff;
border-radius: 20rpx;
padding: 24rpx 30rpx;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 18rpx 24rpx 0;
}
.address-scroll-view .address-active {
border: 1px solid #68b4ff;
}
.address-scroll-view .address-list-last {
margin-bottom: 300rpx;
}
.address-scroll-view .address-user {
font-size: 32rpx;
font-weight: 700;
text-align: left;
color: #000000;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.address-scroll-view .address-list-default {
background: #ffffff;
border-radius: 6rpx;
font-size: 20rpx;
font-weight: 400;
text-align: center;
color: #007aff;
padding: 4rpx 10rpx;
}
.address-scroll-view .address-list-phone {
font-size: 28rpx;
font-weight: 400;
color: #717171;
margin-left: 16rpx;
margin-right: 16rpx;
}
.address-scroll-view .address-edit {
padding: 10rpx;
}
.address-scroll-view .address-edit .icon-bianji {
font-size: 40rpx;
}
.address-scroll-view .address-list-info {
font-size: 28rpx;
font-weight: 400;
color: #000000;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
width: 557rpx;
}
.address-scroll-view .address-list-info view {
max-width: 557rpx;
}
.address-scroll-view .address-list-bottom {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
margin-top: 10rpx;
}
.address-scroll-view .add-address {
width: 668rpx;
height: 82rpx;
background: #007aff;
border-radius: 40rpx;
font-size: 32rpx;
font-weight: 400;
color: #ffffff;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
position: absolute;
bottom: 100rpx;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}
.address-scroll-view .address-no-data {
font-size: 24rpx;
font-weight: 400;
text-align: center;
color: #707070;
height: 100%;
padding-top: 40%;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.address-scroll-view .line {
margin-top: 16rpx;
width: 100%;
height: 1px;
background: #000000;
opacity: 0.1;
}
.address-scroll-view .bottom-font {
margin-top: 16rpx;
font-size: 28rpx;
font-weight: 400;
color: #676767;
}

View File

@ -0,0 +1,2 @@
/*! For license information please see dde3895fab754ea605d2697ad6817a2a.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/dde3895fab754ea605d2697ad6817a2a"],{"./src/api/addressList.ts":function(e,r,s){s.d(r,{GetAddressListApi:function(){return u},MpPurchaserAddress:function(){return n},MpPurchaserAddressDelete:function(){return p},MpPurchaserAddressGet:function(){return a},MpPurchaserAddressList:function(){return d},MpPurchaserAddressPut:function(){return c}});var t=s("./src/use/useHttp.ts");var u=function GetAddressListApi(){return(0,t.useRequest)({url:"/v2/mp/district/list",method:"get"})};var d=function MpPurchaserAddressList(){return(0,t.useRequest)({url:"/v2/mp/purchaser/address/list",method:"get"})};var n=function MpPurchaserAddress(){return(0,t.useRequest)({url:"/v2/mp/purchaser/address",method:"post"})};var a=function MpPurchaserAddressGet(){return(0,t.useRequest)({url:"/v2/mp/purchaser/address",method:"get"})};var c=function MpPurchaserAddressPut(){return(0,t.useRequest)({url:"/v2/mp/purchaser/address",method:"put"})};var p=function MpPurchaserAddressDelete(){return(0,t.useRequest)({url:"/v2/mp/purchaser/address",method:"delete"})}}}]);

2
dist/pages/applyGoods/index.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,51 @@
/*! ../../../node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./index.tsx */
/*! ./index.module.scss */
/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */
/*! ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js */
/*! ./node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js */
/*! ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js */
/*! ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js */
/*! @/api/order */
/*! @/components/Divider */
/*! @/components/LabAndImg */
/*! @/components/iconfont/iconfont */
/*! @/components/popup */
/*! @/components/saleModeTag */
/*! @/components/uploadImage */
/*! @tarojs/components */
/*! @tarojs/runtime */
/*! @tarojs/taro */
/*! classnames */
/*! react */
/*! react/jsx-runtime */
/*!****************************************!*\
!*** ./src/pages/applyGoods/index.tsx ***!
\****************************************/
/*!************************************************!*\
!*** ./src/pages/applyGoods/index.module.scss ***!
\************************************************/
/*!*************************************************************************************************************!*\
!*** ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./src/pages/applyGoods/index.tsx ***!
\*************************************************************************************************************/

1
dist/pages/applyGoods/index.json vendored Normal file
View File

@ -0,0 +1 @@
{"navigationBarTitleText":"申请退货","usingComponents":{"custom-wrapper":"../../custom-wrapper","comp":"../../comp"}}

2
dist/pages/applyGoods/index.wxml vendored Normal file
View File

@ -0,0 +1,2 @@
<import src="../../base.wxml"/>
<template is="taro_tmpl" data="{{root:root}}" />

848
dist/pages/applyGoods/index.wxss vendored Normal file
View File

@ -0,0 +1,848 @@
@charset "UTF-8";@import "./sub-common/f437345ae9818808a269edcd3d9d51d0.wxss";/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./src/pages/applyGoods/index.module.scss ***!
\**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.index-module__common_safe_area_y___hG2LL {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.index-module__flex-col___bdeiq {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.index-module__flex-row___Favt0 {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.index-module__justify-between___mePhi {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__justify-center___vZPv2 {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.index-module__items-center___c9edY {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__flex-item___Iaiap {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.index-module__full-100___Ge3DL {
width: 100%;
height: 100%;
}
.index-module__color-blue___UOfZu {
color: #3287EC;
}
.index-module__color-yellow___u5Abd {
color: #FF9100;
}
.index-module__color-green___UZtvD {
color: #00B837;
}
.index-module__color-grey___L6J6t {
color: #707070;
}
.index-module__color-white___B6D6m {
color: white;
}
.index-module__s-w___ctKrn::after {
content: "W";
font-size: 28rpx;
}
.index-module__s-e___BnIrf::after {
content: "E";
font-size: 28rpx;
}
.index-module__filter___I31N8 {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.index-module__iconfont___BDJ4C {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.index-module__icon-shouhou1___M4vSC:before {
content: "\e641";
}
.index-module__icon-cangku1___LEJtP:before {
content: "\e642";
}
.index-module__icon-saoma___rbuJy:before {
content: "\e643";
}
.index-module__icon-dizhi1___NUpiR:before {
content: "\e644";
}
.index-module__icon-huodaofukuan___i0eLZ:before {
content: "\e645";
}
.index-module__icon-yufukuan1___n9DRh:before {
content: "\e646";
}
.index-module__icon-yue___wuRAC:before {
content: "\e647";
}
.index-module__icon-zidingyi___EoRMO:before {
content: "\e648";
}
.index-module__icon-jinetiaozheng___MqrQg:before {
content: "\e649";
}
.index-module__icon-tuikuan1___kGTcz:before {
content: "\e64a";
}
.index-module__icon-zhankai___oBUGL:before {
content: "\e63f";
}
.index-module__icon-shouqi___RDtnr:before {
content: "\e640";
}
.index-module__icon-lujing___e2AOM:before {
content: "\e63e";
}
.index-module__icon-jizhumima___sCHrs:before {
content: "\e63c";
}
.index-module__icon-a-jizhumima___FyLoa:before {
content: "\e63d";
}
.index-module__icon-weixindenglu___k0_su:before {
content: "\e63b";
}
.index-module__icon-kehuxinxi___iWRLH:before {
content: "\e63a";
}
.index-module__icon-yewuyuanqizi___Ulj8A:before {
content: "\e639";
}
.index-module__icon-chakanquanbukehu___t_7kB:before {
content: "\e638";
}
.index-module__icon-biyan___HgupO:before {
content: "\e637";
}
.index-module__icon-bianji___ivmMe:before {
content: "\e61e";
}
.index-module__icon-daikuan___thElI:before {
content: "\e61f";
}
.index-module__icon-cangku___a7pdJ:before {
content: "\e620";
}
.index-module__icon-guanlidingdan___YOzDB:before {
content: "\e621";
}
.index-module__icon-mima___cUn3G:before {
content: "\e622";
}
.index-module__icon-guanbi___EzAZm:before {
content: "\e623";
}
.index-module__icon-jianshao___cz5_4:before {
content: "\e624";
}
.index-module__icon-dingwei___mXXnY:before {
content: "\e625";
}
.index-module__icon-saomiao___HNavo:before {
content: "\e626";
}
.index-module__icon-peihuo___OScGE:before {
content: "\e627";
}
.index-module__icon-shaixuan___XsxRE:before {
content: "\e628";
}
.index-module__icon-paiming___bWIpP:before {
content: "\e629";
}
.index-module__icon-shanchusousuoxinxi___Wp8tW:before {
content: "\e62a";
}
.index-module__icon-shijian___t4Eou:before {
content: "\e62b";
}
.index-module__icon-sousuo___RjAcb:before {
content: "\e62c";
}
.index-module__icon-shouhou___G4AM_:before {
content: "\e62d";
}
.index-module__icon-sousuofanhui___ug2Mh:before {
content: "\e62e";
}
.index-module__icon-sousuoshanchu___pDUqP:before {
content: "\e62f";
}
.index-module__icon-tuikuan___wy30D:before {
content: "\e630";
}
.index-module__icon-tishi___jm_24:before {
content: "\e631";
}
.index-module__icon-xianxiahuizong___Pz1XY:before {
content: "\e632";
}
.index-module__icon-xinzeng___KQ512:before {
content: "\e633";
}
.index-module__icon-yonghuming___hi5jv:before {
content: "\e634";
}
.index-module__icon-yanjing___XUG5v:before {
content: "\e635";
}
.index-module__icon-yufukuan___VLD7k:before {
content: "\e636";
}
.index-module__icon-wodekefu___lhOJW:before {
content: "\e60c";
}
.index-module__icon-dizhi___K8_RT:before {
content: "\e60d";
}
.index-module__icon-shouhouzhongxin___F0QQ3:before {
content: "\e60e";
}
.index-module__icon-wodeshoucang___ucgOT:before {
content: "\e60f";
}
.index-module__icon-shoukuanliebiao___MeJ4r:before {
content: "\e610";
}
.index-module__icon-madanguanli___wEthe:before {
content: "\e611";
}
.index-module__icon-qusechazhao___SzHUr:before {
content: "\e612";
}
.index-module__icon-pandiansaoma___DT09N:before {
content: "\e613";
}
.index-module__icon-yaoqingma___Kw_Hc:before {
content: "\e614";
}
.index-module__icon-duizhang___JDGfP:before {
content: "\e615";
}
.index-module__icon-tihuoliebiao___uihoQ:before {
content: "\e616";
}
.index-module__icon-yangpinduibi___VEpV6:before {
content: "\e617";
}
.index-module__icon-yansequyang___Y5oec:before {
content: "\e618";
}
.index-module__icon-fahuoliebiao___oYpow:before {
content: "\e619";
}
.index-module__icon-yuncangkucun___o2Miu:before {
content: "\e61a";
}
.index-module__icon-xiaoshou____gE6L:before {
content: "\e61b";
}
.index-module__icon-qianzhicangkucun___g_KwH:before {
content: "\e61c";
}
.index-module__icon-lingquseka___jB4b_:before {
content: "\e61d";
}
.index-module__icon-gouwu1___jAjdB:before {
content: "\e608";
}
.index-module__icon-dingdan1___JyhRW:before {
content: "\e609";
}
.index-module__icon-gerenzhongxin1___mZunY:before {
content: "\e60a";
}
.index-module__icon-shouye1___U5U8X:before {
content: "\e60b";
}
.index-module__icon-gerenzhongxin___eJjKf:before {
content: "\e604";
}
.index-module__icon-dingdan___ycPId:before {
content: "\e605";
}
.index-module__icon-shouye___dQo7o:before {
content: "\e606";
}
.index-module__icon-gouwu___Y6T0y:before {
content: "\e607";
}
.index-module__bgBox___kPrZg {
margin: 24rpx;
background: #ffffff;
border-radius: 16rpx;
overflow: hidden;
}
.index-module__goodsBox___fPl_X {
margin-top: 24rpx;
overflow: hidden;
border-bottom: 8rpx solid #f7f7f7;
}
.index-module__goodsBox___fPl_X .index-module__goodsProduct___QncEO {
font-size: 28rpx;
font-weight: 500;
color: #000000;
margin-left: 32rpx;
}
.index-module__goodsBox___fPl_X .index-module__goodsLine___SsIBE {
width: 638rpx;
height: 1px;
background: #000000;
opacity: 0.1;
margin-left: 32rpx;
margin-top: 24rpx;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k {
margin-top: 24rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k .index-module__itemPic___hXC12 {
margin-left: 32rpx;
margin-right: 42rpx;
width: 108rpx;
height: 108rpx;
border-radius: 5rpx;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k .index-module__itemRight___Plh81 {
padding-bottom: 24rpx;
width: 495rpx;
border-bottom: 1px solid #f7f7f7;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k .index-module__itemRight___Plh81 .index-module__item_right_top___v6Dql {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k .index-module__itemRight___Plh81 .index-module__item_right_top___v6Dql .index-module__itemName___iI_Ke {
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k .index-module__itemRight___Plh81 .index-module__item_right_top___v6Dql .index-module__itemNums___HDuYn {
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k .index-module__itemRight___Plh81 .index-module__item_right_Bottom___LHIMI {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k .index-module__itemRight___Plh81 .index-module__item_right_Bottom___LHIMI .index-module__itemMoney___kU5vI {
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k .index-module__itemRight___Plh81 .index-module__item_right_Bottom___LHIMI .index-module__itemMoneyOne___LNB66 {
font-size: 28rpx;
font-weight: 500;
color: #000000;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k .index-module__itemRight___Plh81 .index-module__item_right_Bottom___LHIMI .index-module__btn___E1ddN {
width: 120rpx;
height: 64rpx;
border-radius: 8rpx;
border: 1px solid #337fff;
font-size: 28rpx;
font-weight: 400;
color: #337fff;
text-align: center;
line-height: 64rpx;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k .index-module__itemRight___Plh81 .index-module__item_right_Bottom___LHIMI .index-module__btnOne___VPwWI {
width: 204rpx;
height: 64rpx;
border-radius: 8rpx;
border: 1px solid #337fff;
font-size: 28rpx;
font-weight: 400;
color: #337fff;
text-align: center;
line-height: 64rpx;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k .index-module__itemRight___Plh81 .index-module__item_right_Bottom___LHIMI .index-module__inputBox___MhLAq {
width: 189rpx;
height: 64rpx;
border-radius: 8rpx;
border: 1px solid #337fff;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k .index-module__itemRight___Plh81 .index-module__item_right_Bottom___LHIMI .index-module__inputBox___MhLAq .index-module__redceBox___OTNis {
width: 64rpx;
height: 64rpx;
border-radius: 8rpx 0rpx 0rpx 8rpx;
border-right: 1px solid #337fff;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k .index-module__itemRight___Plh81 .index-module__item_right_Bottom___LHIMI .index-module__inputBox___MhLAq .index-module__redceBox___OTNis .index-module__reduce___HDnB6 {
width: 20rpx;
height: 2rpx;
background: #337fff;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k .index-module__itemRight___Plh81 .index-module__item_right_Bottom___LHIMI .index-module__inputBox___MhLAq .index-module__inputBig___W4aDR {
width: 61rpx;
height: 64rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
text-align: center;
font-size: 24rpx;
font-weight: 400;
color: #337fff;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k .index-module__itemRight___Plh81 .index-module__item_right_Bottom___LHIMI .index-module__inputBox___MhLAq .index-module__addBox___suwT5 {
width: 64rpx;
height: 64rpx;
border-left: 1px solid #337fff;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
font-size: 40rpx;
color: #337fff;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k:last-child {
margin-top: 24rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k:last-child .index-module__itemPic___hXC12 {
margin-left: 32rpx;
margin-right: 42rpx;
width: 108rpx;
height: 108rpx;
border-radius: 8rpx;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k:last-child .index-module__itemRight___Plh81 {
padding-bottom: 24rpx;
width: 495rpx;
border-bottom: none;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k:last-child .index-module__itemRight___Plh81 .index-module__item_right_top___v6Dql {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k:last-child .index-module__itemRight___Plh81 .index-module__item_right_top___v6Dql .index-module__itemName___iI_Ke {
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k:last-child .index-module__itemRight___Plh81 .index-module__item_right_top___v6Dql .index-module__itemNums___HDuYn {
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k:last-child .index-module__itemRight___Plh81 .index-module__item_right_Bottom___LHIMI {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: flex-end;
-ms-flex-align: end;
align-items: flex-end;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k:last-child .index-module__itemRight___Plh81 .index-module__item_right_Bottom___LHIMI .index-module__itemMoney___kU5vI {
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k:last-child .index-module__itemRight___Plh81 .index-module__item_right_Bottom___LHIMI .index-module__itemMoneyOne___LNB66 {
font-size: 28rpx;
font-weight: 500;
color: #000000;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k:last-child .index-module__itemRight___Plh81 .index-module__item_right_Bottom___LHIMI .index-module__btn___E1ddN {
width: 120rpx;
height: 64rpx;
border-radius: 8rpx;
border: 1px solid #337fff;
font-size: 28rpx;
font-weight: 400;
color: #337fff;
text-align: center;
line-height: 64rpx;
}
.index-module__goodsBox___fPl_X .index-module__itemGoods___lPs9k:last-child .index-module__itemRight___Plh81 .index-module__item_right_Bottom___LHIMI .index-module__btnOne___VPwWI {
width: 204rpx;
height: 64rpx;
border-radius: 8rpx;
border: 1px solid #337fff;
font-size: 28rpx;
font-weight: 400;
color: #337fff;
text-align: center;
line-height: 64rpx;
}
.index-module__goodsBox___fPl_X {
border-bottom: none;
}
.index-module__hasSelect___vsnvt {
margin-left: 32rpx;
margin-right: 32rpx;
height: 54rpx;
background: #fef9f4;
border-radius: 8rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
font-size: 24rpx;
font-weight: 600;
color: #f79b31;
padding-left: 20rpx;
margin-bottom: 24rpx;
}
.index-module__resonBig___s4Qeq {
overflow: hidden;
margin: 0 24rpx;
background: #ffffff;
border-radius: 16rpx 16rpx 0rpx 0rpx;
}
.index-module__resonBig___s4Qeq .index-module__reasonItem___Qj7eY {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
border-bottom: 1px solid #f7f7f7;
margin: 32rpx;
padding-bottom: 32rpx;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__resonBig___s4Qeq .index-module__reasonItem___Qj7eY .index-module__reasonLeft___Qx34Q {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__resonBig___s4Qeq .index-module__reasonItem___Qj7eY .index-module__reasonLeft___Qx34Q .index-module__reasonFont___D8URT {
font-size: 28rpx;
font-weight: 500;
color: #000000;
}
.index-module__resonBig___s4Qeq .index-module__reasonItem___Qj7eY .index-module__reasonLeft___Qx34Q .index-module__xing___H0SE4 {
font-size: 28rpx;
font-weight: 500;
color: #e42945;
}
.index-module__resonBig___s4Qeq .index-module__reasonItem___Qj7eY .index-module__reasonLeft___Qx34Q .index-module__selectFont___RAdRp {
font-size: 28rpx;
font-weight: 400;
color: #000000;
margin-left: 40rpx;
}
.index-module__resonBig___s4Qeq .index-module__reasonItem___Qj7eY .index-module__chakanquanbukehu___ulQlK {
font-size: 50rpx;
}
.index-module__resonBig___s4Qeq .index-module__picBig___ZYObi {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-top: 32rpx;
display: flex;
padding-bottom: 32rpx;
}
.index-module__resonBig___s4Qeq .index-module__picBig___ZYObi .index-module__picFont___wxKgc {
width: 130rpx;
font-size: 28rpx;
font-weight: 500;
color: #000000;
margin-left: 32rpx;
}
.index-module__descBox___Wkj7b {
padding: 24rpx 0rpx 24rpx 0rpx;
margin: 32rpx;
background: #ffffff;
border-radius: 16rpx 16rpx 0rpx 0rpx;
}
.index-module__descBox___Wkj7b .index-module__title___ONbbm {
font-size: 28rpx;
font-weight: 500;
color: #000000;
margin-left: 32rpx;
}
.index-module__descBox___Wkj7b .index-module__textBox___oHaaT {
padding-top: 15rpx;
padding-left: 24rpx;
padding-right: 24rpx;
padding-bottom: 24rpx;
margin-right: 32rpx;
margin-top: 24rpx;
margin-left: 32rpx;
height: 210rpx;
background: #f6f6f6;
border-radius: 8rpx;
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__bottomBox___aBhcB {
width: 750rpx;
height: 160rpx;
background: #ffffff;
position: fixed;
bottom: 0;
z-index: 99;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding-top: 16rpx;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__bottomBox___aBhcB .index-module__resetBox___j2_JF {
margin-left: 48rpx;
width: 311rpx;
height: 80rpx;
border-radius: 44rpx;
border: 1px solid #087eff;
font-size: 28rpx;
font-weight: 500;
color: #337fff;
text-align: center;
line-height: 80rpx;
background-color: #fff;
}
.index-module__bottomBox___aBhcB .index-module__button___hqgQL {
margin-right: 32rpx;
width: 311rpx;
height: 80rpx;
background: #68b4ff;
border-radius: 44rpx;
font-size: 32rpx;
font-weight: 500;
color: #ffffff;
text-align: center;
line-height: 80rpx;
}
.index-module__bottomBox___aBhcB .index-module__activeButton___F4ih5 {
margin-right: 32rpx;
width: 311rpx;
height: 80rpx;
background: #337fff;
border-radius: 44rpx;
font-size: 32rpx;
font-weight: 500;
color: #fff;
text-align: center;
line-height: 80rpx;
}
.index-module__safeBox___PGLTZ {
height: 160rpx;
width: 100%;
}
.index-module__popupBox___LiRQp {
height: 500rpx;
padding-bottom: env(safe-area-inset-bottom);
}
.index-module__popupBox___LiRQp .index-module__thirdBox___zPFua {
margin-top: 20rpx;
padding-left: 48rpx;
}
.index-module__popupBox___LiRQp .index-module__thirdBox___zPFua .index-module__thirdTopfont___Uss8Y {
font-size: 28rpx;
font-weight: 500;
color: #000000;
}
.index-module__popupBox___LiRQp .index-module__thirdBox___zPFua .index-module__timeBox2___Ryq0G {
margin-top: 24rpx;
background-color: #f6f6f6;
height: 68rpx;
background: #e9e9e9;
border-radius: 8rpx;
margin-right: 48rpx;
text-align: center;
line-height: 68rpx;
position: relative;
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__popupBox___LiRQp .index-module__thirdBox___zPFua .index-module__timeBox2___Ryq0G .index-module__more___hgOBD {
position: absolute;
right: 30rpx;
top: 5rpx;
font-size: 40rpx;
}
.index-module__popupBox___LiRQp .index-module__thirdBox___zPFua .index-module__flexModebox___dXKBA {
margin-top: 24rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.index-module__popupBox___LiRQp .index-module__thirdBox___zPFua .index-module__flexModebox___dXKBA .index-module__activemodeBox___Fc0Sq {
margin-bottom: 16rpx;
margin-right: 16rpx;
padding: 17rpx 34rpx 17rpx 34rpx;
background: rgba(51, 127, 255, 0.1);
border-radius: 8rpx;
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #337fff;
text-align: center;
border: 1px solid #337fff;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.index-module__popupBox___LiRQp .index-module__thirdBox___zPFua .index-module__flexModebox___dXKBA .index-module__modeBox___A6omV {
margin-bottom: 16rpx;
margin-right: 16rpx;
padding: 17rpx 34rpx 17rpx 34rpx;
background: #f6f6f6;
border-radius: 8rpx;
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #000000;
border: 1px solid #f6f6f6;
text-align: center;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.index-module__popupBox___LiRQp .index-module__bottomBox1___ukR0B {
width: 750rpx;
height: 160rpx;
background: #ffffff;
position: fixed;
bottom: 0;
z-index: 99;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding-top: 16rpx;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__popupBox___LiRQp .index-module__bottomBox1___ukR0B .index-module__resetBox1___qqDLr {
margin-left: 48rpx;
width: 311rpx;
height: 80rpx;
border-radius: 44rpx;
border: 1px solid #087eff;
font-size: 28rpx;
font-weight: 500;
color: #337fff;
text-align: center;
line-height: 80rpx;
background-color: #fff;
}
.index-module__popupBox___LiRQp .index-module__bottomBox1___ukR0B .index-module__button1___VJ5wT {
margin-right: 32rpx;
width: 311rpx;
height: 80rpx;
background: #68b4ff;
border-radius: 44rpx;
font-size: 32rpx;
font-weight: 500;
color: #ffffff;
text-align: center;
line-height: 80rpx;
}
.index-module__popupBox___LiRQp .index-module__bottomBox1___ukR0B .index-module__activeButton1___afh_L {
margin-right: 32rpx;
width: 311rpx;
height: 80rpx;
background: #337fff;
border-radius: 44rpx;
font-size: 32rpx;
font-weight: 500;
color: #fff;
text-align: center;
line-height: 80rpx;
}
.index-module__popupBox___LiRQp .index-module__safeBoxs___AATh_ {
height: 160rpx;
}

View File

@ -0,0 +1,2 @@
/*! For license information please see 13c349ec6fe97c02f07716d358f66d11.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/13c349ec6fe97c02f07716d358f66d11"],{"./src/api/cdn.ts":function(e,t,n){n.d(t,{GetSignApi:function(){return s}});var c=n("./src/use/useHttp.ts");var s=function GetSignApi(){return(0,c.useRequest)({url:"/v2/mp/cdn/token",method:"get"})}}}]);

View File

@ -0,0 +1,2 @@
/*! For license information please see 1da759392e78d572495498b53bc4e2a9.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/1da759392e78d572495498b53bc4e2a9"],{"./src/components/saleModeTag/index.tsx":function(e,s,t){var a=t("./src/components/tag/index.tsx");var c=t("./src/common/Enumerate/index.ts");var l=t("./node_modules/react/cjs/react-jsx-runtime.production.min.js");var u=function SaleModeTag(e){var s=e.saleMode,t=e.size,u=t===void 0?"small":t,o=e.customClassName,n=e.customStyle;return(0,l.jsxs)(l.Fragment,{children:[s===c.EnumSaleMode.Bulk&&(0,l.jsx)(a["default"],{circle:true,type:"bulk",size:u,customClassName:o,customStyle:n,children:"大货"}),s===c.EnumSaleMode.Plate&&(0,l.jsx)(a["default"],{circle:true,type:"plate",size:u,customClassName:o,customStyle:n,children:"剪板"}),s===c.EnumSaleMode.BulkCut&&(0,l.jsx)(a["default"],{circle:true,type:"bulkCut",size:u,customClassName:o,customStyle:n,children:"散剪"})]})};s["default"]=u}}]);

View File

@ -0,0 +1,2 @@
/*! For license information please see 77c6c00ee9ac4bfa87e3885cb3a9f4ce.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/77c6c00ee9ac4bfa87e3885cb3a9f4ce"],{"./src/use/useUploadImage.ts":function(e,t,n){var a=n("./node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js");var r=n("./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js");var s=n("./node_modules/@tarojs/taro/index.js");var c=n.n(s);var o=n("./src/common/constant.ts");var i=n("./src/api/cdn.ts");t["default"]=function(){var e=(0,i.GetSignApi)(),t=e.fetchData;var n=function getSecret(e,n){return new Promise(function(){var n=(0,r["default"])((0,a["default"])().mark((function _callee(n,r){var s,c,o;return(0,a["default"])().wrap((function _callee$(a){while(1)switch(a.prev=a.next){case 0:s="/".concat(e,"/{filemd5}{day}{hour}{min}{sec}{.suffix}");c={method:"post",save_key:s};a.next=4;return t(c);case 4:o=a.sent;if(o.success){n(o.data)}else{r({code:o.code||"9999",msg:o.msg})}case 6:case"end":return a.stop()}}),_callee)})));return function(e,t){return n.apply(this,arguments)}}())};var s=function getFileType(e){if(!e){return false}var t=["gif","jpeg","jpg","bmp","png"];var n=["avi","wmv","mkv","mp4","mov","rm","3gp","flv","mpg","rmvb","quicktime"];if(RegExp(".?(".concat(t.join("|"),")$"),"i").test(e.toLowerCase())){return"image"}else if(RegExp(".(".concat(n.join("|"),")$"),"i").test(e.toLowerCase())){return"video"}else{return false}};var u=function uploadCDNImg(e,t,a){var r=e.path;console.log("filetype::",r);if(!s(r)){c().showToast({title:"上传文件类型错误",icon:"none",duration:3800});return false}return new Promise((function(r,s){n(t,a).then((function(t){var n=t;console.log("bucket",n.bucket);var a={authorization:n.authorization,policy:n.policy};var i=c().uploadFile({url:"".concat(o.UPLOAD_CDN_URL).concat(n.bucket),formData:a,filePath:e.path,name:"file",success:function success(e){r(JSON.parse("".concat(e.data)))},fail:function fail(e){console.log(e);s(e)}});i.progress((function(e){console.log("上传进度",e.progress);if(e.progress<100){c().showLoading({title:"上传中..."})}else{c().hideLoading()}}))})).catch((function(e){s(e);c().showToast({title:"获取密钥失败!",icon:"none",duration:3800})}))}))};var l=function getWxPhoto(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:1;return new Promise((function(n,s){var o=[];c().chooseImage({count:t,sizeType:["original","compressed"],sourceType:["album","camera"],success:function success(c){return(0,r["default"])((0,a["default"])().mark((function _callee2(){var r,i,l;return(0,a["default"])().wrap((function _callee2$(a){while(1)switch(a.prev=a.next){case 0:a.prev=0;if(!(t>1)){a.next=14;break}r=0;case 3:if(!(r<c.tempFiles.length)){a.next=11;break}a.next=6;return u(c.tempFiles[r],e,e);case 6:i=a.sent;o.push(i);case 8:r++;a.next=3;break;case 11:n(o);a.next=18;break;case 14:a.next=16;return u(c.tempFiles[0],e,e);case 16:l=a.sent;n(l);case 18:a.next=23;break;case 20:a.prev=20;a.t0=a["catch"](0);s(a.t0);case 23:case"end":return a.stop()}}),_callee2,null,[[0,20]])})))()}})}))};var f=function getChatPhoto(e){var t=arguments.length>1&&arguments[1]!==undefined?arguments[1]:1;return new Promise((function(n,s){var o=[];c().chooseMessageFile({count:t,type:"image",success:function success(c){return(0,r["default"])((0,a["default"])().mark((function _callee3(){var r,i,l;return(0,a["default"])().wrap((function _callee3$(a){while(1)switch(a.prev=a.next){case 0:a.prev=0;if(!(t>1)){a.next=14;break}r=0;case 3:if(!(r<c.tempFiles.length)){a.next=11;break}a.next=6;return u(c.tempFiles[r],e,e);case 6:i=a.sent;o.push(i);case 8:r++;a.next=3;break;case 11:n(o);a.next=18;break;case 14:a.next=16;return u(c.tempFiles[0],e,e);case 16:l=a.sent;n(l);case 18:a.next=23;break;case 20:a.prev=20;a.t0=a["catch"](0);s(a.t0);case 23:case"end":return a.stop()}}),_callee3,null,[[0,20]])})))()}})}))};return{uploadCDNImg:u,getWxPhoto:l,getChatPhoto:f}}}}]);

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,2 @@
/*! For license information please see b14021f24a99c16a41f3ddce1a2c0358.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/b14021f24a99c16a41f3ddce1a2c0358"],{"./src/components/uploadImage/index.tsx":function(e,a,n){var t=n("./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js");var r=n("./node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js");var s=n("./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js");var o=n("./node_modules/@babel/runtime/helpers/esm/slicedToArray.js");var c=n("./node_modules/@tarojs/taro/index.js");var l=n.n(c);var u=n("./node_modules/@tarojs/plugin-platform-weapp/dist/components-react.js");var i=n("./node_modules/react/cjs/react.production.min.js");var d=n("./src/components/uploadImage/index.module.scss");var f=n("./src/use/useUploadImage.ts");var m=n("./src/common/format.js");var p=n("./src/components/popup/index.tsx");var v=n("./src/components/iconfont/iconfont.tsx");var h=n("./node_modules/react/cjs/react-jsx-runtime.production.min.js");var x=function PictureItem(e){var a=e.onChange,n=e.defaultList,c=e.onlyRead,x=c===void 0?false:c;var j=(0,f["default"])(),g=j.getWxPhoto,w=j.getChatPhoto;var b=(0,i.useState)([]),k=(0,o["default"])(b,2),_=k[0],I=k[1];var C=(0,i.useState)(false),y=(0,o["default"])(C,2),N=y[0],V=y[1];var P=(0,i.useState)([{id:1,name:"手机相册",check:false},{id:2,name:"从微信对话选择",check:false}]),z=(0,o["default"])(P,2),E=z[0],F=z[1];(0,i.useEffect)((function(){I(n||[])}),[n]);var S=function(){var e=(0,s["default"])((0,r["default"])().mark((function _callee(){return(0,r["default"])().wrap((function _callee$(e){while(1)switch(e.prev=e.next){case 0:V(true);case 1:case"end":return e.stop()}}),_callee)})));return function uploadImage(){return e.apply(this,arguments)}}();var T=function(){var e=(0,s["default"])((0,r["default"])().mark((function _callee2(e){var a;var n,s;return(0,r["default"])().wrap((function _callee2$(r){while(1)switch(r.prev=r.next){case 0:if(!(e==1)){r.next=6;break}r.next=3;return g("after-sale",5);case 3:n=r.sent;r.next=9;break;case 6:r.next=8;return w("after-sale",5);case 8:n=r.sent;case 9:s=[];(a=n)===null||a===void 0?void 0:a.forEach((function(e){s.push(e.url)}));I([].concat((0,t["default"])(_),s));V(false);case 13:case"end":return r.stop()}}),_callee2)})));return function handPic(a){return e.apply(this,arguments)}}();var U=function delImage(e){_.splice(e,1);I((function(){return(0,t["default"])(_)}))};(0,i.useEffect)((function(){a===null||a===void 0?void 0:a(_)}),[_]);var A=function showImage(){var e=_===null||_===void 0?void 0:_.map((function(e){return(0,m.formatImgUrl)(e,"!w800")}));l().previewImage({current:e[0],urls:e})};var B=function handItem(e){E.map((function(a){if(e.id==a.id){a.check=true}else{a.check=false}return a}));F((0,t["default"])(E));T(e.id)};return(0,h.jsxs)(h.Fragment,{children:[(0,h.jsxs)(u.View,{className:d["default"].image_main,children:[_===null||_===void 0?void 0:_.map((function(e,a){return(0,h.jsxs)(u.View,{className:d["default"].ImgItem,children:[(0,h.jsx)(u.Image,{mode:"aspectFill",src:(0,m.formatImgUrl)(e),onClick:A}),!x&&(0,h.jsx)(u.View,{onClick:function onClick(){return U(a)},children:(0,h.jsx)(v["default"],{name:"icon-guanbi",size:30,customClassName:d["default"].miconfont_close,color:"#ffffff"})})]},a)})),!x&&(0,h.jsx)(u.View,{className:d["default"].uploadImg,onClick:S,children:(0,h.jsx)(v["default"],{name:"icon-xinzeng",size:100,color:"#d8d8d8"})})]}),(0,h.jsx)(p["default"],{title:"选择方式",show:N,onClose:function onClose(){return V(false)},isFixed:true,children:(0,h.jsx)(u.View,{className:d["default"].bigBoxThree,children:E.map((function(e,a){return(0,h.jsx)(u.View,{className:d["default"].itemBox,onClick:function onClick(){return B(e)},children:e.name},a)}))})})]})};a["default"]=(0,i.memo)(x)}}]);

View File

@ -0,0 +1,391 @@
/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./src/components/uploadImage/index.module.scss ***!
\********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.index-module__common_safe_area_y___RxGYu {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.index-module__flex-col___oJX6A {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.index-module__flex-row___EwXBU {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.index-module__justify-between___gEVlI {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__justify-center___KnkuE {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.index-module__items-center___XWwer {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__flex-item___cqsdj {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.index-module__full-100___orlN2 {
width: 100%;
height: 100%;
}
.index-module__color-blue___RCmKF {
color: #3287EC;
}
.index-module__color-yellow___VEJVV {
color: #FF9100;
}
.index-module__color-green___Mk_9J {
color: #00B837;
}
.index-module__color-grey___SozQV {
color: #707070;
}
.index-module__color-white___N3DnK {
color: white;
}
.index-module__s-w___L1ksV::after {
content: "W";
font-size: 28rpx;
}
.index-module__s-e___CSPlj::after {
content: "E";
font-size: 28rpx;
}
.index-module__filter___HwQTh {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.index-module__iconfont___E93GP {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.index-module__icon-shouhou1___HghSN:before {
content: "\e641";
}
.index-module__icon-cangku1___MuKNb:before {
content: "\e642";
}
.index-module__icon-saoma___u1NDi:before {
content: "\e643";
}
.index-module__icon-dizhi1___s7hRB:before {
content: "\e644";
}
.index-module__icon-huodaofukuan___flF9k:before {
content: "\e645";
}
.index-module__icon-yufukuan1___XL_sz:before {
content: "\e646";
}
.index-module__icon-yue___ZKXx6:before {
content: "\e647";
}
.index-module__icon-zidingyi___WzU18:before {
content: "\e648";
}
.index-module__icon-jinetiaozheng___lVwcl:before {
content: "\e649";
}
.index-module__icon-tuikuan1___RDyuf:before {
content: "\e64a";
}
.index-module__icon-zhankai___evFZU:before {
content: "\e63f";
}
.index-module__icon-shouqi___OCI0r:before {
content: "\e640";
}
.index-module__icon-lujing___RI4Mw:before {
content: "\e63e";
}
.index-module__icon-jizhumima___h6eGe:before {
content: "\e63c";
}
.index-module__icon-a-jizhumima___MTqZt:before {
content: "\e63d";
}
.index-module__icon-weixindenglu___o_8Ox:before {
content: "\e63b";
}
.index-module__icon-kehuxinxi___FV_zj:before {
content: "\e63a";
}
.index-module__icon-yewuyuanqizi___ffzOm:before {
content: "\e639";
}
.index-module__icon-chakanquanbukehu___t5T9h:before {
content: "\e638";
}
.index-module__icon-biyan___LJoEL:before {
content: "\e637";
}
.index-module__icon-bianji___SzpNK:before {
content: "\e61e";
}
.index-module__icon-daikuan___Nzz6U:before {
content: "\e61f";
}
.index-module__icon-cangku___J0lfw:before {
content: "\e620";
}
.index-module__icon-guanlidingdan___sGyXO:before {
content: "\e621";
}
.index-module__icon-mima___Kz1sR:before {
content: "\e622";
}
.index-module__icon-guanbi___SWpzl:before {
content: "\e623";
}
.index-module__icon-jianshao____3pEP:before {
content: "\e624";
}
.index-module__icon-dingwei___h01xo:before {
content: "\e625";
}
.index-module__icon-saomiao___SVPeW:before {
content: "\e626";
}
.index-module__icon-peihuo___xUVHW:before {
content: "\e627";
}
.index-module__icon-shaixuan___wKxd2:before {
content: "\e628";
}
.index-module__icon-paiming___yi4wn:before {
content: "\e629";
}
.index-module__icon-shanchusousuoxinxi___Le1Gi:before {
content: "\e62a";
}
.index-module__icon-shijian____uwiY:before {
content: "\e62b";
}
.index-module__icon-sousuo___f2M7w:before {
content: "\e62c";
}
.index-module__icon-shouhou___ZvJeK:before {
content: "\e62d";
}
.index-module__icon-sousuofanhui___Aun0d:before {
content: "\e62e";
}
.index-module__icon-sousuoshanchu___IyeeP:before {
content: "\e62f";
}
.index-module__icon-tuikuan___o6X74:before {
content: "\e630";
}
.index-module__icon-tishi___LQJmC:before {
content: "\e631";
}
.index-module__icon-xianxiahuizong___cC9M0:before {
content: "\e632";
}
.index-module__icon-xinzeng___m_gDK:before {
content: "\e633";
}
.index-module__icon-yonghuming___hU3fB:before {
content: "\e634";
}
.index-module__icon-yanjing___g3lmE:before {
content: "\e635";
}
.index-module__icon-yufukuan___JMGBE:before {
content: "\e636";
}
.index-module__icon-wodekefu___gynr9:before {
content: "\e60c";
}
.index-module__icon-dizhi___Pnqk3:before {
content: "\e60d";
}
.index-module__icon-shouhouzhongxin___Wg1xa:before {
content: "\e60e";
}
.index-module__icon-wodeshoucang___rNSi4:before {
content: "\e60f";
}
.index-module__icon-shoukuanliebiao___z5SXN:before {
content: "\e610";
}
.index-module__icon-madanguanli___uRb9P:before {
content: "\e611";
}
.index-module__icon-qusechazhao___XeZzz:before {
content: "\e612";
}
.index-module__icon-pandiansaoma___XZegC:before {
content: "\e613";
}
.index-module__icon-yaoqingma___MO0O6:before {
content: "\e614";
}
.index-module__icon-duizhang___Pj6VT:before {
content: "\e615";
}
.index-module__icon-tihuoliebiao___yJnEn:before {
content: "\e616";
}
.index-module__icon-yangpinduibi___wYZrO:before {
content: "\e617";
}
.index-module__icon-yansequyang___gtiOk:before {
content: "\e618";
}
.index-module__icon-fahuoliebiao___mfSHY:before {
content: "\e619";
}
.index-module__icon-yuncangkucun___V79qi:before {
content: "\e61a";
}
.index-module__icon-xiaoshou___M2etC:before {
content: "\e61b";
}
.index-module__icon-qianzhicangkucun____cMxN:before {
content: "\e61c";
}
.index-module__icon-lingquseka___O7DLf:before {
content: "\e61d";
}
.index-module__icon-gouwu1___d7v27:before {
content: "\e608";
}
.index-module__icon-dingdan1___QqWnw:before {
content: "\e609";
}
.index-module__icon-gerenzhongxin1___E6QJf:before {
content: "\e60a";
}
.index-module__icon-shouye1___XZ5jA:before {
content: "\e60b";
}
.index-module__icon-gerenzhongxin___RLQjj:before {
content: "\e604";
}
.index-module__icon-dingdan___XOcna:before {
content: "\e605";
}
.index-module__icon-shouye___eeJ9f:before {
content: "\e606";
}
.index-module__icon-gouwu___H2ebX:before {
content: "\e607";
}
.index-module__image_main___i8Ggt {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.index-module__image_main___i8Ggt .index-module__uploadImg___rj88P {
width: 143rpx;
height: 143rpx;
background: #f3f3f3;
border-radius: 8rpx;
margin-top: 20rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
position: relative;
position: relative;
}
.index-module__image_main___i8Ggt .index-module__uploadImg___rj88P .index-module__miconfont___QFFs3 {
color: #d8d8d8;
font-size: 100rpx;
}
.index-module__image_main___i8Ggt .index-module__ImgItem___at70w {
width: 143rpx;
height: 143rpx;
background: #f3f3f3;
border-radius: 8rpx;
margin-right: 20rpx;
margin-top: 20rpx;
position: relative;
border-radius: 10rpx;
}
.index-module__image_main___i8Ggt .index-module__ImgItem___at70w image {
width: 100%;
height: 100%;
border-radius: 10rpx;
}
.index-module__image_main___i8Ggt .index-module__ImgItem___at70w .index-module__miconfont_close___B691k {
width: 43rpx;
height: 43rpx;
background-color: #7f7f7f;
border-radius: 50%;
position: absolute;
right: -10rpx;
top: -10rpx;
text-align: center;
line-height: 43rpx;
color: #fff;
font-size: 30rpx;
}
.index-module__bigBoxThree___gMuZD {
width: 100%;
height: 150rpx;
}
.index-module__bigBoxThree___gMuZD .index-module__itemBox___MnBHI {
width: 100%;
height: 88rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
line-height: 88rpx;
font-size: 28rpx;
font-weight: 500;
color: #000000;
border-bottom: 1px solid #f7f7f7;
}

2
dist/pages/applyMoney/index.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,41 @@
/*! ../../../node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./index.tsx */
/*! ./index.module.scss */
/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */
/*! ./node_modules/@babel/runtime/helpers/esm/objectSpread2.js */
/*! ./node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js */
/*! ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js */
/*! ./node_modules/@babel/runtime/helpers/esm/toConsumableArray.js */
/*! @/api/order */
/*! @/components/popup */
/*! @tarojs/components */
/*! @tarojs/runtime */
/*! @tarojs/taro */
/*! classnames */
/*! react */
/*! react/jsx-runtime */
/*!****************************************!*\
!*** ./src/pages/applyMoney/index.tsx ***!
\****************************************/
/*!************************************************!*\
!*** ./src/pages/applyMoney/index.module.scss ***!
\************************************************/
/*!*************************************************************************************************************!*\
!*** ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./src/pages/applyMoney/index.tsx ***!
\*************************************************************************************************************/

1
dist/pages/applyMoney/index.json vendored Normal file
View File

@ -0,0 +1 @@
{"navigationBarTitleText":"申请退款","usingComponents":{"custom-wrapper":"../../custom-wrapper","comp":"../../comp"}}

2
dist/pages/applyMoney/index.wxml vendored Normal file
View File

@ -0,0 +1,2 @@
<import src="../../base.wxml"/>
<template is="taro_tmpl" data="{{root:root}}" />

850
dist/pages/applyMoney/index.wxss vendored Normal file
View File

@ -0,0 +1,850 @@
@charset "UTF-8";/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./src/pages/applyMoney/index.module.scss ***!
\**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.index-module__common_safe_area_y___QuJSu {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.index-module__flex-col___LIJrl {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.index-module__flex-row___gfogN {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.index-module__justify-between___xNDdG {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__justify-center___TClQQ {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.index-module__items-center___JjouU {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__flex-item___E2hCC {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.index-module__full-100___VFhLz {
width: 100%;
height: 100%;
}
.index-module__color-blue___uaPDR {
color: #3287EC;
}
.index-module__color-yellow___RDz90 {
color: #FF9100;
}
.index-module__color-green___JUwxq {
color: #00B837;
}
.index-module__color-grey___bENOi {
color: #707070;
}
.index-module__color-white___Il714 {
color: white;
}
.index-module__s-w___CAPfU::after {
content: "W";
font-size: 28rpx;
}
.index-module__s-e___iUXIP::after {
content: "E";
font-size: 28rpx;
}
.index-module__filter___sNcvx {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.index-module__iconfont___WazZU {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.index-module__icon-shouhou1___MufSu:before {
content: "\e641";
}
.index-module__icon-cangku1___XEXEH:before {
content: "\e642";
}
.index-module__icon-saoma___vBMAG:before {
content: "\e643";
}
.index-module__icon-dizhi1___W8uau:before {
content: "\e644";
}
.index-module__icon-huodaofukuan___hCKVy:before {
content: "\e645";
}
.index-module__icon-yufukuan1___wxcm4:before {
content: "\e646";
}
.index-module__icon-yue___eWb_J:before {
content: "\e647";
}
.index-module__icon-zidingyi___aDsls:before {
content: "\e648";
}
.index-module__icon-jinetiaozheng___QkVBv:before {
content: "\e649";
}
.index-module__icon-tuikuan1___RCz3O:before {
content: "\e64a";
}
.index-module__icon-zhankai___Vj1Ak:before {
content: "\e63f";
}
.index-module__icon-shouqi____9ueX:before {
content: "\e640";
}
.index-module__icon-lujing___JtV3o:before {
content: "\e63e";
}
.index-module__icon-jizhumima____wpPD:before {
content: "\e63c";
}
.index-module__icon-a-jizhumima___VGD1n:before {
content: "\e63d";
}
.index-module__icon-weixindenglu___VDKvp:before {
content: "\e63b";
}
.index-module__icon-kehuxinxi___J8INh:before {
content: "\e63a";
}
.index-module__icon-yewuyuanqizi___eCPb1:before {
content: "\e639";
}
.index-module__icon-chakanquanbukehu___cA60j:before {
content: "\e638";
}
.index-module__icon-biyan___V9B2n:before {
content: "\e637";
}
.index-module__icon-bianji___pJyFd:before {
content: "\e61e";
}
.index-module__icon-daikuan___xY_XT:before {
content: "\e61f";
}
.index-module__icon-cangku___lCeFo:before {
content: "\e620";
}
.index-module__icon-guanlidingdan____YJ3G:before {
content: "\e621";
}
.index-module__icon-mima___EKhZs:before {
content: "\e622";
}
.index-module__icon-guanbi___mGjZd:before {
content: "\e623";
}
.index-module__icon-jianshao___gbDdc:before {
content: "\e624";
}
.index-module__icon-dingwei___Kuiyq:before {
content: "\e625";
}
.index-module__icon-saomiao___AE04p:before {
content: "\e626";
}
.index-module__icon-peihuo___czQQ9:before {
content: "\e627";
}
.index-module__icon-shaixuan___Eg410:before {
content: "\e628";
}
.index-module__icon-paiming___VVigr:before {
content: "\e629";
}
.index-module__icon-shanchusousuoxinxi___mzqnm:before {
content: "\e62a";
}
.index-module__icon-shijian___OlyK2:before {
content: "\e62b";
}
.index-module__icon-sousuo___zZ3tL:before {
content: "\e62c";
}
.index-module__icon-shouhou___dNBPc:before {
content: "\e62d";
}
.index-module__icon-sousuofanhui___rKzWm:before {
content: "\e62e";
}
.index-module__icon-sousuoshanchu_____k2o:before {
content: "\e62f";
}
.index-module__icon-tuikuan___YC1gF:before {
content: "\e630";
}
.index-module__icon-tishi___vNz1p:before {
content: "\e631";
}
.index-module__icon-xianxiahuizong___A1RAi:before {
content: "\e632";
}
.index-module__icon-xinzeng___TyFfV:before {
content: "\e633";
}
.index-module__icon-yonghuming___FBKYn:before {
content: "\e634";
}
.index-module__icon-yanjing___ga8OX:before {
content: "\e635";
}
.index-module__icon-yufukuan___NL3Mi:before {
content: "\e636";
}
.index-module__icon-wodekefu___GD8rS:before {
content: "\e60c";
}
.index-module__icon-dizhi____5ylu:before {
content: "\e60d";
}
.index-module__icon-shouhouzhongxin___k16CE:before {
content: "\e60e";
}
.index-module__icon-wodeshoucang___riKie:before {
content: "\e60f";
}
.index-module__icon-shoukuanliebiao___NKqnL:before {
content: "\e610";
}
.index-module__icon-madanguanli___DGUpU:before {
content: "\e611";
}
.index-module__icon-qusechazhao___QvBpR:before {
content: "\e612";
}
.index-module__icon-pandiansaoma___l6dWK:before {
content: "\e613";
}
.index-module__icon-yaoqingma___OliMo:before {
content: "\e614";
}
.index-module__icon-duizhang___yDo5m:before {
content: "\e615";
}
.index-module__icon-tihuoliebiao___M7txT:before {
content: "\e616";
}
.index-module__icon-yangpinduibi___LwOSR:before {
content: "\e617";
}
.index-module__icon-yansequyang___gSTD2:before {
content: "\e618";
}
.index-module__icon-fahuoliebiao___WsTud:before {
content: "\e619";
}
.index-module__icon-yuncangkucun___Fhp2o:before {
content: "\e61a";
}
.index-module__icon-xiaoshou___CjfxY:before {
content: "\e61b";
}
.index-module__icon-qianzhicangkucun___zTd6f:before {
content: "\e61c";
}
.index-module__icon-lingquseka___vGMfD:before {
content: "\e61d";
}
.index-module__icon-gouwu1___s3lOG:before {
content: "\e608";
}
.index-module__icon-dingdan1___EnYqm:before {
content: "\e609";
}
.index-module__icon-gerenzhongxin1___iHaUo:before {
content: "\e60a";
}
.index-module__icon-shouye1___HH_y5:before {
content: "\e60b";
}
.index-module__icon-gerenzhongxin___J7VuA:before {
content: "\e604";
}
.index-module__icon-dingdan___JXVhf:before {
content: "\e605";
}
.index-module__icon-shouye___z1ZzW:before {
content: "\e606";
}
.index-module__icon-gouwu___VMKk7:before {
content: "\e607";
}
.index-module__bgBox___S022k {
margin: 24rpx;
background: #FFFFFF;
border-radius: 16rpx;
overflow: hidden;
}
.index-module__goodsBox___Leh5y {
margin-top: 24rpx;
overflow: hidden;
border-bottom: 8rpx solid #F7F7F7;
}
.index-module__goodsBox___Leh5y .index-module__goodsProduct___sambY {
font-size: 28rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #000000;
margin-left: 32rpx;
}
.index-module__goodsBox___Leh5y .index-module__goodsLine___ombXo {
width: 638rpx;
height: 1px;
background: #000000;
opacity: 0.1;
margin-left: 32rpx;
margin-top: 24rpx;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j {
margin-top: 24rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j .index-module__itemPic___M2G87 {
margin-left: 32rpx;
margin-right: 42rpx;
width: 108rpx;
height: 108rpx;
border-radius: 8rpx;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j .index-module__itemRight___moEMd {
padding-bottom: 24rpx;
width: 495rpx;
border-bottom: 1px solid #f7f7f7;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j .index-module__itemRight___moEMd .index-module__item_right_top___hhm4t {
margin-bottom: 41rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j .index-module__itemRight___moEMd .index-module__item_right_top___hhm4t .index-module__itemName___BACzM {
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #000000;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j .index-module__itemRight___moEMd .index-module__item_right_top___hhm4t .index-module__itemNums___MoM5e {
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #000000;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j .index-module__itemRight___moEMd .index-module__item_right_Bottom___JRPaM {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j .index-module__itemRight___moEMd .index-module__item_right_Bottom___JRPaM .index-module__itemMoney___GBWee {
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #000000;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j .index-module__itemRight___moEMd .index-module__item_right_Bottom___JRPaM .index-module__itemMoneyOne____ayDB {
font-size: 28rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #000000;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j .index-module__itemRight___moEMd .index-module__item_right_Bottom___JRPaM .index-module__btn___XtxnP {
width: 120rpx;
height: 64rpx;
border-radius: 8rpx;
border: 1px solid #337FFF;
font-size: 28rpx;
font-weight: 400;
color: #337FFF;
text-align: center;
line-height: 64rpx;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j .index-module__itemRight___moEMd .index-module__item_right_Bottom___JRPaM .index-module__btnOne____TTyA {
width: 204rpx;
height: 64rpx;
border-radius: 8rpx;
border: 1px solid #337FFF;
font-size: 28rpx;
font-weight: 400;
color: #337FFF;
text-align: center;
line-height: 64rpx;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j .index-module__itemRight___moEMd .index-module__item_right_Bottom___JRPaM .index-module__inputBox___ujCqu {
width: 189rpx;
height: 64rpx;
border-radius: 8rpx;
border: 1px solid #337FFF;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j .index-module__itemRight___moEMd .index-module__item_right_Bottom___JRPaM .index-module__inputBox___ujCqu .index-module__redceBox___yvH4S {
width: 64rpx;
height: 64rpx;
border-radius: 8rpx 0rpx 0rpx 8rpx;
border-right: 1px solid #337FFF;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j .index-module__itemRight___moEMd .index-module__item_right_Bottom___JRPaM .index-module__inputBox___ujCqu .index-module__redceBox___yvH4S .index-module__reduce___LdrpL {
width: 20rpx;
height: 2rpx;
background: #337FFF;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j .index-module__itemRight___moEMd .index-module__item_right_Bottom___JRPaM .index-module__inputBox___ujCqu .index-module__inputBig___nfWrZ {
width: 61rpx;
height: 64rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
text-align: center;
font-size: 24rpx;
font-weight: 400;
color: #337FFF;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j .index-module__itemRight___moEMd .index-module__item_right_Bottom___JRPaM .index-module__inputBox___ujCqu .index-module__addBox___ZCEqf {
width: 64rpx;
height: 64rpx;
border-left: 1px solid #337FFF;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
font-size: 40rpx;
color: #337FFF;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j:last-child {
margin-top: 24rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j:last-child .index-module__itemPic___M2G87 {
margin-left: 32rpx;
margin-right: 42rpx;
width: 108rpx;
height: 108rpx;
border-radius: 8rpx;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j:last-child .index-module__itemRight___moEMd {
padding-bottom: 24rpx;
width: 495rpx;
border-bottom: none;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j:last-child .index-module__itemRight___moEMd .index-module__item_right_top___hhm4t {
margin-bottom: 41rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j:last-child .index-module__itemRight___moEMd .index-module__item_right_top___hhm4t .index-module__itemName___BACzM {
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #000000;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j:last-child .index-module__itemRight___moEMd .index-module__item_right_top___hhm4t .index-module__itemNums___MoM5e {
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #000000;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j:last-child .index-module__itemRight___moEMd .index-module__item_right_Bottom___JRPaM {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j:last-child .index-module__itemRight___moEMd .index-module__item_right_Bottom___JRPaM .index-module__itemMoney___GBWee {
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #000000;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j:last-child .index-module__itemRight___moEMd .index-module__item_right_Bottom___JRPaM .index-module__itemMoneyOne____ayDB {
font-size: 28rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #000000;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j:last-child .index-module__itemRight___moEMd .index-module__item_right_Bottom___JRPaM .index-module__btn___XtxnP {
width: 120rpx;
height: 64rpx;
border-radius: 8rpx;
border: 1px solid #337FFF;
font-size: 28rpx;
font-weight: 400;
color: #337FFF;
text-align: center;
line-height: 64rpx;
}
.index-module__goodsBox___Leh5y .index-module__itemGoods___TaK_j:last-child .index-module__itemRight___moEMd .index-module__item_right_Bottom___JRPaM .index-module__btnOne____TTyA {
width: 204rpx;
height: 64rpx;
border-radius: 8rpx;
border: 1px solid #337FFF;
font-size: 28rpx;
font-weight: 400;
color: #337FFF;
text-align: center;
line-height: 64rpx;
}
.index-module__goodsBox___Leh5y {
border-bottom: none;
}
.index-module__hasSelect___bkdIA {
margin-left: 32rpx;
margin-right: 32rpx;
height: 54rpx;
background: #FEF9F4;
border-radius: 8rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
font-size: 24rpx;
font-weight: 600;
color: #F79B31;
padding-left: 20rpx;
margin-bottom: 24rpx;
}
.index-module__resonBig___BURyX {
overflow: hidden;
margin: 24rpx;
background: #FFFFFF;
border-radius: 16rpx;
}
.index-module__resonBig___BURyX .index-module__reasonItem___sG95X {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
margin: 32rpx;
padding-bottom: 32rpx;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__resonBig___BURyX .index-module__reasonItem___sG95X .index-module__reasonLeft___wr5QI {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__resonBig___BURyX .index-module__reasonItem___sG95X .index-module__reasonLeft___wr5QI .index-module__reasonFont___Ji40m {
font-size: 28rpx;
font-weight: 500;
color: #000000;
}
.index-module__resonBig___BURyX .index-module__reasonItem___sG95X .index-module__reasonLeft___wr5QI .index-module__xing___d8Px0 {
font-size: 28rpx;
font-weight: 500;
color: #E42945;
}
.index-module__resonBig___BURyX .index-module__reasonItem___sG95X .index-module__reasonLeft___wr5QI .index-module__selectFont___Gu1Fc {
font-size: 28rpx;
font-weight: 400;
color: #000000;
margin-left: 40rpx;
}
.index-module__resonBig___BURyX .index-module__reasonItem___sG95X .index-module__chakanquanbukehu___ZJuzt {
font-size: 50rpx;
}
.index-module__descBox___Z3LIW {
padding: 24rpx 0rpx 24rpx 0rpx;
margin: 32rpx;
background: #FFFFFF;
border-radius: 16rpx 16rpx 0rpx 0rpx;
}
.index-module__descBox___Z3LIW .index-module__title___YEMjQ {
font-size: 28rpx;
font-weight: 500;
color: #000000;
margin-left: 32rpx;
}
.index-module__descBox___Z3LIW .index-module__textBox___ZbBbl {
padding-top: 15rpx;
padding-left: 24rpx;
padding-right: 24rpx;
padding-bottom: 24rpx;
margin-right: 32rpx;
margin-top: 24rpx;
margin-left: 32rpx;
height: 210rpx;
background: #f6f6f6;
border-radius: 8rpx;
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__bottomBox___EBFjO {
width: 750rpx;
height: 160rpx;
background: #FFFFFF;
position: fixed;
bottom: 0;
z-index: 99;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding-top: 16rpx;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__bottomBox___EBFjO .index-module__resetBox___YKkK9 {
margin-left: 48rpx;
width: 311rpx;
height: 80rpx;
border-radius: 44rpx;
border: 1px solid #087EFF;
font-size: 28rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #337FFF;
text-align: center;
line-height: 80rpx;
background-color: #fff;
}
.index-module__bottomBox___EBFjO .index-module__button___juboI {
margin-right: 32rpx;
width: 311rpx;
height: 80rpx;
background: #68b4ff;
border-radius: 44rpx;
font-size: 32rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #FFFFFF;
text-align: center;
line-height: 80rpx;
}
.index-module__bottomBox___EBFjO .index-module__activeButton___Vtygw {
margin-right: 32rpx;
width: 311rpx;
height: 80rpx;
background: #337FFF;
border-radius: 44rpx;
font-size: 32rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #fff;
text-align: center;
line-height: 80rpx;
}
.index-module__safeBox___VZDGK {
height: 160rpx;
width: 100%;
}
.index-module__popupBox___lw7pI {
height: 500rpx;
padding-bottom: env(safe-area-inset-bottom);
}
.index-module__popupBox___lw7pI .index-module__thirdBox___KMu2E {
margin-top: 20rpx;
padding-left: 48rpx;
}
.index-module__popupBox___lw7pI .index-module__thirdBox___KMu2E .index-module__thirdTopfont___Ayu8G {
font-size: 28rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #000000;
}
.index-module__popupBox___lw7pI .index-module__thirdBox___KMu2E .index-module__timeBox2___YNinn {
margin-top: 24rpx;
background-color: #f6f6f6;
height: 68rpx;
background: #E9E9E9;
border-radius: 8rpx;
margin-right: 48rpx;
text-align: center;
line-height: 68rpx;
position: relative;
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__popupBox___lw7pI .index-module__thirdBox___KMu2E .index-module__timeBox2___YNinn .index-module__more___hFf7L {
position: absolute;
right: 30rpx;
top: 5rpx;
font-size: 40rpx;
}
.index-module__popupBox___lw7pI .index-module__thirdBox___KMu2E .index-module__flexModebox___o2vw9 {
margin-top: 24rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.index-module__popupBox___lw7pI .index-module__thirdBox___KMu2E .index-module__flexModebox___o2vw9 .index-module__activemodeBox___lDPLz {
margin-bottom: 16rpx;
margin-right: 16rpx;
padding: 17rpx 34rpx 17rpx 34rpx;
background: rgba(51, 127, 255, 0.1);
border-radius: 8rpx;
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #337FFF;
text-align: center;
border: 1px solid #337FFF;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.index-module__popupBox___lw7pI .index-module__thirdBox___KMu2E .index-module__flexModebox___o2vw9 .index-module__modeBox___zxUK4 {
margin-bottom: 16rpx;
margin-right: 16rpx;
padding: 17rpx 34rpx 17rpx 34rpx;
background: #f6f6f6;
border-radius: 8rpx;
font-size: 28rpx;
font-family: PingFangSC-Regular, PingFang SC;
font-weight: 400;
color: #000000;
border: 1px solid #f6f6f6;
text-align: center;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.index-module__popupBox___lw7pI .index-module__bottomBox1___mS32m {
width: 750rpx;
height: 160rpx;
background: #FFFFFF;
position: fixed;
bottom: 0;
z-index: 99;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding-top: 16rpx;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__popupBox___lw7pI .index-module__bottomBox1___mS32m .index-module__resetBox1___eEs19 {
margin-left: 48rpx;
width: 311rpx;
height: 80rpx;
border-radius: 44rpx;
border: 1px solid #087EFF;
font-size: 28rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #337FFF;
text-align: center;
line-height: 80rpx;
background-color: #fff;
}
.index-module__popupBox___lw7pI .index-module__bottomBox1___mS32m .index-module__button1___h5uEn {
margin-right: 32rpx;
width: 311rpx;
height: 80rpx;
background: #68b4ff;
border-radius: 44rpx;
font-size: 32rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #FFFFFF;
text-align: center;
line-height: 80rpx;
}
.index-module__popupBox___lw7pI .index-module__bottomBox1___mS32m .index-module__activeButton1___y758H {
margin-right: 32rpx;
width: 311rpx;
height: 80rpx;
background: #337FFF;
border-radius: 44rpx;
font-size: 32rpx;
font-family: PingFangSC-Medium, PingFang SC;
font-weight: 500;
color: #fff;
text-align: center;
line-height: 80rpx;
}
.index-module__popupBox___lw7pI .index-module__safeBoxs___kobu1 {
height: 100rpx;
}

2
dist/pages/clauseDetail/index.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,25 @@
/*! ../../../node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./index.tsx */
/*! ./index.module.scss */
/*! @tarojs/components */
/*! @tarojs/runtime */
/*! @tarojs/taro */
/*! react */
/*! react/jsx-runtime */
/*!******************************************!*\
!*** ./src/pages/clauseDetail/index.tsx ***!
\******************************************/
/*!**************************************************!*\
!*** ./src/pages/clauseDetail/index.module.scss ***!
\**************************************************/
/*!***************************************************************************************************************!*\
!*** ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./src/pages/clauseDetail/index.tsx ***!
\***************************************************************************************************************/

1
dist/pages/clauseDetail/index.json vendored Normal file
View File

@ -0,0 +1 @@
{"navigationBarTitleText":"服务条款","usingComponents":{"custom-wrapper":"../../custom-wrapper","comp":"../../comp"}}

2
dist/pages/clauseDetail/index.wxml vendored Normal file
View File

@ -0,0 +1,2 @@
<import src="../../base.wxml"/>
<template is="taro_tmpl" data="{{root:root}}" />

307
dist/pages/clauseDetail/index.wxss vendored Normal file
View File

@ -0,0 +1,307 @@
@charset "UTF-8";/*!****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./src/pages/clauseDetail/index.module.scss ***!
\****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.index-module__common_safe_area_y___sW7IX {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.index-module__flex-col___JA0b1 {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.index-module__flex-row___kPKJm {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.index-module__justify-between___tpZif {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__justify-center___sSvZm {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.index-module__items-center___Ar7DQ {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__flex-item___EemBJ {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.index-module__full-100___bep5h {
width: 100%;
height: 100%;
}
.index-module__color-blue___h3nVW {
color: #3287EC;
}
.index-module__color-yellow___NUy8m {
color: #FF9100;
}
.index-module__color-green___LUmqZ {
color: #00B837;
}
.index-module__color-grey___eFI6H {
color: #707070;
}
.index-module__color-white___yUxaD {
color: white;
}
.index-module__s-w___SM9X5::after {
content: "W";
font-size: 28rpx;
}
.index-module__s-e___pREZ6::after {
content: "E";
font-size: 28rpx;
}
.index-module__filter___BSUFw {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.index-module__iconfont___eVdLz {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.index-module__icon-shouhou1___uy9hA:before {
content: "\e641";
}
.index-module__icon-cangku1___mTltD:before {
content: "\e642";
}
.index-module__icon-saoma___m4_E4:before {
content: "\e643";
}
.index-module__icon-dizhi1___TWmFg:before {
content: "\e644";
}
.index-module__icon-huodaofukuan___YwNwA:before {
content: "\e645";
}
.index-module__icon-yufukuan1___oDGuX:before {
content: "\e646";
}
.index-module__icon-yue___Y6Q00:before {
content: "\e647";
}
.index-module__icon-zidingyi___yFZGY:before {
content: "\e648";
}
.index-module__icon-jinetiaozheng___FxjSL:before {
content: "\e649";
}
.index-module__icon-tuikuan1___ZPWyO:before {
content: "\e64a";
}
.index-module__icon-zhankai___SOqZF:before {
content: "\e63f";
}
.index-module__icon-shouqi___xeGV_:before {
content: "\e640";
}
.index-module__icon-lujing___admzi:before {
content: "\e63e";
}
.index-module__icon-jizhumima___I4DoQ:before {
content: "\e63c";
}
.index-module__icon-a-jizhumima___drzfQ:before {
content: "\e63d";
}
.index-module__icon-weixindenglu___OiwoH:before {
content: "\e63b";
}
.index-module__icon-kehuxinxi___e1ZCQ:before {
content: "\e63a";
}
.index-module__icon-yewuyuanqizi___J_Z4Q:before {
content: "\e639";
}
.index-module__icon-chakanquanbukehu___pnyp9:before {
content: "\e638";
}
.index-module__icon-biyan___sd4cQ:before {
content: "\e637";
}
.index-module__icon-bianji___bl5ZI:before {
content: "\e61e";
}
.index-module__icon-daikuan___uQg5Q:before {
content: "\e61f";
}
.index-module__icon-cangku___H5mBn:before {
content: "\e620";
}
.index-module__icon-guanlidingdan___KJC3g:before {
content: "\e621";
}
.index-module__icon-mima___CrnUL:before {
content: "\e622";
}
.index-module__icon-guanbi___GvVe0:before {
content: "\e623";
}
.index-module__icon-jianshao___warPL:before {
content: "\e624";
}
.index-module__icon-dingwei___C2Oia:before {
content: "\e625";
}
.index-module__icon-saomiao___EZpX2:before {
content: "\e626";
}
.index-module__icon-peihuo___lAxCt:before {
content: "\e627";
}
.index-module__icon-shaixuan___vwAvn:before {
content: "\e628";
}
.index-module__icon-paiming___y5uB6:before {
content: "\e629";
}
.index-module__icon-shanchusousuoxinxi___G7Q_6:before {
content: "\e62a";
}
.index-module__icon-shijian___WswgN:before {
content: "\e62b";
}
.index-module__icon-sousuo___u_yUF:before {
content: "\e62c";
}
.index-module__icon-shouhou___Nl7rL:before {
content: "\e62d";
}
.index-module__icon-sousuofanhui___cPMF_:before {
content: "\e62e";
}
.index-module__icon-sousuoshanchu___rm4V7:before {
content: "\e62f";
}
.index-module__icon-tuikuan___GD3MX:before {
content: "\e630";
}
.index-module__icon-tishi___EDQLI:before {
content: "\e631";
}
.index-module__icon-xianxiahuizong___GF2wg:before {
content: "\e632";
}
.index-module__icon-xinzeng___VEwVM:before {
content: "\e633";
}
.index-module__icon-yonghuming___S3sgM:before {
content: "\e634";
}
.index-module__icon-yanjing___WD1KC:before {
content: "\e635";
}
.index-module__icon-yufukuan____QN82:before {
content: "\e636";
}
.index-module__icon-wodekefu___O445m:before {
content: "\e60c";
}
.index-module__icon-dizhi___zRtIz:before {
content: "\e60d";
}
.index-module__icon-shouhouzhongxin___fnQDK:before {
content: "\e60e";
}
.index-module__icon-wodeshoucang___dP0Rn:before {
content: "\e60f";
}
.index-module__icon-shoukuanliebiao___TUaEC:before {
content: "\e610";
}
.index-module__icon-madanguanli___oSJO2:before {
content: "\e611";
}
.index-module__icon-qusechazhao___HysUT:before {
content: "\e612";
}
.index-module__icon-pandiansaoma____xvTK:before {
content: "\e613";
}
.index-module__icon-yaoqingma___x5k2R:before {
content: "\e614";
}
.index-module__icon-duizhang____gYy3:before {
content: "\e615";
}
.index-module__icon-tihuoliebiao___X6sp3:before {
content: "\e616";
}
.index-module__icon-yangpinduibi___y6VaK:before {
content: "\e617";
}
.index-module__icon-yansequyang___o8VfT:before {
content: "\e618";
}
.index-module__icon-fahuoliebiao___OPyr0:before {
content: "\e619";
}
.index-module__icon-yuncangkucun___GVL0F:before {
content: "\e61a";
}
.index-module__icon-xiaoshou___l5enH:before {
content: "\e61b";
}
.index-module__icon-qianzhicangkucun___ErVsA:before {
content: "\e61c";
}
.index-module__icon-lingquseka___WI50V:before {
content: "\e61d";
}
.index-module__icon-gouwu1___zO_Po:before {
content: "\e608";
}
.index-module__icon-dingdan1___SuBIg:before {
content: "\e609";
}
.index-module__icon-gerenzhongxin1___EqnnM:before {
content: "\e60a";
}
.index-module__icon-shouye1___CP31r:before {
content: "\e60b";
}
.index-module__icon-gerenzhongxin____ABLS:before {
content: "\e604";
}
.index-module__icon-dingdan___Gc70G:before {
content: "\e605";
}
.index-module__icon-shouye___BX9zO:before {
content: "\e606";
}
.index-module__icon-gouwu___YNcYq:before {
content: "\e607";
}
.index-module__main___FWMk4 {
padding: 0 20rpx 50rpx 20rpx;
}

2
dist/pages/collectionDetail/index.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,51 @@
/*! ../../../node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./index.tsx */
/*! ./components/form */
/*! ./index.module.scss */
/*! ./node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js */
/*! ./node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js */
/*! ./node_modules/@babel/runtime/helpers/esm/slicedToArray.js */
/*! @/api/newCollection */
/*! @/common/format */
/*! @/common/money */
/*! @/components/iconfont/iconfont */
/*! @/components/uploadImage */
/*! @tarojs/components */
/*! @tarojs/runtime */
/*! @tarojs/taro */
/*! react */
/*! react/jsx-runtime */
/*!**********************************************!*\
!*** ./src/pages/collectionDetail/index.tsx ***!
\**********************************************/
/*!******************************************************!*\
!*** ./src/pages/collectionDetail/index.module.scss ***!
\******************************************************/
/*!**************************************************************!*\
!*** ./src/pages/collectionDetail/components/form/index.tsx ***!
\**************************************************************/
/*!**********************************************************************!*\
!*** ./src/pages/collectionDetail/components/form/index.module.scss ***!
\**********************************************************************/
/*!*******************************************************************************************************************!*\
!*** ./node_modules/babel-loader/lib/index.js??ruleSet[1].rules[5].use[0]!./src/pages/collectionDetail/index.tsx ***!
\*******************************************************************************************************************/

View File

@ -0,0 +1 @@
{"navigationBarTitleText":"收款单详情","usingComponents":{"custom-wrapper":"../../custom-wrapper","comp":"../../comp"}}

View File

@ -0,0 +1,2 @@
<import src="../../base.wxml"/>
<template is="taro_tmpl" data="{{root:root}}" />

801
dist/pages/collectionDetail/index.wxss vendored Normal file
View File

@ -0,0 +1,801 @@
@charset "UTF-8";@import "./sub-common/f437345ae9818808a269edcd3d9d51d0.wxss";/*!********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./src/pages/collectionDetail/index.module.scss ***!
\********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.index-module__common_safe_area_y___OXNBl {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.index-module__flex-col___ta4S2 {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.index-module__flex-row___gvJNP {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.index-module__justify-between___mPn5E {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__justify-center___PsHXp {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.index-module__items-center___Bzsbk {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__flex-item___vcqhb {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.index-module__full-100___QK7IF {
width: 100%;
height: 100%;
}
.index-module__color-blue___cg4Ps {
color: #3287EC;
}
.index-module__color-yellow___PrcNP {
color: #FF9100;
}
.index-module__color-green___VP6cc {
color: #00B837;
}
.index-module__color-grey___aZU8t {
color: #707070;
}
.index-module__color-white___kquLY {
color: white;
}
.index-module__s-w___GA8NK::after {
content: "W";
font-size: 28rpx;
}
.index-module__s-e___IC4eX::after {
content: "E";
font-size: 28rpx;
}
.index-module__filter___N66mA {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.index-module__iconfont___l3cPn {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.index-module__icon-shouhou1___UQ5Rf:before {
content: "\e641";
}
.index-module__icon-cangku1___UyMsw:before {
content: "\e642";
}
.index-module__icon-saoma___rrm1e:before {
content: "\e643";
}
.index-module__icon-dizhi1___Vtkyu:before {
content: "\e644";
}
.index-module__icon-huodaofukuan___arJYN:before {
content: "\e645";
}
.index-module__icon-yufukuan1___cWQWF:before {
content: "\e646";
}
.index-module__icon-yue___TPZqL:before {
content: "\e647";
}
.index-module__icon-zidingyi___dE5lB:before {
content: "\e648";
}
.index-module__icon-jinetiaozheng___vXx_2:before {
content: "\e649";
}
.index-module__icon-tuikuan1___hdsNJ:before {
content: "\e64a";
}
.index-module__icon-zhankai___jQ_yh:before {
content: "\e63f";
}
.index-module__icon-shouqi___jBnki:before {
content: "\e640";
}
.index-module__icon-lujing___kGjEc:before {
content: "\e63e";
}
.index-module__icon-jizhumima___pm3jO:before {
content: "\e63c";
}
.index-module__icon-a-jizhumima___YNXKW:before {
content: "\e63d";
}
.index-module__icon-weixindenglu___IKCOh:before {
content: "\e63b";
}
.index-module__icon-kehuxinxi___Wux6_:before {
content: "\e63a";
}
.index-module__icon-yewuyuanqizi___vzdU3:before {
content: "\e639";
}
.index-module__icon-chakanquanbukehu___qoexb:before {
content: "\e638";
}
.index-module__icon-biyan___rwbzU:before {
content: "\e637";
}
.index-module__icon-bianji___sXL3N:before {
content: "\e61e";
}
.index-module__icon-daikuan___gmItq:before {
content: "\e61f";
}
.index-module__icon-cangku___GCgNG:before {
content: "\e620";
}
.index-module__icon-guanlidingdan___eOg59:before {
content: "\e621";
}
.index-module__icon-mima___lN2mW:before {
content: "\e622";
}
.index-module__icon-guanbi___rK52q:before {
content: "\e623";
}
.index-module__icon-jianshao___aQ4SG:before {
content: "\e624";
}
.index-module__icon-dingwei___TzWxP:before {
content: "\e625";
}
.index-module__icon-saomiao___P40eJ:before {
content: "\e626";
}
.index-module__icon-peihuo___Mxrsa:before {
content: "\e627";
}
.index-module__icon-shaixuan___UcYvD:before {
content: "\e628";
}
.index-module__icon-paiming___KzMX4:before {
content: "\e629";
}
.index-module__icon-shanchusousuoxinxi___uQwgA:before {
content: "\e62a";
}
.index-module__icon-shijian___TG7te:before {
content: "\e62b";
}
.index-module__icon-sousuo___oO87c:before {
content: "\e62c";
}
.index-module__icon-shouhou___jMPb2:before {
content: "\e62d";
}
.index-module__icon-sousuofanhui___esbhV:before {
content: "\e62e";
}
.index-module__icon-sousuoshanchu___yEws3:before {
content: "\e62f";
}
.index-module__icon-tuikuan___yqUav:before {
content: "\e630";
}
.index-module__icon-tishi___mbXZv:before {
content: "\e631";
}
.index-module__icon-xianxiahuizong___Gp546:before {
content: "\e632";
}
.index-module__icon-xinzeng___mrVy_:before {
content: "\e633";
}
.index-module__icon-yonghuming___dwyd8:before {
content: "\e634";
}
.index-module__icon-yanjing___ylzuk:before {
content: "\e635";
}
.index-module__icon-yufukuan___pS0af:before {
content: "\e636";
}
.index-module__icon-wodekefu___hbzCY:before {
content: "\e60c";
}
.index-module__icon-dizhi___Ikd9m:before {
content: "\e60d";
}
.index-module__icon-shouhouzhongxin___dCryX:before {
content: "\e60e";
}
.index-module__icon-wodeshoucang___PVfkS:before {
content: "\e60f";
}
.index-module__icon-shoukuanliebiao___AAVJ9:before {
content: "\e610";
}
.index-module__icon-madanguanli____Dao6:before {
content: "\e611";
}
.index-module__icon-qusechazhao___PU2r8:before {
content: "\e612";
}
.index-module__icon-pandiansaoma___mKk7b:before {
content: "\e613";
}
.index-module__icon-yaoqingma___klKzw:before {
content: "\e614";
}
.index-module__icon-duizhang___dEQ1M:before {
content: "\e615";
}
.index-module__icon-tihuoliebiao___ljfsZ:before {
content: "\e616";
}
.index-module__icon-yangpinduibi___rRepG:before {
content: "\e617";
}
.index-module__icon-yansequyang___OdZpb:before {
content: "\e618";
}
.index-module__icon-fahuoliebiao___cfjUd:before {
content: "\e619";
}
.index-module__icon-yuncangkucun___jBtYS:before {
content: "\e61a";
}
.index-module__icon-xiaoshou___iUmPY:before {
content: "\e61b";
}
.index-module__icon-qianzhicangkucun___tE_cv:before {
content: "\e61c";
}
.index-module__icon-lingquseka___dBwBY:before {
content: "\e61d";
}
.index-module__icon-gouwu1___pmrbo:before {
content: "\e608";
}
.index-module__icon-dingdan1___aVpV5:before {
content: "\e609";
}
.index-module__icon-gerenzhongxin1___aLUjf:before {
content: "\e60a";
}
.index-module__icon-shouye1___wTnN9:before {
content: "\e60b";
}
.index-module__icon-gerenzhongxin___IGHMo:before {
content: "\e604";
}
.index-module__icon-dingdan___krGZC:before {
content: "\e605";
}
.index-module__icon-shouye___ubsFf:before {
content: "\e606";
}
.index-module__icon-gouwu___ZijZm:before {
content: "\e607";
}
.index-module__addBox___E7lyt {
margin: 24rpx;
padding: 0rpx 32rpx 40rpx 32rpx;
background: #ffffff;
border-radius: 16rpx 16rpx 0rpx 0rpx;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition: 0.3s;
}
.index-module__textAreaBox___LDOr_ {
margin-top: 40rpx;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
position: relative;
border-bottom: 1px solid #f7f7f7;
padding-bottom: 47rpx;
}
.index-module__textAreaBox___LDOr_ .index-module__textAreaLeft___RoTmK {
font-size: 28rpx;
font-weight: 500;
color: #000000;
}
.index-module__textAreaBox___LDOr_ .index-module__textAreaRight___TesfQ {
width: 70%;
font-size: 28rpx;
}
.index-module__textAreaBox___LDOr_ .index-module__numsTotal___IxD6r {
position: absolute;
bottom: 0;
right: 0;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__msgBox___m_TH9 {
width: 100%;
border-bottom: 1px solid #f7f7f7;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
padding-top: 40rpx;
padding-bottom: 40rpx;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__msgBox___m_TH9 .index-module__msgLeft___m_Dw6 {
font-size: 28rpx;
font-weight: 500;
color: #000000;
}
.index-module__msgBox___m_TH9 .index-module__msgFlex___VfcmB {
width: 70%;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__msgBox___m_TH9 .index-module__msgFlex___VfcmB .index-module__msgName___oo6qa {
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__msgBox___m_TH9 .index-module__msgFlex___VfcmB .index-module__msgTime___L8XGJ {
font-size: 28rpx;
font-weight: 400;
color: #000000;
}
.index-module__topBox___bKKup {
background: #ffffff;
margin: 24rpx;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
overflow: hidden;
}
.index-module__topBox___bKKup .index-module__topFont___xqxKq {
margin-top: 32rpx;
font-size: 28rpx;
font-weight: 500;
color: #000000;
margin-bottom: 16rpx;
}
.index-module__topBox___bKKup .index-module__topMon___rE8Pl {
font-size: 64rpx;
font-weight: 500;
color: #333333;
letter-spacing: 4rpx;
margin-bottom: 8rpx;
}
.index-module__topBox___bKKup .index-module__topBigMon___v_A3n {
font-size: 24rpx;
font-weight: 400;
color: #000000;
letter-spacing: 11rpx;
margin-bottom: 38rpx;
}
/*!************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/@tarojs/webpack5-runner/node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].oneOf[0].use[4]!./src/pages/collectionDetail/components/form/index.module.scss ***!
\************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
.index-module__common_safe_area_y___W0Oq5 {
width: 100%;
height: constant(safe-area-inset-bottom);
/* 兼容 iOS < 11.2 */
height: env(safe-area-inset-bottom);
/* 兼容 iOS >= 11.2 */
background-color: transparent;
}
.index-module__flex-col___Y5HC0 {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: column nowrap;
-ms-flex-flow: column nowrap;
flex-flow: column nowrap;
}
.index-module__flex-row___DmM6k {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-flow: row nowrap;
-ms-flex-flow: row nowrap;
flex-flow: row nowrap;
}
.index-module__justify-between___D5fVT {
-webkit-justify-content: space-between;
-ms-flex-pack: justify;
justify-content: space-between;
}
.index-module__justify-center___EcMlP {
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.index-module__items-center___LBUJy {
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__flex-item___QMinL {
-webkit-flex: 1 1 auto;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
.index-module__full-100____gJrk {
width: 100%;
height: 100%;
}
.index-module__color-blue___c6MpK {
color: #3287EC;
}
.index-module__color-yellow___CZ9DV {
color: #FF9100;
}
.index-module__color-green___E1n5P {
color: #00B837;
}
.index-module__color-grey___AmYOs {
color: #707070;
}
.index-module__color-white___hfcXD {
color: white;
}
.index-module__s-w___XHPQH::after {
content: "W";
font-size: 28rpx;
}
.index-module__s-e___cpFmb::after {
content: "E";
font-size: 28rpx;
}
.index-module__filter___uehBY {
-webkit-filter: blur(1);
filter: blur(1);
}
@font-face {
font-family: "iconfont";
/* Project id 3619513 */
src: url(/styles/iconfont.ttf?t=1663556335905) format("truetype");
}
.index-module__iconfont___r12fp {
font-family: "iconfont" !important;
font-size: 16rpx;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.index-module__icon-shouhou1___UEN9A:before {
content: "\e641";
}
.index-module__icon-cangku1___bMDIw:before {
content: "\e642";
}
.index-module__icon-saoma___buuxf:before {
content: "\e643";
}
.index-module__icon-dizhi1___eaCDh:before {
content: "\e644";
}
.index-module__icon-huodaofukuan___QRN_O:before {
content: "\e645";
}
.index-module__icon-yufukuan1___uSN3N:before {
content: "\e646";
}
.index-module__icon-yue___Rvrwj:before {
content: "\e647";
}
.index-module__icon-zidingyi___NG6AL:before {
content: "\e648";
}
.index-module__icon-jinetiaozheng___ZkhIS:before {
content: "\e649";
}
.index-module__icon-tuikuan1___uCi8l:before {
content: "\e64a";
}
.index-module__icon-zhankai___BLZUN:before {
content: "\e63f";
}
.index-module__icon-shouqi___yQkDU:before {
content: "\e640";
}
.index-module__icon-lujing___rjyYn:before {
content: "\e63e";
}
.index-module__icon-jizhumima___g3JAP:before {
content: "\e63c";
}
.index-module__icon-a-jizhumima___iRjFp:before {
content: "\e63d";
}
.index-module__icon-weixindenglu___h3cFz:before {
content: "\e63b";
}
.index-module__icon-kehuxinxi___bJHfl:before {
content: "\e63a";
}
.index-module__icon-yewuyuanqizi___Rf7jw:before {
content: "\e639";
}
.index-module__icon-chakanquanbukehu___q7pIu:before {
content: "\e638";
}
.index-module__icon-biyan___cRfqi:before {
content: "\e637";
}
.index-module__icon-bianji___v929t:before {
content: "\e61e";
}
.index-module__icon-daikuan___xTe96:before {
content: "\e61f";
}
.index-module__icon-cangku___fqPoD:before {
content: "\e620";
}
.index-module__icon-guanlidingdan___bAPM7:before {
content: "\e621";
}
.index-module__icon-mima___d3eZ6:before {
content: "\e622";
}
.index-module__icon-guanbi___j6qo3:before {
content: "\e623";
}
.index-module__icon-jianshao___TexRj:before {
content: "\e624";
}
.index-module__icon-dingwei___fIQhC:before {
content: "\e625";
}
.index-module__icon-saomiao___Mayeb:before {
content: "\e626";
}
.index-module__icon-peihuo___yExgT:before {
content: "\e627";
}
.index-module__icon-shaixuan___tHPEw:before {
content: "\e628";
}
.index-module__icon-paiming___MF7fL:before {
content: "\e629";
}
.index-module__icon-shanchusousuoxinxi___tOSgE:before {
content: "\e62a";
}
.index-module__icon-shijian___csSgl:before {
content: "\e62b";
}
.index-module__icon-sousuo___VMsBf:before {
content: "\e62c";
}
.index-module__icon-shouhou___Ep9tx:before {
content: "\e62d";
}
.index-module__icon-sousuofanhui___CRwq4:before {
content: "\e62e";
}
.index-module__icon-sousuoshanchu___CDFBg:before {
content: "\e62f";
}
.index-module__icon-tuikuan___Y9448:before {
content: "\e630";
}
.index-module__icon-tishi___tSlUz:before {
content: "\e631";
}
.index-module__icon-xianxiahuizong___uJuGT:before {
content: "\e632";
}
.index-module__icon-xinzeng___GQGI6:before {
content: "\e633";
}
.index-module__icon-yonghuming___Uuwkd:before {
content: "\e634";
}
.index-module__icon-yanjing___cyIZw:before {
content: "\e635";
}
.index-module__icon-yufukuan___HNMNt:before {
content: "\e636";
}
.index-module__icon-wodekefu___g_it1:before {
content: "\e60c";
}
.index-module__icon-dizhi___X2E9W:before {
content: "\e60d";
}
.index-module__icon-shouhouzhongxin____x_5y:before {
content: "\e60e";
}
.index-module__icon-wodeshoucang___Ccvs8:before {
content: "\e60f";
}
.index-module__icon-shoukuanliebiao___UgTTK:before {
content: "\e610";
}
.index-module__icon-madanguanli___E1G24:before {
content: "\e611";
}
.index-module__icon-qusechazhao___koZl6:before {
content: "\e612";
}
.index-module__icon-pandiansaoma___jvWUE:before {
content: "\e613";
}
.index-module__icon-yaoqingma___M2PXt:before {
content: "\e614";
}
.index-module__icon-duizhang___mvoni:before {
content: "\e615";
}
.index-module__icon-tihuoliebiao___Nbi56:before {
content: "\e616";
}
.index-module__icon-yangpinduibi___IAwPi:before {
content: "\e617";
}
.index-module__icon-yansequyang___gVvVr:before {
content: "\e618";
}
.index-module__icon-fahuoliebiao___b2nUo:before {
content: "\e619";
}
.index-module__icon-yuncangkucun___iaTXT:before {
content: "\e61a";
}
.index-module__icon-xiaoshou___ovQ1n:before {
content: "\e61b";
}
.index-module__icon-qianzhicangkucun___z6zUb:before {
content: "\e61c";
}
.index-module__icon-lingquseka___tnCD5:before {
content: "\e61d";
}
.index-module__icon-gouwu1___WczhU:before {
content: "\e608";
}
.index-module__icon-dingdan1___aSE6B:before {
content: "\e609";
}
.index-module__icon-gerenzhongxin1___sg2Eo:before {
content: "\e60a";
}
.index-module__icon-shouye1___tt1X1:before {
content: "\e60b";
}
.index-module__icon-gerenzhongxin___rQ2qu:before {
content: "\e604";
}
.index-module__icon-dingdan___eCjkT:before {
content: "\e605";
}
.index-module__icon-shouye___cZOpV:before {
content: "\e606";
}
.index-module__icon-gouwu___yrvo5:before {
content: "\e607";
}
.index-module__itemBox___apwUD {
width: 100%;
border-bottom: 1px solid #f7f7f7;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
padding-top: 30rpx;
padding-bottom: 30rpx;
}
.index-module__itemBox___apwUD .index-module__itemLeft___N2EYd .index-module__finkFlex___nm4YM {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}
.index-module__itemBox___apwUD .index-module__itemLeft___N2EYd .index-module__finkFlex___nm4YM .index-module__itemTitle___EjOoB {
font-size: 28rpx;
font-weight: 500;
color: #000000;
}
.index-module__itemBox___apwUD .index-module__itemLeft___N2EYd .index-module__finkFlex___nm4YM .index-module__xing___aKWyJ {
font-size: 28rpx;
font-weight: 500;
color: #E42945;
margin-right: 48rpx;
}
.index-module__itemBox___apwUD .index-module__itemLeft___N2EYd .index-module__finkFont___BEts5 {
font-size: 20rpx;
font-weight: 400;
color: grey;
}
.index-module__itemBox___apwUD .index-module__bigPic___aRdTY {
width: 70%;
}
.index-module__itemBox___apwUD .index-module__itemRight___UvJPK {
width: 70%;
}
.index-module__itemBox___apwUD .index-module__itemRight___UvJPK .index-module__assginFont___L5dqT {
font-size: 24rpx;
font-weight: 500;
color: #000000;
}
.index-module__itemBox___apwUD .index-module__itemRight___UvJPK .index-module__rightFlex___ezUGf .index-module__placeholderStyle___JhngD {
color: #f7f7f7;
font-size: 28rpx;
font-weight: 400;
}
.index-module__itemBox___apwUD .index-module__itemRight___UvJPK .index-module__rightFlex___ezUGf .index-module__inputStyle___M942e {
font-size: 28rpx;
font-weight: 400;
color: #000000;
width: 100%;
}
.index-module__itemBox___apwUD .index-module__itemRight___UvJPK .index-module__iconFlex___usccj {
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
}
.index-module__itemBox___apwUD .index-module__itemRight___UvJPK .index-module__iconFlex___usccj .index-module__chakanquanbukehu2___drIDQ {
font-size: 50rpx !important;
}
.index-module__itemBox___apwUD .index-module__itemRight___UvJPK .index-module__iconFlex___usccj .index-module__shu___BpvaA {
width: 2rpx;
height: 36rpx;
background: #000000;
opacity: 0.2;
margin-left: 24rpx;
}
.index-module__itemBox___apwUD .index-module__itemRight___UvJPK .index-module__iconFlex___usccj .index-module__saomiao___B5Nfj {
margin-left: 24rpx;
color: #087EFF;
font-size: 40rpx !important;
}

View File

@ -0,0 +1,2 @@
/*! For license information please see 13c349ec6fe97c02f07716d358f66d11.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/13c349ec6fe97c02f07716d358f66d11"],{"./src/api/cdn.ts":function(e,t,n){n.d(t,{GetSignApi:function(){return s}});var c=n("./src/use/useHttp.ts");var s=function GetSignApi(){return(0,c.useRequest)({url:"/v2/mp/cdn/token",method:"get"})}}}]);

View File

@ -0,0 +1,2 @@
/*! For license information please see 271497e280fc79153f1f116370b30522.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/271497e280fc79153f1f116370b30522"],{"./src/common/money.ts":function(r,a){var t=function smallToBig(r){var a=["零","壹","贰","叁","肆","伍","陆","柒","捌","玖"];var t=["","拾","佰","仟"];var e=["","万","亿","兆"];var s=["角","分","毫","厘"];var v="整";var n="元";var f=1e15;var i="";var u;if(r==""){return""}r=parseFloat(r);if(r>=f){return"超出最大处理数字"}if(r==0){i=a[0]+n+v;return i}r=Math.round(r*100).toString();var o=r.substr(0,r.length-2);var l=r.substr(r.length-2);if(parseInt(o,10)>0){var b=0;var c=o.length;for(var p=0;p<c;p++){var m=o.substr(p,1);var g=c-p-1;var h=g/4;var w=g%4;if(m=="0"){b++}else{if(b>0){i+=a[0]}b=0;i+=a[parseInt(m)]+t[w]}if(w==0&&b<4){i+=e[h]}}i+=n}if(l!=""){var d=l.length;for(var k=0;k<d;k++){var x=l.substr(k,1);if(x!="0"){i+=a[Number(x)]+s[k]}}}if(i==""){i+=a[0]+n+v}else if(l==""||/^0*$/.test(l)){i+=v}return i};a["default"]=t}}]);

View File

@ -0,0 +1,2 @@
/*! For license information please see 70f6ef3b44287edfd53418aa08707a3b.js.LICENSE.txt */
"use strict";(wx["webpackJsonp"]=wx["webpackJsonp"]||[]).push([["sub-common/70f6ef3b44287edfd53418aa08707a3b"],{"./src/api/newCollection.ts":function(e,r,t){t.d(r,{MpCashManagementOrder:function(){return u},MpCashManagementOrderAccount:function(){return s},MpCashManagementOrderList:function(){return a},MpCashManagementOrderPost:function(){return c},MpShouldCollectOrderPurchaser:function(){return o}});var n=t("./src/use/useHttp.ts");var a=function MpCashManagementOrderList(){return(0,n.useRequest)({url:"/v2/mp/cashManagementOrder/list",method:"get"})};var u=function MpCashManagementOrder(){return(0,n.useRequest)({url:"/v2/mp/cashManagementOrder",method:"get"})};var s=function MpCashManagementOrderAccount(){return(0,n.useRequest)({url:"/v2/mp/cashManagementOrder/account",method:"get"})};var c=function MpCashManagementOrderPost(){return(0,n.useRequest)({url:"/v2/mp/cashManagementOrder",method:"post"})};var o=function MpShouldCollectOrderPurchaser(){return(0,n.useRequest)({url:"/v2/mp/shouldCollectOrder/purchaser",method:"get"})}}}]);

Some files were not shown because too many files have changed in this diff Show More