Compare commits
2 Commits
8906f1f60a
...
6d00b050fc
Author | SHA1 | Date |
---|---|---|
gongjiale | 6d00b050fc | |
gongjiale | d482042bcb |
|
@ -83,7 +83,6 @@ const router = new Router({
|
|||
})
|
||||
|
||||
router.beforeEach((to, from, next) => {
|
||||
debugger
|
||||
// 判断是否有token
|
||||
// const token = Cookies.get('token')
|
||||
// 添加动态(菜单)路由
|
||||
|
|
|
@ -264,7 +264,7 @@
|
|||
:placeholder="'请输入' + placeHolderWords(item.name)+',单位为元'"
|
||||
@change="changeIiem(item.name, item.note1)"
|
||||
/>
|
||||
<span style="color:red"> (仅用于测算为部门节省资金)</span>
|
||||
<span style="color:red"> (单位为元,*仅用于测算为部门节省资金)</span>
|
||||
</div>
|
||||
<a-input
|
||||
:maxLength="1000"
|
||||
|
|
|
@ -59,7 +59,12 @@
|
|||
</template>
|
||||
申请使用
|
||||
</a-button>
|
||||
<a-button type="primary" @click="addShoppingCart()">
|
||||
<a-button type="primary" @click="addShoppingCart()" :style="{
|
||||
cursor:
|
||||
!props.dataList.isInShoppingCart
|
||||
? 'pointer'
|
||||
: 'not-allowed',
|
||||
}">
|
||||
<!-- <template #icon>
|
||||
<shopping-cart-outlined />
|
||||
</template> -->
|
||||
|
|
|
@ -62,6 +62,12 @@
|
|||
<a-button
|
||||
v-if="!dataList.fuseResourceList"
|
||||
type="primary"
|
||||
:style="{
|
||||
cursor:
|
||||
!props.dataList.isInShoppingCart
|
||||
? 'pointer'
|
||||
: 'not-allowed',
|
||||
}"
|
||||
@click="addShoppingCart()"
|
||||
>
|
||||
<!-- <template #icon><shopping-cart-outlined /></template> -->
|
||||
|
|
|
@ -56,7 +56,8 @@
|
|||
</template>
|
||||
申请使用
|
||||
</a-button>
|
||||
<a-button type="primary" @click="addShoppingCart()">
|
||||
<a-button type="primary" @click="addShoppingCart()"
|
||||
:style="{ cursor: !props.dataList.isInShoppingCart ? 'pointer': 'not-allowed', }">
|
||||
<!-- <template #icon>
|
||||
<shopping-cart-outlined />
|
||||
</template> -->
|
||||
|
|
|
@ -54,7 +54,8 @@
|
|||
<template #icon><form-outlined /></template>
|
||||
申请使用
|
||||
</a-button>
|
||||
<a-button type="primary" @click="addShoppingCart()">
|
||||
<a-button type="primary" @click="addShoppingCart()"
|
||||
:style="{ cursor: !props.dataList.isInShoppingCart ? 'pointer': 'not-allowed', }">
|
||||
<!-- <template #icon><shopping-cart-outlined /></template> -->
|
||||
{{ props.dataList.isInShoppingCart ? '已' : '' }}加入购物车
|
||||
</a-button>
|
||||
|
|
|
@ -62,6 +62,8 @@
|
|||
(val) => val.attrType == '外部服务地址'
|
||||
).length === 0
|
||||
"
|
||||
:style="{ cursor: !props.dataList.isInShoppingCart ? 'pointer': 'not-allowed', }"
|
||||
|
||||
>
|
||||
<!-- <template #icon><shopping-cart-outlined /></template> -->
|
||||
{{ props.dataList.isInShoppingCart ? '已' : '' }}加入申购车
|
||||
|
|
|
@ -534,11 +534,22 @@
|
|||
name: yunForm.busineesName,
|
||||
}
|
||||
total.value = 5
|
||||
<<<<<<< HEAD
|
||||
getZwyBusinessList(params).then(
|
||||
(res) => {
|
||||
|
||||
cloudList.data = res.data.data.list
|
||||
num.value = []
|
||||
total.value = res.data.data.total
|
||||
}
|
||||
)
|
||||
=======
|
||||
getZwyBusinessList(params).then((res) => {
|
||||
cloudList.data = res.data.data.list
|
||||
num.value = []
|
||||
total.value = res.data.data.total
|
||||
})
|
||||
>>>>>>> 8906f1f60aad20082e68337c7c166c057237fdd1
|
||||
}
|
||||
//查询政务云状态
|
||||
const getCloudResource = () => {
|
||||
|
|
Loading…
Reference in New Issue