Parcourir la source

按钮权限修改

HD_wangm il y a 2 mois
Parent
commit
b13f6af040

+ 1 - 0
pages/order/detail/acceptIndex.uvue

@@ -553,6 +553,7 @@
         const id = params['id'] as string | null
 		const orderTypeParam = params['orderType'] as string | null
         if (id != null && orderTypeParam != null) {
+			orderType.value = orderTypeParam
             // 先尝试从参数中获取orderType
             const orderTypeNumber = parseInt(orderTypeParam)
             loadDetail(id, orderTypeNumber)

+ 1 - 0
pages/order/detail/approveIndex.uvue

@@ -516,6 +516,7 @@
         const id = params['id'] as string | null
 		const orderTypeParam = params['orderType'] as string | null
         if (id != null && orderTypeParam != null) {
+			orderType.value = orderTypeParam
             // 先尝试从参数中获取orderType
             const orderTypeNumber = parseInt(orderTypeParam)
             loadDetail(id, orderTypeNumber)

+ 1 - 0
pages/order/detail/resumeIndex.uvue

@@ -429,6 +429,7 @@
         const id = params['id'] as string | null
 		const orderTypeParam = params['orderType'] as string | null
         if (id != null && orderTypeParam != null) {
+			orderType.value = orderTypeParam
             // 先尝试从参数中获取orderType
             const orderTypeNumber = parseInt(orderTypeParam)
             loadDetail(id, orderTypeNumber)

+ 1 - 0
pages/order/detail/shutdownIndex.uvue

@@ -294,6 +294,7 @@
         const id = params['id'] as string | null
 		const orderTypeParam = params['orderType'] as string | null
         if (id != null && orderTypeParam != null) {
+			orderType.value = orderTypeParam
             // 先尝试从参数中获取orderType
             const orderTypeNumber = parseInt(orderTypeParam)
             loadDetail(id, orderTypeNumber)

+ 1 - 0
pages/order/detail/suspendIndex.uvue

@@ -506,6 +506,7 @@
         const id = params['id'] as string | null
 		const orderTypeParam = params['orderType'] as string | null
         if (id != null && orderTypeParam != null) {
+			orderType.value = orderTypeParam
             // 先尝试从参数中获取orderType
             const orderTypeNumber = parseInt(orderTypeParam)
             loadDetail(id, orderTypeNumber)