Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
肖康
/
iedgeMini
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
877e3f28
authored
Mar 21, 2025
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
fix部分问题
parent
13fca3da
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
11 deletions
assets/css/car/confirmQuote.scss
pages/car/confirmQuote.vue
pages/car/list.vue
pages/user/companyInfo.vue
pages/user/qdDetail.vue
util/api.js
assets/css/car/confirmQuote.scss
View file @
877e3f28
...
...
@@ -16,9 +16,6 @@
height
:
92rpx
;
line-height
:
92rpx
;
border-bottom
:
1rpx
solid
#e7e7e7
;
&
:last-child
{
border-bottom
:
none
;
}
}
.address-box
{
display
:
block
;
...
...
pages/car/confirmQuote.vue
View file @
877e3f28
...
...
@@ -5,7 +5,9 @@
<view
class=
"cons"
>
<view
class=
"top-box"
>
<view
class=
"tit"
>
询价人:
{{
create_name
}}
</view>
<view
class=
"tit"
>
公司名称:
{{
priceInfo
.
company_name
}}
</view>
<view
class=
"tit row verCenter"
>
公司名称:
<input
class=
"uni-input"
v-model=
"company_name"
/>
</view>
<!--
<navigator
:url=
"'/pages/user/address?form=confirmQuote&address_id='+address_id+'&coupon_id='+coupon_id"
class=
"address-box"
>
<view
class=
"addbx row bothSide verCenter"
>
<view
class=
"l"
>
...
...
@@ -135,6 +137,7 @@
coupon_list
:
[],
coupon_id
:
""
,
priceInfo
:
""
,
company_name
:
''
,
isCompany
:
(
uni
.
getStorageSync
(
'user_info'
)
&&
JSON
.
parse
(
uni
.
getStorageSync
(
'user_info'
)).
company_name
)
?
true
:
false
}
},
...
...
@@ -173,6 +176,7 @@
this
.
request
(
Api_Url
+
'/api/order/calQuotePrice'
,
'post'
,
{
sku_json
:
JSON
.
stringify
(
sku_
),
user_coupon_id
:
(
this
.
coupon_id
||
""
)
},
true
,
true
).
then
(
res
=>
{
if
(
res
.
code
==
0
)
{
this
.
priceInfo
=
res
.
data
;
this
.
company_name
=
res
.
data
.
company_name
;
this
.
pdf_email
=
res
.
data
.
recent_quote_email
;
}
...
...
@@ -232,7 +236,8 @@
sku_json
:
JSON
.
stringify
(
goods_json_arr
),
user_coupon_id
:
this
.
coupon_id
,
address_id
:
this
.
address_id
,
purchase_sn
:
this
.
purchase_sn
purchase_sn
:
this
.
purchase_sn
,
company_name
:
this
.
company_name
}
this
.
request
(
Api_Url
+
'/api/xcx/confirmQuote'
,
'post'
,
obj_
,
true
).
then
(
res
=>
{
if
(
res
.
code
==
0
)
{
...
...
pages/car/list.vue
View file @
877e3f28
This diff is collapsed.
Click to expand it.
pages/user/companyInfo.vue
View file @
877e3f28
...
...
@@ -7,19 +7,19 @@
<view
class=
"input-box"
>
<view
class=
"input-group row verCenter"
>
<text
class=
"label required"
>
公司名称
</text>
<input
type=
"text"
v-model=
"formParams.com_name"
placeholder=
"请输入公司名称"
placeholder-class=
"placeholder-class"
@
blur=
"tianyancha()"
/>
<input
type=
"text"
v-model=
"formParams.com_name"
placeholder=
"请输入公司名称"
placeholder-class=
"placeholder-class"
@
blur=
"tianyancha()"
:disabled=
"id"
/>
</view>
<view
class=
"input-group row verCenter"
>
<text
class=
"label required "
>
公司税号
</text>
<input
type=
"text"
v-model=
"formParams.tax_no"
placeholder=
"系统自动查询后补充"
placeholder-class=
"placeholder-class"
/>
<input
type=
"text"
v-model=
"formParams.tax_no"
placeholder=
"系统自动查询后补充"
placeholder-class=
"placeholder-class"
:disabled=
"id"
/>
</view>
<view
class=
"input-group row verCenter"
>
<text
class=
"label required"
>
公司电话
</text>
<input
type=
"text"
v-model=
"formParams.com_tel"
placeholder=
"系统自动查询后补充"
placeholder-class=
"placeholder-class"
/>
<input
type=
"text"
v-model=
"formParams.com_tel"
placeholder=
"系统自动查询后补充"
placeholder-class=
"placeholder-class"
:disabled=
"id"
/>
</view>
<view
class=
"input-group row verCenter"
>
<text
class=
"label required"
>
注册地址
</text>
<input
type=
"text"
v-model=
"formParams.com_addr"
placeholder=
"系统自动查询后补充"
placeholder-class=
"placeholder-class"
/>
<input
type=
"text"
v-model=
"formParams.com_addr"
placeholder=
"系统自动查询后补充"
placeholder-class=
"placeholder-class"
:disabled=
"id"
/>
</view>
<view
class=
"input-group row verCenter"
>
<text
class=
"label required"
>
联系人
</text>
...
...
pages/user/qdDetail.vue
View file @
877e3f28
This diff is collapsed.
Click to expand it.
util/api.js
View file @
877e3f28
...
...
@@ -17,8 +17,8 @@ if (process.env.UNI_PLATFORM === 'h5') { // 判断是否为 H5 平台
api_url
=
_env
==
'release'
?
'https://www.iedge.net'
:
'http://iedge.liexindev.net'
//
api_url = 'https://www.iedge.net'
//
api_url = _env == 'release' ? 'https://www.iedge.net' : 'http://iedge.liexindev.net'
api_url
=
'https://www.iedge.net'
console
.
log
(
api_url
,
_env
)
}
else
{
// 其他平台(如 App 等)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment