diff --git a/admin.zip b/admin.zip index 8921f9d..4389381 100644 Binary files a/admin.zip and b/admin.zip differ diff --git a/src/api/basic/console/index.js b/src/api/basic/console/index.js index 692265d..c68fbc6 100644 --- a/src/api/basic/console/index.js +++ b/src/api/basic/console/index.js @@ -24,6 +24,14 @@ export function communityInsert(params) { data: params, }) } +// 修改小区信息 +export function communityUpdate(params) { + return httpService({ + url: `/user/community/update`, + method: 'post', + data: params, + }) +} //获取当前账户所有小区信息 export function getAllCommunityInfo(params) { @@ -68,4 +76,13 @@ export function checkCompanyName(params) { method: 'get', params: params, }) +} + +// 获取后台登录token信息(用于跳转到对应小区的后台页面) +export function getManageLoginToken(params) { + return httpService({ + url: `/user/getManageLoginToken`, + method: 'get', + params: params, + }) } \ No newline at end of file diff --git a/src/api/manage/index.js b/src/api/manage/index.js index 7cda512..5b64053 100644 --- a/src/api/manage/index.js +++ b/src/api/manage/index.js @@ -340,4 +340,31 @@ export function enableSuperUser(params) { method: 'get', params: params, }) +} + +// 店铺审核-所有审核店铺 +export function getShopCertiList(params) { + return httpService({ + url: `/user/storeAudit/list`, + method: 'get', + params: params, + }) +} + +// 店铺审核-根据店铺主键id查询店铺详情 +export function findCertiDetail(params) { + return httpService({ + url: `/user/storeAudit/detail`, + method: 'get', + params: params, + }) +} + +// 店铺审核-通过/驳回审核 +export function examineShop(params) { + return httpService({ + url: `/user/storeAudit/examine`, + method: 'post', + data: params, + }) } \ No newline at end of file diff --git a/src/components/allCity/index.vue b/src/components/allCity/index.vue index 7e82e38..7a06880 100644 --- a/src/components/allCity/index.vue +++ b/src/components/allCity/index.vue @@ -9,6 +9,7 @@ }" @change="change" style="width: 60%" + :v-model="casVal" > @@ -16,9 +17,23 @@ import store from "@/store"; import { allCity } from "@/api/public" export default { + props: { + value: { + type: Array, + } + }, + watch: { + value: { + handler(val) { + this.casVal = val + }, + immediate: true + } + }, data(){ return{ - cityList:[] + cityList:[], + casVal: [], } }, methods: { diff --git a/src/router/basic.js b/src/router/basic.js index adcc5e8..26629fa 100644 --- a/src/router/basic.js +++ b/src/router/basic.js @@ -64,7 +64,7 @@ export default [ }, { path: '/Manage/ShopRemain', - name: "settled", + name: "shopSettled", title: "第三方商城余额", icon: 'dollar', hide: false, diff --git a/src/router/manage.js b/src/router/manage.js index f0bd01b..b942e7d 100644 --- a/src/router/manage.js +++ b/src/router/manage.js @@ -8,15 +8,31 @@ export default [ component: resolve => require(['@/views/Manage/SettleRequestManage'], resolve), meta: {title: '入驻申请管理'}, }, + { + path: '/Manage/ShopCertiManage', + name: "ShopCertiManage", + title: "店铺审核管理", + hide: false, + icon: 'bank', + component: resolve => require(['@/views/Manage/ShopCertiManage'], resolve), + meta: {title: '店铺审核管理'}, + }, { path: '/Manage/SettleRequestManage/settle_detail', name: "settle_detail", title: "查看详情", hide: true, - icon: 'container', component: resolve => require(['@/views/Manage/SettleRequestManage/_detail'], resolve), meta: {title: '查看详情'}, }, + { + path: '/Manage/ShopCertiManage/certi_detail', + name: "certi_detail", + title: "店铺审核详情", + hide: true, + component: resolve => require(['@/views/Manage/ShopCertiManage/_detail'], resolve), + meta: {title: '店铺审核详情'}, + }, { path: '/Manage/CustomerList', name: "CustomerList", diff --git a/src/views/Basic/home/index.vue b/src/views/Basic/home/index.vue index 3190286..dd12a8e 100644 --- a/src/views/Basic/home/index.vue +++ b/src/views/Basic/home/index.vue @@ -91,13 +91,10 @@ > - - +
@@ -182,7 +179,7 @@ @cancel="handleCancel" >
-
小区信息
+
{{activeMode==1?'小区信息':'修改信息'}}
- + @@ -252,15 +256,19 @@ {{(orderInfoDetail.expirationDate)}} + + {{(orderInfoDetail.bindCommunityName)}} +
+ + \ No newline at end of file diff --git a/src/views/Manage/ShopCertiManage/config.js b/src/views/Manage/ShopCertiManage/config.js new file mode 100644 index 0000000..ab07da6 --- /dev/null +++ b/src/views/Manage/ShopCertiManage/config.js @@ -0,0 +1,68 @@ +export const columns = [ + { + title: "店铺编号", + dataIndex: "code", + width: "200", + }, + { + title: "店铺状态", + dataIndex: "status", + customRender: function (status) { + switch (status) { + case 1: return "未认证"; + case 2: return "审核中"; + case 3: return "已认证"; + default: break; + } + }, + width: "8%", + }, + { + title: "店铺名称", + dataIndex: "name", + width: "200", + }, + { + title: "店铺账号", + dataIndex: "account", + width: "200", + }, + { + title: "主体类型", + dataIndex: "type", + customRender: function (type) { + switch (type) { + case 1: return "个体户"; + case 2: return "企业"; + case 3: return "个人"; + default: + break; + } + }, + width: "200", + }, + { + title: "企业名称", + dataIndex: "companyName", + width: "200", + }, + { + title: "经营类目", + dataIndex: "categoryNameList", + width: "200", + scopedSlots: { customRender: "category" }, + }, + { + title: "提交时间", + dataIndex: "updateDate", + width: "180", + }, + { + title: "操作", + dataIndex: "action", + key: "action", + width: "180", + fixed: "right", + scopedSlots: { customRender: "action" }, + }, +] \ No newline at end of file diff --git a/src/views/Manage/ShopCertiManage/index.vue b/src/views/Manage/ShopCertiManage/index.vue new file mode 100644 index 0000000..928eddc --- /dev/null +++ b/src/views/Manage/ShopCertiManage/index.vue @@ -0,0 +1,134 @@ + + + + +> \ No newline at end of file diff --git a/src/views/Manage/ShopManage/GoodCate/index.vue b/src/views/Manage/ShopManage/GoodCate/index.vue new file mode 100644 index 0000000..5da6af3 --- /dev/null +++ b/src/views/Manage/ShopManage/GoodCate/index.vue @@ -0,0 +1,13 @@ + + + + + \ No newline at end of file diff --git a/src/views/Manage/ShopManage/GoodList/index.vue b/src/views/Manage/ShopManage/GoodList/index.vue new file mode 100644 index 0000000..943504e --- /dev/null +++ b/src/views/Manage/ShopManage/GoodList/index.vue @@ -0,0 +1,13 @@ + + + + + \ No newline at end of file diff --git a/src/views/Manage/ShopManage/ShopList/index.vue b/src/views/Manage/ShopManage/ShopList/index.vue new file mode 100644 index 0000000..9f2fee2 --- /dev/null +++ b/src/views/Manage/ShopManage/ShopList/index.vue @@ -0,0 +1,13 @@ + + + + + \ No newline at end of file diff --git a/src/views/Manage/ShopManage/ShopVerified/index.vue b/src/views/Manage/ShopManage/ShopVerified/index.vue new file mode 100644 index 0000000..7bc21fd --- /dev/null +++ b/src/views/Manage/ShopManage/ShopVerified/index.vue @@ -0,0 +1,13 @@ + + + + + \ No newline at end of file diff --git a/src/views/Manage/ShopManage/index.vue b/src/views/Manage/ShopManage/index.vue new file mode 100644 index 0000000..d0f13e3 --- /dev/null +++ b/src/views/Manage/ShopManage/index.vue @@ -0,0 +1,13 @@ + + + + + \ No newline at end of file diff --git a/src/views/Manage/ShopRemain/index.vue b/src/views/Manage/ShopRemain/index.vue index 9135323..17ff819 100644 --- a/src/views/Manage/ShopRemain/index.vue +++ b/src/views/Manage/ShopRemain/index.vue @@ -4,9 +4,9 @@ @@ -32,7 +32,7 @@ - ¥ @@ -40,7 +40,7 @@
- 当前余额{{}}元,点击继续将跳转至支付宝付款页面 + 当前余额 {{remain}} 元,点击继续将跳转至支付宝付款页面