1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| using System;
| using System.Collections.Generic;
| using System.Linq;
| using System.Web;
| using System.Web.UI;
| using System.Web.UI.WebControls;
|
| namespace CY.WebForm.Pages.sysInquiry
| {
| public partial class InquiryParameterList : BasePage
| {
| public string DataJson = string.Empty;
| protected void Page_Load(object sender, EventArgs e)
| {
| if (!IsPostBack)
| {
| if (InquiryConditionObj.CustomerId != Guid.Empty)
| {
| DataJson = "{\"name\":\"快速价格\",\"url\":\"/Pages/sysInquiry/FastSetByFirm.aspx\"},{\"name\":\"快速询价\",\"url\":\"/Pages/sysInquiry/FastInquiry.aspx\"},{\"name\":\"纸价\",\"url\":\"/Pages/sysInquiry/PaperPriceList.aspx\"},{\"name\":\"不干胶纸价\",\"url\":\"/Pages/sysInquiry/AdhesivePaperPrice.aspx\"},{\"name\":\"印工\",\"url\":\"/Pages/sysInquiry/PrintingWorksList.aspx\"},{\"name\":\"货运费\",\"url\":\"/Pages/sysInquiry/CargageList.aspx\"},{\"name\":\"税费\",\"url\":\"/Pages/sysInquiry/TaxationCostList.aspx\"},{\"name\":\"纸张消耗\",\"url\":\"/Pages/sysInquiry/AfterConsumptionList.aspx?Operate=afterConsumption\"},{\"name\":\"后道参数\",\"url\":\"/Pages/sysInquiry/ParameterOfAfterWorkerssSet.aspx?Operate=afterWorkSet\"},{\"name\":\"恢复询价参数设置\",\"url\":\"/Pages/sysInquiry/RecoverySysInquiryData.aspx\"}";
| }
| else
| {
| DataJson = "{\"name\":\"业务范围\",\"url\":\"/Pages/sysInquiry/SelectBusinessRange.aspx\"},{\"name\":\"快速价格\",\"url\":\"/Pages/sysInquiry/FastSetByFirm.aspx\"},{\"name\":\"快速询价\",\"url\":\"/Pages/sysInquiry/FastInquiry.aspx\"},{\"name\":\"纸价\",\"url\":\"/Pages/sysInquiry/PaperPriceList.aspx\"},{\"name\":\"不干胶纸价\",\"url\":\"/Pages/sysInquiry/AdhesivePaperPrice.aspx\"},{\"name\":\"印工\",\"url\":\"/Pages/sysInquiry/PrintingWorksList.aspx\"},{\"name\":\"货运费\",\"url\":\"/Pages/sysInquiry/CargageList.aspx\"},{\"name\":\"税费\",\"url\":\"/Pages/sysInquiry/TaxationCostList.aspx\"},{\"name\":\"纸张消耗\",\"url\":\"/Pages/sysInquiry/AfterConsumptionList.aspx?Operate=afterConsumption\"},{\"name\":\"后道参数\",\"url\":\"/Pages/sysInquiry/ParameterOfAfterWorkerssSet.aspx?Operate=afterWorkSet\"},{\"name\":\"恢复询价参数设置\",\"url\":\"/Pages/sysInquiry/RecoverySysInquiryData.aspx\"}";
| }
| DataJson = "{\"list\":[" + DataJson + "]}";
| }
| }
| }
| }
|
|